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

Pages: 1 2 3 4 5 6 [7] 8 9 10 11 12 ... 19
91
Modification Help / Re: What's wrong with this script?
« on: May 29, 2013, 01:49:06 AM »
Goign into the console, I type deactivatepackage(BoshBot); then activatepackage(BoshBot); and it says that BoshBot isn't a package.

92
Modification Help / Re: What's wrong with this script?
« on: May 28, 2013, 07:32:34 PM »
Quote
package BoshBot
{
   function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg)
   {
      Parent::clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg);
         if(isObject(BoshBot))
          {
            switch$(%msg)
               {

            case "Testing":
            if(%name $= "Boshy Pie")
               {
               commandToServer('messageSent', "BamBot: This was a triumph!"); break;
               }

            case "Good":
            commandToServer('messageSent', "BoshBot: Thats not good, thats great!"); break;

            case "lol":
               commandToServer('messageSent', "Boshbot: I didn't get it.."); break;
            case "derp":
               commandToServer('messageSent', "Boshbot: Herp-a-Derp"); break;

            case "wtf":
               commandToServer('messageSent', "Boshbot: What the what!?  Whatch your mouth, forgettard!"); break:
            case "RobBot":
               commandToServer('messageSent', "Boshbot: brother whaat?  brother whooo?"); break;
            case "Cool":
               commandToServer('messageSent', "Boshbot: I'm actually somewhat hot"); break;

            case "idk":
               commandToServer('messageSent', "Boshbot: You don't know!? Everyone knows the bird is the word!"); break;

            case "What?":
               commandToServer('messageSent', "Boshbot: You heard him!"); break;

            case "Wait":
               commandToServer('messageSent', "Boshbot: No YOU wait!"); break;
            case "shut up":
               commandToServer('messageSent', "Boshbot: brother what you just say to me?  I'll pop a cap in yo' ass!"); break;

            case "no you shut up":
               commandToServer('messageSent', "Boshbot: How about you piss off, cracker?"); break;

            case "afk":
               commandToServer('messageSent', "Boshbot: do it now!"); break;

            case "cake":
               commandToServer('messageSent', "Boshbot: What's that slang for?"); break;

            case "That makes boshBot sad":
            commandToServer('messageSent', "Boshbot: WAAAAAA I'M FEELING SIMULATED SADNESS!!"); break;

            case "who are you?":
               commandToServer('messageSent', "Boshbot: why the forget are you asking me, brother?"); break;

            case "youre stupid":
            commandToServer('messageSent', "Boshbot: brother, you don't know me!"); break;
            case "I'm Love you, BoshBot":
            commandToServer('messageSent', "Boshbot: I love big Booty Hoes"); break;

            case "your mom":
               commandToServer('messageSent', "Boshbot: You mean Bosh?"); break;

            case "bye":
               commandToServer('messageSent', "Boshbot: bye."); break;

            case "Fart":
               commandToServer('messageSent', "Boshbot: SAFETY!!!"); break;

            case "gtg":
               commandToServer('messageSent', "Boshbot: Get The Girl? brother, my hoes are unlimited."); break;

            case "Boshbot, Off":
               BamBot.delete(); break;
             
            case "Boshbot, Clear Spam":
               CommandToServer('ClearSpamBricks'); break;

            case "Boshbot, Clear My Bricks.":
               CommandToServer('ClearBricks'); break;
            
            case "Boshbot, Clear Floating Bricks! ":
               CommandToServer('ClearFloatingBricks'); break;
               }
         }         
   }
};
activatePackage(boshBot);

//Greeting
package BoshBotGreet
{
   function newChatHud_addLine(%text)
   {
      Parent::newChatHud_addLine(%text);
      %UnusedVar = strReplace(%text," connected.","");

      if(%UnusedVar !$= %text)
      {
         boshBot.Greet();
      }
   }
};
activatePackage(BoshBotGreet);

function BoshBotOn()
{
   new ScriptObject(BoshBot)
   {
   Greeting[1] = "Wazzuuuuup?.";
   Greeting[2] = "Hey.";
   Greeting[3] = "Yo.";
   Greeting[4] = "Hi.";
   Greeting[5] = "What up, mah brother?";
   Greeting[6] = "Wazzup?.";
   };
}

