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 - Aide33

Pages: 1 ... 605 606 607 608 609 [610] 611 612 613 614 615 ... 669
9136
Off Topic / Re: Did otis da housecat leave?
« on: September 05, 2011, 11:46:54 AM »
I always wondered why he left :c

9137
Off Topic / Re: The fancy hat club
« on: September 05, 2011, 11:45:26 AM »
I want a hat on my rocket but I'm too lazy.

9138
Off Topic / Re: QR Code Generator
« on: September 05, 2011, 11:33:03 AM »

9139
Off Topic / Re: Stoking tit's?
« on: September 05, 2011, 11:27:47 AM »
I'm glad I wasn't involved in that dark chapter of this forum's history.

9140
Modification Help / Re: Toggling A Mod
« on: September 05, 2011, 10:42:36 AM »
Code: [Select]
package AutoGreeter
{
function newChatHud_addLine(%text)
{
if($canGreet == 1)
{   
//Called when any line of text is added to the chat box
Parent::newChatHud_addLine(%text);
//This will turn the "jes00 connected." into "jes00"
%nameToGreet = strReplace(%text," connected.","");
//If the %nameToGreet variable is different to the original line greet them,
//otherwise it's something else
if(%nameToGreet !$= %text)
{
    //Send a chat message saying hi to the player who joined (%nameToGreet)
commandtoserver('messagesent',"Hi, " @ %nameToGreet);
}
}
}
};
activatePackage(AutoGreeter);

function ToggleGreet()
{
if($canGreet == 1) {
$canGreet = 0;
clientCmdMessageBoxOK("Auto Greeter, by jes00","Auto Greeter is now: Off.");

} else if($canGreet == 0) {
$cangreet = 1;
clientCmdMessageBoxOK("Auto Greeter, by jes00","Auto Greeter is now: On.");
}
}
This should work I tested it and ironed out the bugs
Wow I retested and it breaks the chat when its off

9141
Off Topic / Re: HAPPY BIRTHDAY TO ME!!!
« on: September 05, 2011, 10:38:29 AM »
Happy Birthday!

9143
Off Topic / Re: Canadian Ingenuity - It sucks.
« on: September 05, 2011, 10:31:02 AM »
You know what they say about duct tape...

You have just won the Internet

9144
Modification Help / Re: Toggling A Mod
« on: September 04, 2011, 09:01:34 PM »
Code: [Select]
package AutoGreeter
{
function newChatHud_addLine(%text)
{
if($canGreet == 1)
{   
//Called when any line of text is added to the chat box
Parent::newChatHud_addLine(%text);
//This will turn the "jes00 connected." into "jes00"
%nameToGreet = strReplace(%text," connected.","");
//If the %nameToGreet variable is different to the original line greet them,
//otherwise it's something else
if(%nameToGreet !$= %text)
{
    //Send a chat message saying hi to the player who joined (%nameToGreet)
commandtoserver('messagesent',"Hi, " @ %nameToGreet);
}
}
}
};
activatePackage(AutoGreeter);

function ToggleGreet()
{
if($canGreet == 1) {
$canGreet = 0;
clientCmdMessageBoxOK("Auto Greeter, by jes00","Auto Greeter is now: Off.");

} else if($canGreet == 0) {
$cangreet = 1;
clientCmdMessageBoxOK("Auto Greeter, by jes00","Auto Greeter is now: On.");
}
}
This should work I tested it and ironed out the bugs

9145
General Discussion / Re: M1 abrams
« on: September 04, 2011, 03:12:08 PM »
Inb4thelock

9146
Off Topic / Re: Video Games
« on: September 04, 2011, 03:06:44 PM »
blockland
Don't forget blockland and blockland

9147
Off Topic / Re: List Your Phobias
« on: September 04, 2011, 03:03:51 PM »
Needles
Spiders (Not always only when they creep up on me :c)
Heights
Wasps (THEY CAN BURN IN HELL)
I've wondered where did you get your avatar?

9148
Off Topic / Re: I Need Halloween Costume Ideas
« on: September 04, 2011, 02:52:58 PM »
TF2 heavy

9149
Off Topic / Re: Contact Lens
« on: September 04, 2011, 02:50:47 PM »
I never went to the eye doctor in my life and I have excellent vision.

9150
Off Topic / Re: List Your Phobias
« on: September 04, 2011, 02:46:46 PM »
I have Arachnophobia, the fear of spiders. I hate those things so much.
inb4someonepostbigassspider

Pages: 1 ... 605 606 607 608 609 [610] 611 612 613 614 615 ... 669