Top

funny bot script

+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  May 21, 2008
Last Updated  May 21, 2008
Tags  frostwire  mad  makeing  on  ppl 

Introduction

here is my first script i made it to piss people off on frostwire that join my room and siad hey hi hello and whats up? and it also has a !gay script in it that i made tell me what you think

Grab the Code

Comments

  (22)  RSS
SnoooP
Comments: 343
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 6:36 am
ROFL! lmao hahaha
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 6:38 am
nice work man
try this
Code:

on *:text:*:#: {
  if (hey isin $$1-) { describe $chan hey $nick you can type hey do you want a !@#$ cookie? !yes or !no }
  if (hi isin $$1-) { describe $chan hi $nick you can type hi do you want a !@#$ cookie? !yes or !no }
  if (whats up isin $$1-) { describe $chan hello $nick you can type whats and/or up? do you want a !@#$ cookie? !yes or !no }
  if (hello isin $$1-) { describe $chan hello $nick you can type hello do you want a !@#$ coookie? !yes or !no }
  if (!yes == $$1) { describe $chan TO !@#$ BAD!! }
  if (!no == $$1) { describe $chan i wans\'t going to give you a !@#$ cookie anyway }
  if (!maybe == $$1) { describe $chan that wasn\'t a !@#$ answer }
  if (!gay == $$1) { describe $chan !!! $nick would like to tell you that they r a !@#$ homo!! and you need to cover your assholes }
}

there is no need for multiple on text\'s
you can use if statements to check whether the word is in the sentence
EL
Comments: 1,155
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 6:48 am
I won\'t pull a full Napa182 and recode the whole thing all |33+ an such but for one u don\'t need all those On TEXT events one will do fine an stack them like so:

Code:

on *:text:*:#:{
  if (hey isin $strip($1-)) { describe $chan hey $nick you can type hey do you want a !@#$ cookie? !yes or !no }
  if (hi isin $strip($1-)) { describe $chan hi $nick you can type hi do you want a !@#$ cookie? !yes or !no }
  if (whats up? isin $strip($1-)) { describe $chan hello $nick you can type whats and/or up? do you want a !@#$ cookie? !yes or !no }
  if (hello isin $strip($1-)) { describe $chan hello $nick you can type hello do you want a !@#$ coookie? !yes or !no }
  if ($strip($1-) == !yes)  { describe $chan TO !@#$ BAD!! }
  if ($strip($1-) == !no)  { describe $chan i wans\'t going to give you a !@#$ cookie anyway }
  if ($strip($1-) == !maybe) { describe $chan that wasn\'t a !@#$ answer }
  if ($strip($1-) == !gay)  { describe $chan !!! $nick would like to tell you that they r a !@#$ homo!! and you need to cover your assholes }
}

Should add some flood protection as well but tbh it cba atm so.`-.-´

PS: Your missing a closing bracket make sure you hit the little bracket checker on the right top side of your editor and add or remove accordingly.Not to bad tho.`-.-´
SnoooP
Comments: 343
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 6:50 am
EL = Napa in the making... rofl
EL
Comments: 1,155
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 6:53 am
Rofl i taughthim every thing he knows ROFL@ punktard posting about the same #$% also punktad script your codes man even if u dont use control codes others do.`-.-´
SnoooP
Comments: 343
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:16 am
lol Nem ur a n00b :P
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:19 am
Quote:

El - punktad script your codes man even if u dont use control codes others do.`-.-´

im not sure what u mean ?
EL
Comments: 1,155
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:19 am
<3 it:P
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:22 am
arent you even going to explain what your on about ?
SnoooP
Comments: 343
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:30 am
EL is just trna be clever :P
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:33 am
:))
SnoooP
Comments: 343
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:35 am
wow my typin is bad lol... \"EL Is Just Trying To Be Clever\"
EL
Comments: 1,155
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:39 am
Lol sure man./help control codes.If you have colors or underline or bold ETC(control codes) the script will not trigger unless there removed.Try it add some color to your text with out striping it it wont trigger for you.`-.-´
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:48 am
so your saying this wont work ?

Code:

on *:text:*hi*:#: {
  msg $chan 7hi4 $nick
}
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 7:49 am
do u mean here or in mirc coz it just deleted the little l\'s in the code
pwnisher3
Comments: 129
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 2:39 pm
idk how to make flood protection this is just a very simple script that i made out of curiosity and all i did to make it was copy a line out of another script and modified it lol
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 8:42 pm
thats how u start pwnisher3

Code:

on *:text:*:#:{
  if (hey isin $strip($1-)) $$ (%wait = wait) { describe $chan Please wait 10 seconds }
  if (hey isin $strip($1-)) $$ (%wait = null) { describe $chan hey $nick you can type hey do you want a !@#$ cookie? !yes or !no | set -u10 %wait wait }
}


and do u guys mean stripping color from incoming msgs ?
criminal
Comments: 122
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 11:44 pm
@ PunkTuRed, wouldn\'t it be better to change the:
Code:

if (hey isin $strip($1-)
to
if (*hey* isin $strip($1-)


& pwnisher, i tried to post a comment but it failed every time :\\ Thanks for deleting that one <3
napa182
Comments: 953
 
mIRC Snippet:  funny bot script
Posted on May 21, 2008 11:51 pm
or you can also do this as well
Code:
on *:text:*:#:{
  var %b = hi|hello|whatsup?, %c = 1, %d = $strip($1-)
  while ($gettok(%b,%c,124)) {
    if ($istok(%d,$gettok(%b,%c,124),32)) {
      describe $chan $gettok(%b,%c,124) $nick you can type $gettok(%b,%c,124) do you want a !@#$ cookie? !yes or !no
    }
    inc %c
  }
}

then add on from there
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 22, 2008 12:13 am
well it probably is thats why im asking what it does exactly
i was under the impression that i needed that IF i had any color in my text
but thinking about it i think you guys mean IF the incoming msg has color in it
so i was just trying to find out coz i havent used it before
PunkTuReD
Comments: 75
 
mIRC Snippet:  funny bot script
Posted on May 22, 2008 12:14 am
and yes criminal but i just left it the way he had it
jonesy44
Comments: 852
 
mIRC Snippet:  funny bot script
Posted on May 22, 2008 5:31 pm
LoL @ Napa\'s re-write :p

Poor gay people :-(

Please Register or Login to start posting comments.
Bottom