function BoshBot::Greet(%this)
{
      if(!isObject(%this)) return;
      %num = getRandom(1,5);
      commandtoserver('messagesent',"BoshBot: " @ %this.Greeting[%num]);
     
}

if (!$addedBamBotKeys)
{
   $remapDivision[$remapCount] = "Rob Bot";
   $remapName[$remapCount] = "BoshBot On";
   $remapCmd[$remapCount] = "BoshBotOn";
   $remapCount++;
   $remapName[$remapCount] = "BoshBot Off";
   $remapCmd[$remapCount] = "BoshBot.Off";
   $remapCount++;
   $addedAdamBotKeys = true;
}

function BamBot::Off(%this)
{
if(!isObject(%this))return;
BoshBot.delete();
}
I believe I've done everything asked, still isn't working.

93
General Discussion / Re: Who helped Bazooka Joe on his RPG?
« on: May 28, 2013, 07:30:09 PM »
Bump.  Mounds, I need that save.

94
Modification Help / Re: What's wrong with this script?
« on: May 28, 2013, 04:54:59 PM »
Quote
For example, I say "connected." your bot will spam "Hey."
Can I change it to when the console says someone has connected?  Or is that possible?

95
Modification Help / What's wrong with this script?
« on: May 28, 2013, 02:57:45 PM »
I got a script off of JJStorms forums, it's a ChatBot.  I edited it and now I'm not sure what's wrong with it, it's not working, I cannot turn it on.

Quote
package BoshBot
{
   function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg)
   {
      Parent::clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg);
         if(isObject(RobBot))
          {
            switch$(%msg)
               {

            case "Testing":
            if(%name $= "Boshy Pie")
               {
               commandToServer('messageSent', "BamBot: This was a triumph!"); break;
               }

            case "Good":
            commandToServer('messageSent', "BoshBot: Thats not good, thats great!"); break;

            case "lol":
               commandToServer('messageSent', "Boshbot: I didn't get it.."); break;
            case "derp":
               commandToServer('messageSent', "Boshbot: Herp-a-Derp"); break;

            case "wtf":
               commandToServer('messageSent', "Boshbot: What the what!?  Whatch your mouth, forgettard!"); break:
            case "RobBot":
               commandToServer('messageSent', "Boshbot: brother whaat?  brother whooo?"); break;
            case "Cool":
               commandToServer('messageSent', "Boshbot: I'm actually somewhat hot"); break;

            case "idk":
               commandToServer('messageSent', "Boshbot: You don't know!? Everyone knows the bird is the word!"); break;

            case "What?":
               commandToServer('messageSent', "Boshbot: You heard him!"); break;

            case "Wait":
               commandToServer('messageSent', "Boshbot: No YOU wait!"); break;
            case "shut up":
               commandToServer('messageSent', "Boshbot: brother what you just say to me?  I'll pop a cap in yo' ass!"); break;

            case "no you shut up":
               commandToServer('messageSent', "Boshbot: How about you piss off, cracker?"); break;

            case "afk":
               commandToServer('messageSent', "Boshbot: do it now!"); break;

            case "cake":
               commandToServer('messageSent', "Boshbot: What's that slang for?"); break;

            case "That makes boshBot sad":
            commandToServer('messageSent', "Boshbot: WAAAAAA I'M FEELING SIMULATED SADNESS!!"); break;

            case "who are you?":
               commandToServer('messageSent', "Boshbot: why the forget are you asking me, brother?"); break;

            case "youre stupid":
            commandToServer('messageSent', "Boshbot: brother, you don't know me!"); break;
            case "I'm Love you, BoshBot":
            commandToServer('messageSent', "Boshbot: I love big Booty Hoes"); break;

            case "your mom":
               commandToServer('messageSent', "Boshbot: You mean Bosh?"); break;

            case "bye":
               commandToServer('messageSent', "Boshbot: bye."); break;

            case "Fart":
               commandToServer('messageSent', "Boshbot: SAFETY!!!"); break;

            case "gtg":
               commandToServer('messageSent', "Boshbot: Get The Girl? brother, my hoes are unlimited."); break;

            case "Boshbot, Off":
               BamBot.delete(); break;
             
            case "Boshbot, Clear Spam":
               CommandToServer('ClearSpamBricks'); break;

            case "Boshbot, Clear My Bricks.":
               CommandToServer('ClearBricks'); break;
            
            case "Boshbot, Clear Floating Bricks! ":
               CommandToServer('ClearFloatingBricks'); break;
               }
         }         
   }
};
activatePackage(boshBot);

