Show Posts

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.


Messages - dotdothexagon

Pages: 1 2 3 [4] 5 6 7 8 9 ... 17
46
Off Topic / Re: Going to Region Band tryouts tomorrow
« on: January 11, 2013, 08:51:21 PM »
Stick a flute in your pusillanimous individual.

47
Off Topic / Re: Is the above user an alt?
« on: January 11, 2013, 08:49:35 PM »
No.

48
Drama / Re: Wound - Attacking BBB Progression & Thinking it is justified
« on: January 11, 2013, 08:35:40 PM »
Bumping because Wound being a friend is hilarious (as is this drama).

Seems as if he's trying to repair his broken reputation.

49
Add-Ons / Re: Script_ServerCredits
« on: January 11, 2013, 08:26:04 PM »
Haha this is a joke and so are you. How pathetic. This is basically a stuffty copy of Electrk's with stuff ripped out. Not even the least bit of credit.

(for further comparison: http://forum.returntoblockland.com/dlm/viewFile.php?id=2036)
Code: (Electrk's) [Select]
package ServerRulesPackage
{
function GameConnection::onClientEnterGame(%c)
{      
Parent::onClientEnterGame(%c);

schedule(2000, 0, showRules, %c); //so they don't go away immediately
}
};
activatePackage(ServerRulesPackage);

// ...

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 Rules", "$Pref::Server::Title", "string 20", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 1", "Server Rules", "$Pref::Server::Line1", "string 200", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 2", "Server Rules", "$Pref::Server::Line2", "string 200", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 3", "Server Rules", "$Pref::Server::Line3", "string 200", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 4", "Server Rules", "$Pref::Server::Line4", "string 200", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 5", "Server Rules", "$Pref::Server::Line5", "string 200", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 6", "Server Rules", "$Pref::Server::Line6", "string 200", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 7", "Server Rules", "$Pref::Server::Line7", "string 200", "Script_ServerRules", "", 0, 0);
   RTB_registerPref("Line 8", "Server Rules", "$Pref::Server::Line8", "string 200", "Script_ServerRules", "", 0, 0);
}
else
{
   $Pref::Server::Title = "Server Rules";
   $Pref::Server::Line1 = "1. No spamming";
   $Pref::Server::Line2 = "2. No asking for admin";
   $Pref::Server::Line3 = "3. No random trust invites";
   $Pref::Server::Line4 = "4. Build on a baseplate";
   $Pref::Server::Line5 = "";
   $Pref::Server::Line6 = "";
   $Pref::Server::Line7 = "";
   $Pref::Server::Line8 = "";
}

function serverCmdRules(%c)
{
messageClient(%c, '', "\c2" @ $Pref::Server::Title @ "\c6: \c3" @ $Pref::Server::Line1 NL $Pref::Server::Line2 NL $Pref::Server::Line3 NL $Pref::Server::Line4 NL $Pref::Server::Line5 NL $Pref::Server::Line6 NL $Pref::Server::Line7 NL $Pref::Server::Line8);
messageClient(%c, '', "\c6Type /rules to see them again");
commandToClient(%c, 'messageBoxOK', $Pref::Server::Title, $Pref::Server::Line1 NL $Pref::Server::Line2 NL $Pref::Server::Line3 NL $Pref::Server::Line4 NL $Pref::Server::Line5 NL $Pref::Server::Line6 NL $Pref::Server::Line7 NL $Pref::Server::Line8 NL "\c6Type /rules to see them again");
}

// ...
}

And then look at:

Code: ("Wound's") [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);
}

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);

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~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
}

function serverCmdCredits(%cl)
{
   commandToClient(%cl,'messageBoxOK',$Pref::Server::Title,$Pref::Server::Line1 NL $Pref::Server::Line2 NL $Pref::Server::Line3 NL $Pref::Server::Line4 NL $Pref::Server::Line5 NL $Pref::Server::Line6 NL $Pref::Server::Line7 NL $Pref::Server::Line8 NL $Pref::Server::Line9 NL $Pref::Server::Line10 NL "\c6Type \c4/Credits \c6to see again.");
}

Both of them are written like stuff as well. I find it funny that you're releasing crap (from the looks like it copy and pasted and then forgeted up OR retyped) to repair your broken reputation.

<removed>

tl;dr wound is a friend. again. try harder OP hope you (and your mom) liked that carrot in your mail

50
Off Topic / Re: I did some cool stuff again.
« on: January 11, 2013, 05:57:16 PM »
Considering that I don't want to get banned again... well...

51
Faces, Decals, Prints / Re: Creepy IRL Faces
« on: January 11, 2013, 05:54:59 PM »
So bad OP is basically spam. This kind of stuff makes other people not want to create faces/decals.

52
Drama / Re: Lando the Climber - Future honor student
« on: January 11, 2013, 05:53:18 PM »
You people really over react to these stuffty jokes people make so they can be edgy and cool. It's always the same people going on a moral crusade to make sure nobody makes jokes that someone could find offensive.
They're all white knights trying to defend people they don't know. It's funny considering that they want to get Lando b& because they were offended even though he never broke any rules. Seems like the internet really is srs business!!

53
Off Topic / Re: Drivers Test TODAY - Take 2
« on: January 11, 2013, 12:59:39 PM »
if you had your license you'd find reasons to leave the house more than once a fortnight, you wouldn't go rusty
This. There is literally no reason that you shouldn't get your license. Seriously driving is not that hard, after you've driven for a few years is not even a big deal. Even if you don't use it that much, it's still a really useful tool that everyone who has come of age should be able to take advantage of. Besides, it probably would spur you to get off of your ass and do something you lazy mother forgeter.

54
Off Topic / Re: Let's bring up some self esteem V3
« on: January 11, 2013, 12:21:36 PM »

55
Off Topic / Re: I keep on having these dreams...
« on: January 11, 2013, 02:00:44 AM »
Write them down.

56
Off Topic / Re: Clones computer broke.
« on: January 11, 2013, 01:32:26 AM »
It could be overheating, laptops are easily prone to it because lots of dust can collect inside. Unscrew the back and get a can of compressed air to blow away dust if it's there. I've "fixed" many a friend's laptop that ran slow and crashed all the time by doing that.

57
Off Topic / Re: Clones computer broke.
« on: January 11, 2013, 01:19:27 AM »
If you can't get any external hardware to mount (usually there is SOME way but if for some reason there's not) you could always just create a new partition in which you copy the data you want into and then format the partition(s) that Windows and everything else is on. After that you can reinstall and then access the data in the partition you made previously.

58
Off Topic / Re: Check your end of the world survival score.
« on: January 11, 2013, 12:42:06 AM »
1-2 weeks, but I live in a smallish city apartment.

59
Off Topic / Re: Let's bring up some self esteem V3
« on: January 11, 2013, 12:15:35 AM »
you like to do drugs and drugs like you to do them
It's true!

60
Drama / Re: "Arch Angel" Name Stealer, Griefer, Event spammer. Etc.
« on: January 10, 2013, 11:59:54 PM »
forget, I would love it if people impersonated me. Using dotdot[any shape] is encouraged to all!!

Pages: 1 2 3 [4] 5 6 7 8 9 ... 17