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

Pages: [1] 2 3 4 5
1
Drama / Re: infiniteLoop - Advertising IRC2
« on: October 13, 2011, 03:15:36 PM »
Now he can ban all of those from IRC.
Game over.

Aw my game is over, now i must go back to real life, where I actually care.

User was banned for this post

2
Drama / Re: infiniteLoop - Advertising IRC2
« on: October 13, 2011, 03:10:54 PM »
19145
27122
27133

3 isn't that many more ...

Yes, and those are only the three i've needed to use.

3
Drama / Re: infiniteLoop - Advertising IRC2
« on: October 13, 2011, 01:44:19 PM »
I've banned him from the IRC room. It won't really stop him doing it but if I find out he continues he'll win a ban from RTB4.

I have no more interest in doing it. Also I have many more blockland IDS so winning is not a problem here.

4
Drama / Re: infiniteLoop - Advertising IRC2
« on: October 13, 2011, 01:24:59 PM »
Boohoohoo, let's all cry and report infiniteLoop for receiving 8 lines of chat messages once a month.

User was banned for this post

5
Modification Help / Re: Math Chatbot
« on: October 12, 2011, 09:51:26 PM »
Wrote this really quick and did minimal testing, edit it to your liking..

package mathBot
{
   function clientCmdChatMessage(%a,%b,%c,%d,%pref,%name,%suff,%msg)
   {
      parent::clientCmdChatMessage(%a,%b,%c,%d,%pref,%name,%suff,%msg);
      if($mathbot)
      {
         if(getWord(%msg,0) $= "-math")
         {
            if(isMathQuestion(%msg))
            {
               %answer = returnAnswer(%msg);
               if(%answer)
               {
                  commandToServer('messageSent',"The answer to "@%msg@" is "@%answer@".");
               }
            }
         }
      }
   }
};
activatePackage(mathBot);


function isMathQuestion(%msg)
{
   if(strStr(%msg,"*") <= 0 || strStr(%msg,"/") <= 0 || strStr(%msg,"+") <=0 || strStr(%msg,"-") <= 0)
   {
      return true;
   }

   return false;
}

function returnAnswer(%msg)
{
   %letter = "a b c d e f g h i j k l m n o p q r s t u v w x y z";

   for(%i=0;%i<getWordCount(%letter);%i++)
   {
      %let = getWord(%letter,%i);
      %msg = strReplace(%msg,%let,"");
   }


   eval("%answer = ("@%msg@");");

   return %answer;
}

6
Modification Help / Re: Math Chatbot
« on: October 12, 2011, 03:44:17 PM »
Err, idk how to "Strip the numbers from the message".


Well figure out what the equation is going to be using str str and getSubStr

%msg = "bob add 2+2 please";

if(strStr(%msg,"+") <= 0)
{
     //we are adding do math stuff here using getsubstr

}

7
Modification Help / Re: Math Chatbot
« on: October 12, 2011, 02:55:14 PM »
Package the cliencmdchatmessage, strip the numbers from the message, do math, done.

8
Modification Help / Re: Calling A Function In A Function
« on: October 12, 2011, 06:08:30 AM »
Code: [Select]
function One(%client)
}
   schedule($Pref::Mod::Time, 0, One, %client);
}
So would this be correct?


function One(%client)
{
   cancel($one::loop);

   echo("-- OMG THIS WORKS --");

   $one::loop = schedule($Pref::Mod::Time, 0, One, %client);
}

9
edit: also using %obj.schedule(0,"playThread",3,shiftAway); for taking on/off the hat looks fine.

%obj.playThread(3,"shiftAway");

10
Ok im on this, where is everyone and how do i build wtf?

11
Off Topic / Re: What does this dream/ nightmare mean?
« on: October 11, 2011, 09:04:29 AM »
This is what I can tell you.
This means that your family and friends can no longer count on you because you will probably be very paranoid in the future. The transition to the Mental Hospital probably means that your paranormal acts forced your family to send you there.

Cool, a serious answer, but i doubt i'll be paranoid and ever end up in a place like that lol.
Thanks for the comment though.

12
Off Topic / Re: What does this dream/ nightmare mean?
« on: October 11, 2011, 04:20:41 AM »
And what the forget is up with your avatar.

Can the same not be said about yours?

13
Off Topic / Re: What does this dream/ nightmare mean?
« on: October 11, 2011, 04:14:43 AM »
It means you should place yourself into the nearest mental institute and wait for further instructions.

Brilliant, i'll tell you how that goes!

14
Off Topic / What does this dream/ nightmare mean?
« on: October 11, 2011, 04:09:32 AM »
my dream

I wake up in this kind of cubicle office type thing and see random people i've known through my life.
Then everyone left and i didn't in time, and it got a bit darker, and turned into like a place for people that were crazy.
I tried to leave, and on the door it said something like, "3 warnings for trying to open the door" and had the consequences
but i didn't get to read it. Then i was kind of like at this table in the cafeteria and to my right was a little girl.
kind of behind me to my left, was a man and his kid. Then the cafeteria lady (old and fat) showed me a red pill.
She told me that i must take it, and while explaining why, she took one her self. There was a man behind her
But i don't really know what he looked like (weird). The girl to my right took her pill and was just (we had the same condition, something about
ears or something, don't remember)
looking around, being weird. I then put on a huge smile and stared at the dude to my left/behind me.
Then got up, while smiling, walked up to the cafeteria lady and smiled crazily at her (idk why).
Then she said, in a deep, non human voice, "YOU KNOW WHAT HAPPENS IF YOU TOUCH ME!", and i was
going to grab her, but that scared me, but i didn't let my fear show, then i was just laughing hysterically saying, "I KNOW WHAT THIS IS (I think i said vince? dont remember) VINCE
 HAHAHAHA", i kept saying it, and the lady was getting angry, then i sat back down, and the girl to
my right, was knocked out, so i elbowed her in the face, and she woke up with a demon face (face was a big
hole with jagged teeth and did a weird scream) then i kept saying, "I know what this is!! hahaha!", and
then everything slowly faded to black, and i woke up.... What does this stuff mean lol, crazy dreams/nightmare!


Also the transition from the dream ending to me wakin up was smooth, like it faded out and i woke up, can't explain it lol.

This was written quickly, so excuse the grammatical errors and things.

15
add in error(%obj.sourceclient.name); and see if it echoes the client's name..

Pages: [1] 2 3 4 5