46
Drama / Re: Isar Tower has been stolen
« on: January 12, 2013, 08:49:18 PM »
lol ninja is a moron if he is the one that asked Icy how much he would have bought it for.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
man you get angry over little things lolhe's attacking me, i'm not mad or sad lol.
That's to be expected from you.shut the forget up, these threads are fine as long as the thief took credits.
Bricks don't cause lagi had shaders on lol.
grammar cigarette.
I guess you could say nothing was harmed because nobody was therehaha i c.
Oh bullstuff.Never really actually talked to Alphadin, so I can't be arguing with him.
Mute, Kazami and Alphadin all said they have gotten into arguments with you plenty of times.
Even on the forums you've shown that you get yourself into the stupidest arguments about anything petty.
I said already that it is both of our faults.Nope. In the OP you included our arguing, it's in my drama, i'll argue back about it if I feel I should, and I should.
This drama isn't only about you arguing with me.
It's having to do with you doing what you did to Mr.Nobody after I blocked you for arguing about stupid stuff that you always argue about.
That's not what I was thinking.
He read the first line and implied that it was all BS just because I was starting out the story.
Mr.Nobody has worked on BBB for about 4 months now and you say it isn't a direct attack because you didn't know he was working on it?Nope, the night before he even said he was done. It's not an excuse it's the truth.
Get a better loving excuse.
2. I have even paid people to work and to get things done for the mod. With money that I earned myself.You mean going to bed on time on the week days bahaha.
3. I accompany and assist anybody who needs help if they are working on BBB. Alphadin. Mr.Nobody, anybody.No, you beta test.
Mr.Nobody already finished the main map.There are more builders than that right, If i were Mr.Nobody and doing 3+ maps I wouldn't.
What do you mean the builders aren't doing anything?
Organization is actually an important contribution, if a clan has no organization, then it would go to stuff pretty quickly.oh bahaha BBB had like literally no organization.
For some strange reason I always argue around you and nobody else.I don't think I said this but you aren't oh so inocnent yourself, I never get into arguments with anyone else unless it's like serious and that hardly happens.
Wow so weird!
my parents overheard me and that pissed me off because it never happens with other people in Skype calls. Only you.here we go again, it isn't my fault that you raise your voice. You told me before that if we get into another argument you would get into trouble, because your parents hear, well if you don't want your parents to hear you shouldn't be bickering with a 14 year old freshmen over loving kart racing. That's pretty sad.
This may be both of our faults. But that isn't the main point of the drama either.About time you said this, and it's true.
Also Bisjac, if you honestly think the point of the drama was me dramaing wound because we argued, then you are stupid.Stop being a baby, if he doesn't like the thread he can give his opinion, he wasn't straight out dismissive about it, if that is what you are thinking.
Read the title. He attacked BBB progression and he actually thought it was justified.
and you're like attached to him lolno. I was one of his close friends.
so.... you were on skype or something where you would speak out loud?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.
and why would you skype chat someone who you fight with all the time anyways
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.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.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.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.