//Greeting
package BoshBotGreet
{
   function newChatHud_addLine(%text)
   {
      Parent::newChatHud_addLine(%text);
      %UnusedVar = strReplace(%text," connected.","");

      if(%UnusedVar !$= %text)
      {
         boshBot.Greet();
      }
   }
};
activatePackage(BoshBotGreet);

function BoshBotOn()
{
   new ScriptObject(BoshBot)
   {
   Greeting[1] = "Wazzuuuuup?.";
   Greeting[2] = "Hey.";
   Greeting[3] = "Yo.";
   Greeting[4] = "Hi.";
   Greeting[5] = "What up, mah brother?";
   Greeting[6] = "Wazzup?.";
   };
}

function BoshBot::Greet(%this)
{
      if(!isObject(%this)) return;
      %num = getRandom(1,5);
      commandtoserver('messagesent',"BoshBot: " @ %this.Greeting[%num]);
     
}

if (!$addedBamBotKeys)
{
   $remapDivision[$remapCount] = "Rob Bot";
   $remapName[$remapCount] = "BoshBot On";
   $remapCmd[$remapCount] = "BoshBotOn";
   $remapCount++;
   $remapName[$remapCount] = "BoshBot Off";
   $remapCmd[$remapCount] = "BoshBot.Off";
   $remapCount++;
   $addedAdamBotKeys = true;
}

function BamBot::Off(%this)
{
if(!isObject(%this))return;
BoshBot.delete();
}

96
General Discussion / Re: Who helped Bazooka Joe on his RPG?
« on: May 28, 2013, 02:43:36 PM »
I can't remember why I got kicked from his project, but I was permanently banned from the server, I'm guessing you want to continue it?


And yes, I still have his save.
Yes, I want to continue it, who were you banned by?

97
General Discussion / Who helped Bazooka Joe on his RPG?
« on: May 27, 2013, 08:37:38 PM »
Some time ago, in a land far, far away, there was a Medieval RPG being made.  Being made by non-other than the one and only Bazooka Joe.  But the legendary Bazooka Joe lost his save, thinking his partner had it, he set out to find him.  unfortunately, he does not know his partners name, doth one of you forum browsers seek a quest?  Please tell me if you know or are the person I'm looking for, I know it is very vague information but that's all I can recall for now.

98
Creativity / Re: Xolerate will draw you stuff (Give me ideas)
« on: May 02, 2013, 12:25:22 AM »
Draw your best-bud that you don't know!  Me!

99
Games / Minecraft Skin Thread
« on: May 02, 2013, 12:13:41 AM »
http://forum.blockland.us/index.php?topic=122288.120 old thread.  Bring it back, post your custom skins.

Me:

100
Games / FPS funny moments
« on: May 02, 2013, 12:03:08 AM »
Anything from glitches to hacks.  Something funny from an FPS, let's see what we can come up with.

101
General Discussion / Re: 50k BLID's?
« on: May 01, 2013, 11:51:22 PM »
Holy titty biscuits.  Moon Moon tried to buy a key and bought 8,000

102
General Discussion / Re: Banned for spamming
« on: May 01, 2013, 11:50:19 PM »
Now I just think you're trolling, this topic has gone off track.
EDIT: Locking topic, no one's actually answering my question.

103
General Discussion / Re: Banned for spamming
« on: May 01, 2013, 11:45:04 PM »
Can't tell if you joking or just that stupid...

104
General Discussion / Re: Banned for spamming
« on: May 01, 2013, 11:42:19 PM »
he admitted to posting research websites on RTB, isn't that admittance?
I've obviously already been banned for this.  That's what this whole post is about.  Plus, I was banned by Blockbot, how could she know it was research, she's just a bot.

105
General Discussion / Banned for spamming
« on: May 01, 2013, 11:28:10 PM »
I was banned for spamming at  the GD in RTB.  But I do't think I spammed at all, I just put two different dwarf research sites.  How is this spamming?

User was banned for this post

Pages: 1 2 3 4 5 6 [7] 8 9 10 11 12 ... 19