DarSnip Fixed - :P

By Dark| on Oct 28, 2010

fixed it :P

ON *:TEXT:!cuddle *:#: {
  describe $chan sees:  $nick  cuddles with $2-
}

ON *:TEXT:!HH *:#: {
  describe $chan $nick  holds  hands with $2-
}

ON *:TEXT:!Txt *:#: {
  msg $chan ACTION: sees $nick Sexting $2-
}

ON *:TEXT:!orgy *:#: {
  describe $chan Dont look now but there is some sexy orgy action happening in the corner between $nick and $2-!
}

ON *:TEXT:!cage*:#: {
  describe $chan $nick cages $2- and uses them as a kinky sex toy
}

ON *:TEXT:!whip*:#: {
  describe $chan $nick whips $2- ! 
}

ON *:TEXT:!chainsaw*:#: {
  describe $chan chainsaws $2- now wheres your other half fucker!
}

Comments

Sign in to comment.
Dark|   -  Oct 29, 2010

oh. Dunno much about big network shit..always used one leaf :P

 Respond  
_Teen_   -  Oct 29, 2010

no dude... Anope IRC services... != /aop = autoop

 Respond  
Dark|   -  Oct 29, 2010

anope and aop is the same thing. correct? or is anope just like my PHP bot :P Authserv :p

 Respond  
napa182   -  Oct 29, 2010

Dark| Said:

@ Napa, Uh...im pretty sure mIRC has a ./aop command already the chanserv part was for the flooders spamers etc
i didn't say anything about /aop command I was talking about anope services

 Respond  
Dark|   -  Oct 29, 2010

@ Napa, Uh...im pretty sure mIRC has a ./aop command already the chanserv part was for the flooders spamers etc

 Respond  
napa182   -  Oct 29, 2010

Dark| Wrote:

im not good at one text events Or writing snippets themselves im trying to learn sockets so i could make a socket bot thats like Chanserv for a little network without chanserv

best bet is to either get anope or move to a server with anope or get a eggdrop bot that has anope features.

 Respond  
Dark|   -  Oct 29, 2010

im not good at one text events Or writing snippets themselves im trying to learn sockets so i could make a socket bot thats like Chanserv for a little network without chanserv

 Respond  
xbox_gamer1   -  Oct 29, 2010

:/

 Respond  
Jethro   -  Oct 29, 2010

Dark|, kinda what you had? So it was not quite what you had. The reason a code didn't work had to do with what you coded. Show me what you had then?

 Respond  
Dark|   -  Oct 29, 2010

Jethro_, Thats kinda what i had at frist it didnt work when i tested it so i made it like it is posted. And cupcake i kinda got the idea off of your bot pms snippet - very nice i made a bot out of it named Aria but its not pms its msg chan on her Mostly because i use a iphone irc network (IRChon) and users cant get pms or anything .

 Respond  
cupcake   -  Oct 29, 2010

Just wanted to say it's a cute snippet. LOL

 Respond  
Jethro   -  Oct 29, 2010

And mine:

on $*:text:/^!(hh|txt|orgy|whip|c(uddle|age|hainsaw))/iS:#:{
  if (!%t) { inc -u4 %t | if ($regml(1) == txt) { .msg # ACTION: sees $nick Sexting $$2- }
    else { var %m = .describe # | goto $regml(1)
      :cuddle | %m sees: $nick cuddles with $$2- | halt
      :hh | %m $nick holds  hands with $$2- | halt
      :orgy | %m Dont look now but there is some sexy orgy action happening in the corner between $nick and $$2-! | halt
      :cage | %m $nick cages $$2- and uses them as a kinky sex toy | halt
      :whip | %m $nick whips $$2-! | halt
      :chainsaw | %m chainsaws $$2- now wheres your other half f ucker!
    }
  }
}
 Respond  
MashhitDK   -  Oct 29, 2010

I would recommend it ;)
Anyways... here is "My version"

on *:TEXT:!*:#: {
  ;*** !Cuddle
  if ($1 == !cuddle) { describe # sees:  $nick  cuddles with $2- }
  ;*** !HH ( Hold Hands )
  elseif ($1 == !HH) { describe # $nick  holds  hands with $2- }
  ;*** !TXT ( Sexting )
  elseif ($1 == !Txt) { msg # ACTION: sees $nick Sexting $2- }
  ;*** !Orgy
  elseif ($1 == !orgy) { describe # dont look now but there is some sexy orgy action happening in the corner between $nick and $2-! }
  ;*** !Cage
  elseif ($1 == !cage) { describe # $nick cages $2- and uses them as a kinky sex toy }
  ;*** !Whip
  elseif ($1 == !whip) { describe # $nick whips $2- ! }
  ;*** !Chainsaw
  elseif ($1 == !chainsaw) { describe # chainsaws $2- now wheres your other half fucker! }
  ;*** Add Your own commands below here ( Ex. "elseif ($1 == !Rape) && ($2 ison $chan) && ($2 != $me) { inc %M_Rapes | describe # rapes $2 'Who is your daddy!?!' 14[04 $+ $ord(%M_Rapes) !RAPE14] | halt }"
  elseif ($1 == !COMMAND) { msg # !Cuddle , !HH , !TXT , !Orgy , !Cage , !Whip , !Chainsaw }
}

EDIT:
Nice one Jethro_
ooO( My skills are limited as in basic ??? :P )

 Respond  
_Teen_   -  Oct 29, 2010

you know that u can use all
in just one event

like

ON *:TEXT:*:#: {
   if (condition) { commands }
}

like

ON *:TEXT:*:#: {
  if ($1 == !cuddle) { describe $chan sees:  $nick  cuddles with $2- }
  if ($1 == !HH) { describe $chan $nick  holds  hands with $2- }
}
 Respond  
Dark|   -  Oct 28, 2010

if anyone asks why there is a msg $chan thats there becuae i wanted it there - Dont ask :P

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.