Author Topic: Wound - Attacking BBB Progression & Thinking it is justified  (Read 34578 times)

I made a script and get acussed of assumptions, this is what pisses me off.  I'm not trying to fix my rep at all, infact I know it will take a long road to repair my reputation.

I'm not trying to and I won't.  I just posted an add-on like anyone else would.

I posted proof and now you're trying to lie to get yourself out of it by completely denying it. Even the creator of the mod does not refute what I have said. Seems like you're alone on this one buddy.

I posted proof and now you're trying to lie to get yourself out of it by completely denying it. Even the creator of the mod does not refute what I have said. Seems like you're alone on this one buddy.
That isn't proof lol.

That is one function that is similar and I left an explanation on why it's alike.

That isn't proof lol.

That is one function that is similar and I left an explanation on why it's alike.
The addon is rearranged as if you looked at it side by side and copied it and changed some of the names (just with stuff formatting).

Also, "your" add-on overwrites mine's prefs because they are exactly the same.

Wow, you're really convincing!!!

Also, "your" add-on overwrites mine's prefs because they are exactly the same.
Game over

Believe that, if you want.  But it isn't copied whatsoever.

???

ok but the indentation on the lines registering the RTB prefs doesn't match your style?
Code: (yours) [Select]
function serverCmdCreditasHelp(%cl)
{
messageClient(%cl,'',"\c7~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
messageClient(%cl,'',"\c3/Credits \c6 To Show server's the Credits.");
messageClient(%cl,'',"\c3There's also an RTB Prefs to set the Credits.");
messageClient(%cl,'',"\c7~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
}

Code: (electrks) [Select]
if(isFile("add-ons/system_returntoblockland/server.cs"))
{
   if(!$RTB::RTBR_ServerControl_Hook)
   exec("add-ons/system_returntoblockland/rtbr_servercontrol_hook.cs");
   RTB_registerPref("Title","Server Credits","$Pref::Server::Title","string 20","Script_ServerCredits","",0,0);
   RTB_registerPref("Line1","Server Credits","$Pref::Server::Line1","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line2","Server Credits","$Pref::Server::Line2","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line3","Server Credits","$Pref::Server::Line3","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line4","Server Credits","$Pref::Server::Line4","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line5","Server Credits","$Pref::Server::Line5","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line6","Server Credits","$Pref::Server::Line6","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line7","Server Credits","$Pref::Server::Line7","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line8","Server Credits","$Pref::Server::Line8","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line9","Server Credits","$Pref::Server::Line9","string 200","Script_ServerCredits","",0,0);
   RTB_registerPref("Line10","Server Credits","$Pref::Server::Line10","string 200","Script_ServerCredits","",0,0);
}

Conclusion: you stole code[/quote]

You cant lie your way out of this wound, that is pretty solid evidence proving that you stole code.

Code: [Select]
if(isfile("add-ons/system_returntoblockland/server.cs"))
{
   if(!$rtb::rtbr_servercontrol_hook)
   
      exec("add-ons/system_returntoblockland/rtbr_servercontrol_hook.cs");
      rtb_registerPref("Title","Server Credits","$Pref::Server::Title","string 60","script_servercredits", 0, 0);
      rtb_registerPref("Credit1","Server Credits","$pref::Server::Credit1","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit2","Server Credits","$pref::Server::Credit2","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit3","Server Credits","$pref::Server::Credit3","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit4","Server Credits","$pref::Server::Credit4","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit5","Server Credits","$pref::Server::Credit5","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit6","Server Credits","$pref::Server::Credit6","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit7","Server Credits","$pref::Server::Credit7","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit8","Server Credits","$pref::Server::Credit8","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit9","Server Credits","$pref::Server::Credit9","string 600","script_servercredits", 0, 0);
      rtb_registerPref("Credit10","Server Credits","$pref::Server::Credit10","string 600","script_servercredits", 0, 0);
}
}
This is probably the main thing that caused me to get accused of stealing, and i understand why, it formatted just like electrk's Script_ServerRules add-on.

and I'll explain why, I had no idea on how to make an RTB Pref, so I used Script_ServerRules as a reference, you can label it as stealing or whatever.
but I actually wrote the Pref after looking at Electrk's way of doing it a while back.

I did use the same line as Electrk's Rules add-on.  This wasn't purposely.  I did fix this problem though.

Code: [Select]
package Credits
{
function GameConnection::autoadmincheck(%cl)
{
      %cl.chatmessage("\c1The Server is running Script_ServerCredits by \c6Juicebox/Wound \c3||| \c1Type \c6/CreditsHelp \c1for help \c3||| \c6/Credits \c1to see the Credits of the server.");
      return parent::autoAdminCheck(%cl);
   }
};
activatePackage(Credits);
This was pretty easy and I did this on my own after doing it a few times before for Zay and Nymph.

Code: [Select]
function serverCmdCreditsHelp(%cl)
{
   messageClient(%cl,'',"\c7~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
   messageClient(%cl,'',"\c3/Credits \c6 To Show server's the Credits.");
   messageClient(%cl,'',"\c3There's also an RTB Prefs to set the Credits.");
   messageClient(%cl,'',"\c7~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
}
Also easy.

Code: [Select]
function serverCmdCredits(%cl)
{
   commandToClient(%cl,'messageBoxOK',$Pref::Server::Title,$Pref::Server::Credit1 NL $Pref::Server::Credit2 NL $Pref::Server::Credit3 NL $Pref::Server::Credit4 NL $Pref::Server::Credit5 NL $Pref::Server::Credit6 NL $Pref::Server::Credit7 NL $Pref::Server::Credit8 NL $Pref::Server::Credit9 NL $Pref::Server::Credit10 NL "~~~~~~~~~~~~~~~~~");
}
This I had to base from a different script because I had no idea on how to do it.

I apologize, Electrk, I will include you in the credits.


my parents even heard me when we argued

so.... you were on skype or something where you would speak out loud?

and why would you skype chat someone who you fight with all the time anyways

so.... you were on skype or something where you would speak out loud?

and why would you skype chat someone who you fight with all the time anyways
He is blaming me for getting in trouble for arguing, this isn't the first time he has gotten in trouble for arguing and raising his voice and he knew it.
I also realized it's not my fault that he gets in trouble IRL.  If he doesn't like arguing and getting in trouble he just shouldn't respond and argue.

Nobot is like attached to this thing.

im not really a fan of wound. but this drama is kinda BS

Nobot is like attached to this thing.
and you're like attached to him lol

and you're like attached to him lol
no.  I was one of his close friends.

but I agree with him that we were arguing a lot.
I don't plan on being a close friend of his any time soon.

I don't plan on being a close friend of his any time soon.
Oh no, poor nobot :-(

no.  I was one of his close friends.

but I agree with him that we were arguing a lot.
I don't plan on being a close friend of his any time soon.
Nobot and wound ex bros 4 lyfe

He is blaming me for getting in trouble for arguing, this isn't the first time he has gotten in trouble for arguing and raising his voice and he knew it.
I also realized it's not my fault that he gets in trouble IRL.  If he doesn't like arguing and getting in trouble he just shouldn't respond and argue.

Nobot is like attached to this thing.
We argue about petty things. I explained this before.

For some strange reason I always argue around you and nobody else.
Wow so weird!

My parents overheard me and that pissed me off because it never happens with other people in Skype calls. Only you.
This may be both of our faults. But that isn't the main point of the drama either.

I had blocked you because we continued arguing. It was for the best and I haven't really argued since.
Then you go and do that to Mr.Nobody and clear his build for no apparent reason like 2 days after I block you.
You are uncontrollable and immature. Then when Mute asks you "Why the forget did you do that!"
You say "ok."

Also Bisjac, if you honestly think the point of the drama was me dramaing wound because we argued, then you are stupid.
Read the title. He attacked BBB progression and he actually thought it was justified.