deleted

By cupcake on Dec 14, 2010

deleted

deleted deleted deleted deleted deleted deleted deleted deleted deleted deleted
deleted deleted deleted deleted deleted deleted deleted deleted deleted deleted
deleted deleted deleted deleted deleted deleted deleted deleted deleted deleted

Comments

Sign in to comment.
cptpan   -  Sep 30, 2012

This is hilariously retarded

 Respond  
Sorasyn   -  Jul 08, 2011

@Jaytea; you raise some good points! After revising my aforementioned comment it seems I gave some less than refutable suggestions. While those approaches would work well for awhile they are also quickly outgrown.

 Respond  
jaytea   -  Jul 08, 2011

My suggestion would be find an mSL socket bot frame or utilize the /server -m command. While /server -m can get the job done it pales in comparison to mSL socket bot in terms of operating discreetly.

how about a new mIRC-controlled server connection + various /window -h commands? :P

If you wish to try out the Socket bot frame you can thank Aha2Y for posting a most excellent framework

it's a noble attempt, but sooner or later we are going to want our bot to be able to use events, maintain a nicklist and perhaps an IAL, parse mode changes, etc.

in a client that does all the mundane work for you, it seems almost silly to use mIRC's sockets to create a bot ;P it does give you an extra layer of control, but i would say it's unnecessary for 99% of scripting related tasks.

 Respond  
Sorasyn   -  Jul 07, 2011

Person, there are many ways to go about hosting a bot on your current network. Running 2 mIRC's is not recommended as it doubles the usage mIRC uses as well as confusing the hell out of you.

My suggestion would be find an mSL socket bot frame or utilize the /server -m command. While /server -m can get the job done it pales in comparison to mSL socket bot in terms of operating discreetly.

If you wish to try out the Socket bot frame you can thank Aha2Y for posting a most excellent framework snippet as well as built in commands to show you how to build on. Here is the link: http://www.hawkee.com/snippet/8725/

 Respond  
Person   -  Jul 07, 2011

Blank copy of mirc as in I download another mirc again while keeping the current mirc still in the computer?

 Respond  
blackvenomm666   -  Jun 10, 2011

all you need is a blank copy of mirc. then add the bot codes to it connect to the server with it and you have your bot

 Respond  
Person   -  Jun 10, 2011

I have no idea how to do that , but thanks anyways :)

 Respond  
blackvenomm666   -  Jun 10, 2011

ummm i do not know if it works with a services bot like chanserv or w.e. i would just host my own bot if i were you

 Respond  
Person   -  Jun 10, 2011

So admins or owners can install this in the Bot that is assigned to the room,right?

 Respond  
blackvenomm666   -  Jun 10, 2011

you have to be able to put the script on the bot. whoever is hosting it will have to add it

 Respond  
Person   -  Jun 10, 2011

When you mention that we need to use a bot for this, does the bot have to be a personal bot or just the room bot?

 Respond  
cupcake   -  Dec 16, 2010

ReapTheChaos here is a way to make your own text files...thanks to King44 for Helping.

on :text::#:{
if ($1 == !td) {
msg $nick 4,1To play the game, person starting chooses either !truth or !dare, then to pass to next victim ummm I mean person when done type !pass(nick) Example !pass lucy (the bot can not play) remember if you decline answering the !truth must take a !dare. Everyone gets a gift type !gift to redeem, Have FUN!!
}
if ($1 == !pass) && ($2) {
msg $chan 4,1 $$2 choose !truth or !dare
}
if ($1 == !truth) {
msg $chan 14,1 $nick $read truth.txt
}
if ($1 == !dare) {
msg $chan 7,1 $nick $read dare.txt
}
if ($1 == !gift) {
describe $chan $read gift.txt
}
}

 Respond  
ReapTheChaos   -  Dec 16, 2010

Just a little constructive criticism, but your grammar could really use some work. I pulled the gift replies off of this to make a !gift script for the holidays but I soon realized it would be easier to just write my own because yours were so full of grammar mistakes.

Example: "pulls out a huge Gift from the GiftBag tosses it to $nick assortment of whips and paddles"

Should read something like: "pulls out a huge package from the GiftBag containing an assortment of whips and paddles and tosses it to $nick"

 Respond  
Sorasyn   -  Dec 14, 2010

@Jethro_ Couldn't be bothered to open mIRC help lol, was going off memory. In any case it functions in the same manner.

 Respond  
cupcake   -  Dec 14, 2010

LoL now thats funny ...

 Respond  
Jethro   -  Dec 14, 2010

The if version VS goto version:

on *:text:!cmd:#:{
  var %t = $rand(1,2)
  if (%t == 1) { msg $chan $nick $+ , cupcake rocks! }
  if (%t == 2) { msg $chan $nick $+ , muffin sucks! }
}
on *:text:!cmd:#:{
  goto $rand(1,2)
  :1 | msg $chan $nick $+ , cupcake rocks! | halt
  :2 | msg $chan $nick $+ , muffin sucks! | halt
}

You be the judge.

 Respond  
xdesoto   -  Dec 14, 2010

That makes since... I keep forgetting to accommodate to the newbies...

 Respond  
cupcake   -  Dec 14, 2010

Knew about text files thought about it...wanted newbies to be able to place in bot have to do nothing more, then paste and ready to go :)

 Respond  
xdesoto   -  Dec 14, 2010

LOL[14 Yes, I KnoW ThaT MY TypinG is BaD ThaT's ßecause The Fairies are HavinG Se× on MY KeyßoarÐ ThanK You VerY MucH !!!!4]

Awesome

But yeah I agree with pretty much everyone

Love text files that's what I do with my quotes :D voted a 8 because it's a good idea but eh no since in not having it read a text file

 Respond  
Jethro   -  Dec 14, 2010

I always find goto better when making an 8-ball type of snippet. It's even shorter and doesn't require the if conditions.

SunnyD, any valid reason why:> $read(Truths.txt,$rand(1,99))

$read(truths.txt)

already does the randomizing.

By the way, It's better to use $lines(truths.txt)

$read(truths.txt,$r(1,$lines(truths.txt)))

than use a chosen number 99.

 Respond  
blackvenomm666   -  Dec 14, 2010

and if you did it with the text file the rand wouldnt really be needed at all it would automatically just randomly pick a line from that text file to read

 Respond  
blackvenomm666   -  Dec 14, 2010

doing codes on a fricking wii console sucks fyi haha

 Respond  
blackvenomm666   -  Dec 14, 2010

just a small rewrite of yours makes it a lil more compact and just a little better. you really should start using opening and closing brackets like on th is line if ($1 == !pass) >>{ msg $chan 4,1 $$2 choose !truth or !dare }<<

:---------------------------------------------------------------------------------------------------------------------------------------------------
:Truth or Dare Game                                                                                                                                                                                               
:Snippet by cupcake                                                                                                                                                                                       
:Friday, 29 October 2010
:For Adult Servers                                                                                                                                                                   
:Just Place in Remote, The Game is very simple.                                                                        
:Commands help !td  !truth !dare !pass !gift, has Questions already loaded.                              
:Been Testing On two Server For Over a Month, Works great.
:----------------------------------------------------------------------------------------------------------------------------------------------------

on *:TEXT:*:#:{
  tokenize 32 $strip($1-) 
  if ($1 == !td) { msg $nick 4,1To play the game, person starting chooses either !truth or !dare, then to pass to next victim ummm I mean person when done type !pass(nick) Example !pass lucy  (the bot can not play) remember if you decline answering the !truth must take a !dare.  Everyone gets a gift type !gift to redeem, Have FUN!!! }
  if ($1 == !pass) { msg $chan 4,1 $$2 choose !truth or !dare }
  if ($1 == !truth) {
    var %t $rand(1,99)
    if (%t == 1) msg $chan 14,1 $nick you ever had a 3 some?
    if (%t == 2) msg $chan 14,1 $nick you ever woke up next to someone and regretted it?
    if (%t == 3) msg $chan 14,1 $nick you ever used a vegtable during sex? tell us what and how ?
    if (%t == 4) msg $chan 14,1 $nick you ever done a snow ball ? (if you don't know what it is, look it up decribe to channel)
    if (%t == 5) msg $chan 14,1 $nick Be honest how many cybersex partners have you had in this room ?
    if (%t == 6) msg $chan 14,1 $nick Who was the last person you cybered ?(your collar if you have one doesn't count)
    if (%t == 7) msg $chan 14,1 $nick looks around this room, pick one person you wouldn't mind chatting in private with ?(collars do not count)
    if (%t == 8) msg $chan 14,1 $nick who is the sexiest person in the room ?
    if (%t == 9) msg $chan 14,1 $nick you ever had hangover forgot half the night or day ? descibe it to us..
    if (%t == 10) msg $chan 14,1 $nick what is the most emarassing moment online? describe that situation to the room (remember could always take the !dare)
    if (%t == 11) msg $chan 14,1 $nick have you had phone sex with any of the people in this room ? tell us how many people, how long was the phone call ?
    if (%t == 12) msg $chan 14,1 $nick has anyone online made you cry or close to it ? who was the nick ? 
    if (%t == 13) msg $chan 14,1 $nick you ever accidently typed in the wrong room, if so tell us what ?
    if (%t == 14) msg $chan 14,1 $nick who has the filthiest mind ?
    if (%t == 15) msg $chan 14,1 $nick you ever had anal sex ?
    if (%t == 16) msg $chan 14,1 $nick if you had to be a member of the opposite sex , who in the room would you be?
    if (%t == 17) msg $chan 14,1 $nick have you ever dreamed about someone on this server ? Do they know ?
    if (%t == 18) msg $chan 14,1 $nick What is the one thing you are still afraid of?
    if (%t == 19) msg $chan 14,1 $nick Can you tell us about your secret fantasy?
    if (%t == 20) msg $chan 14,1 $nick Describe the funny side about your first intimate experience!
    if (%t == 21) msg $chan 14,1 $nick Which animal most resembles your personality?
    if (%t == 22) msg $chan 14,1 $nick Do you have a crush on someone in this room, right now?
    if (%t == 23) msg $chan 14,1 $nick Have you ever cross-dressed or worn undergarments of the opposite sex?
    if (%t == 24) msg $chan 14,1 $nick What’s your idea about romance and dating? 
    if (%t == 25) msg $chan 14,1 $nick What’s your biggest turn on?
    if (%t == 26) msg $chan 14,1 $nick If you were locked up in a room with some other person from this room, whom would you choose and why?
    if (%t == 27) msg $chan 14,1 $nick What attracts you most in a person of the opposite sex? describe why 
    if (%t == 28) msg $chan 14,1 $nick Have you ever climaxed when still fully clothed?
    if (%t == 29) msg $chan 14,1 $nick What is your idea about romance?
    if (%t == 30) msg $chan 14,1 $nick If you were to receive a sex toy as a gift, what would you prefer?
    if (%t == 31) msg $chan 14,1 $nick What is your most favorite bedroom fantasy?
    if (%t == 32) msg $chan 14,1 $nick Has someone of the same sex ever made a pass at you, or vice-versa? describe the situation 
    if (%t == 33) msg $chan 14,1 $nick What is your favorite lovemaking accessory?
    if (%t == 34) msg $chan 14,1 $nick What, according to you, is the weirdest place that you have done it in?
    if (%t == 35) msg $chan 14,1 $nick What is your favorite way of doing it? Details 
    if (%t == 36) msg $chan 14,1 $nick Have you ever had, or given thought, to the idea of a threesome ?
    if (%t == 37) msg $chan 14,1 $nick Have you ever kissed someone of the same sex? Who ?
    if (%t == 38) msg $chan 14,1 $nick What was your most embarrassing sexual mistake ?
    if (%t == 39) msg $chan 14,1 $nick Name the strangest thing you have ever fantasized about ? 
    if (%t == 40) msg $chan 14,1 $nick What parts of BDSM turn you on ?
    if (%t == 41) msg $chan 14,1 $nick What is your biggest sexual regret ?
    if (%t == 42) msg $chan 14,1 $nick What was the hottest thing you ever did in bed ? details
    if (%t == 43) msg $chan 14,1 $nick Have you ever fantasized about anyone in this room?
    if (%t == 44) msg $chan 14,1 $nick Have you ever embarrassed yourself in front of someone you were interested in and what happened?
    if (%t == 45) msg $chan 14,1 $nick What is the stupidest thing you've done because someone dared you to?
    if (%t == 46) msg $chan 14,1 $nick What gets you off when you masturbate?
    if (%t == 47) msg $chan 14,1 $nick When was the last time you kissed someone online ? Who ?
    if (%t == 48) msg $chan 14,1 $nick If you could be a person that you know [of the opposite sex] for one day, who would you be and what would you do as them ?
    if (%t == 49) msg $chan 14,1 $nick If you had 2 wishes, that would expire after 24 hours, what would they be?
    if (%t == 50) msg $chan 14,1 $nick Describe your worst experience online.
    if (%t == 51) msg $chan 14,1 $nick What was the last dream sexual you had about?
    if (%t == 52) msg $chan 14,1 $nick What's the "naughtiest" thing you've ever done or thought about?
    if (%t == 53) msg $chan 14,1 $nick Have you ever cheated on someone online ?
    if (%t == 54) msg $chan 14,1 $nick What is your most embarrassing nickname? Explain how you got it if you got one or just give us a few of your pet names.
    if (%t == 55) msg $chan 14,1 $nick What is the biggest turn off a person can have ?
    if (%t == 56) msg $chan 14,1 $nick What is the nastiest or kinkiest thing you have ever done ? 
    if (%t == 57) msg $chan 14,1 $nick What is abnormal about you ? 
    if (%t == 58) msg $chan 14,1 $nick What would you say are your best physical and emotional attributes ?
    if (%t == 59) msg $chan 14,1 $nick If you were invisible what is the first thing you would do ?
    if (%t == 60) msg $chan 14,1 $nick What is your secret sexual talent ?
    if (%t == 61) msg $chan 14,1 $nick What is the craziest thing you've done naked ?
    if (%t == 62) msg $chan 14,1 $nick Say something about rabbits, describe how rabbits breed.
    if (%t == 63) msg $chan 14,1 $nick Tell us about an experience with your favorite toy.
    if (%t == 64) msg $chan 14,1 $nick What is the naughtiest thing you have ever thought about?
    if (%t == 65) msg $chan 14,1 $nick What’s your deepest darkest secret (or 3 regular secrets)
    if (%t == 66) msg $chan 14,1 $nick Out of all the people in this room how many have you dreamt of ?
    if (%t == 67) msg $chan 14,1 $nick What sexual position do you like the best?
    if (%t == 68) msg $chan 14,1 $nick What kind of “play” do you like that will really get you turned on ? detailed
    if (%t == 69) msg $chan 14,1 $nick What kind of sexual activities do you wish to try that you haven't experienced ?
    if (%t == 70) msg $chan 14,1 $nick Tell us the kinds of things you would like a lover/partner to say during “play”.
    if (%t == 71) msg $chan 14,1 $nick What do you think is the best and worst things about group sex ?
    if (%t == 72) msg $chan 14,1 $nick In what situation do you feel sexy ?
    if (%t == 73) msg $chan 14,1 $nick Name some places or settings you like to be sexual in. Details
    if (%t == 74) msg $chan 14,1 $nick What physical characteristics do you usually find sexy nad why ?
    if (%t == 75) msg $chan 14,1 $nick What clothes or costumes do you enjoy wearing when you want to feel sexy ?
    if (%t == 76) msg $chan 14,1 $nick Tell us about a specific technique you enjoy/want from a lover performing oral sex on you.
    if (%t == 77) msg $chan 14,1 $nick What goes on in your mind when you cum ?
    if (%t == 78) msg $chan 14,1 $nick What is your favorite compliment to hear while “sexing”?
    if (%t == 79) msg $chan 14,1 $nick Describe how you like to kiss.
    if (%t == 80) msg $chan 14,1 $nick Tell us about any fantasies about food and sex.
    if (%t == 81) msg $chan 14,1 $nick Tell us are you turned on playing this game? (If yes what did it? If not, what could someone tell us right now that would make you instantly “hot”.)
    if (%t == 82) msg $chan 14,1 $nick You’re “playing” with someone in this room who would you want it to be (why)?
    if (%t == 83) msg $chan 14,1 $nick What are some everyday things that make you Hot ?
    if (%t == 84) msg $chan 14,1 $nick What is your fetish ?
    if (%t == 85) msg $chan 14,1 $nick What is your worst fear while in cyber ?
    if (%t == 86) msg $chan 14,1 $nick What would you do to someone else for a Klondike bar ? 
    if (%t == 87) msg $chan 14,1 $nick What kind of “toy” have you always wanted to have used but haven’t ? 
    if (%t == 88) msg $chan 14,1 $nick What bdsm toy scared you the most before you used/had used on you, but now you love? and why ?
    if (%t == 89) msg $chan 14,1 $nick Tell us your one secret bdsm desire that you have not accomplished yet ?
    if (%t == 90) msg $chan 14,1 $nick What qualities in a “play” partner would be a turnoff ?
    if (%t == 91) msg $chan 14,1 $nick Have you ever scened with someone online, just because you were bored, and not because you were in the mood ?
    if (%t == 92) msg $chan 14,1 $nick What person have you cybered with here (on this server)  that would shock people here ?
    if (%t == 93) msg $chan 14,1 $nick What is the worst cybersex experience you have had and why?
    if (%t == 94) msg $chan 14,1 $nick Describe your sexual secret for pleasure on your partner.
    if (%t == 95) msg $chan 14,1 $nick If you had to give up all but one thing in sex..what would it be ?
    if (%t == 96) msg $chan 14,1 $nick If you were on the menu.. please describe yourself as a meal.
    if (%t == 97) msg $chan 14,1 $nick What is one “toy” you cannot live without ?
    if (%t == 98) msg $chan 14,1 $nick must come up with a sexual Words in order for FUCK for  F=foreplay ect..repeat 5 minutes has to be different things 
    if (%t == 99) msg $chan 14,1 $nick What adolescent fantasy still hold an erotic charge for you ? 
  }

  if ($1 == !dare) {
    var %d $rand(1,75)
    if (%d == 1) msg $chan 7,1 $nick Lick the closest opposite sex on the nicklist, describe in action.
    if (%d == 2) msg $chan 7,1 $nick Passionatly kiss the next person to enter the room.
    if (%d == 3) msg $chan 7,1 $nick To the first opposite sex on nicklist, take off his/her shirt, spray whip cream all over him/her and lick it all off.
    if (%d == 4) msg $chan 7,1 $nick perform a 10 minutes lap dance on any other playing member of the same sex.
    if (%d == 5) msg $chan 7,1 $nick change your nick for 15 minutes to slut-puppy2 or Slut_puppy2.
    if (%d == 6) msg $chan 7,1 $nick Strip off all your clothes, slowly and detailed make people desire you.
    if (%d == 7) msg $chan 7,1 $nick  Pick someone in the user list.. and perform a one sided scene with them of your choice... and make it good.
    if (%d == 8) msg $chan 7,1 $nick Pick someone in the user list that you do not know and tell them how you would spank/be spanked by them in your dreams.
    if (%d == 9) msg $chan 7,1 $nick Take the nick immediately below you on the user list, and perform oral sex on them for the channel. If your last on the list, masturbate for the room  for 5 minutes.
    if (%d == 10) msg $chan 7,1 $nick You are on the catwalk.. ENTERTAIN US.
    if (%d == 11) msg $chan 7,1 $nick You have to act like a horny chicken until the next person who joins channel asks what you are doing.
    if (%d == 12) msg $chan 7,1 $nick You are now channel greeter for the next 30 minutes.. make EVERYONE feel welcome.
    if (%d == 13) msg $chan 7,1 $nick You have to go to another room and recruit at least two more channel player you have 10 minutes if you do not take another dare.
    if (%d == 14) msg $chan 7,1 $nick You are a caged dancer.. dance for us for 15 minutes the background music ( I'm To Sexy for My Shirt).
    if (%d == 15) msg $chan 7,1 $nick Beg the person above your nick to strip you naked. And Let Them 
    if (%d == 16) msg $chan 7,1 $nick Tell the person below your nick why they deserve a spanking from you, convince them to allow you to spank them.
    if (%d == 17) msg $chan 7,1 $nick Turn to the nick with M, L,or K  and give them a sample of your talking dirty during sex.
    if (%d == 18) msg $chan 7,1 $nick Demonstrate your favorite sexual position in the channel. 
    if (%d == 19) msg $chan 7,1 $nick Give an intimate back rub or body massage to the closest opposite sex on the nicklist to your nick..
    if (%d == 22) msg $chan 7,1 $nick Pretend you have a foot fetish suck on and lick closest person on the user list next to yours of the same sex. lots of details..
    if (%d == 21) msg $chan 7,1 $nick Spend the next round sitting in the lap of the player below your nick, no one below, on the top of the nicklist.excludes bots
    if (%d == 22) msg $chan 7,1 $nick Point randomly to someone else in the room, and that person has to tell you take off a certain amount of clothing. (You must remove what they say.)
    if (%d == 23) msg $chan 7,1 $nick Pretend your a horny doggie for the next 15 minutes.
    if (%d == 24) msg $chan 7,1 $nick Say the words "I love to wear pink leather" after everything you say for the next 30 minutes
    if (%d == 25) msg $chan 7,1 $nick Go to one of the biggest rooms on server, cluck like a chicken for like 5 minutes or till someone asks if your laying a egg. good luck
    if (%d == 26) msg $chan 7,1 $nick beg the room for sex, till someone says great job.
    if (%d == 27) msg $chan 7,1 $nick Describe in detail your chest down to the size of your nipples.  
    if (%d == 28) msg $chan 7,1 $nick Must starting with top of nicklist including the bot, say something sexy about each one on the nicklist, all words have to start with the first letter of nick Example sweet^tart is suckable
    if (%d == 29) msg $chan 7,1 $nick Making eating a jelly filled doughnut sexy.  
    if (%d == 30) msg $chan 7,1 $nick Show us how sexy eating a banana can really be.
    if (%d == 31) msg $chan 7,1 $nick Must say twenty things sexual nature that start with the letter F
    if (%d == 32) msg $chan 7,1 $nick Go to the largest room on server say this if female:hand me some poseies, i'll touch my toesies do anything for you.can explain (playing truth or dare please excuse me) Male:I'm Too Hot For my Pants, so ladies come remove them NOW!!!!!playing truth or dare, so please excuse me
    if (%d == 33) msg $chan 7,1 $nick If you don't have a collar wear one now for a hour {t&d} is you have a collar add that to beginning of nick
    if (%d == 34) msg $chan 7,1 $nick No matter what room your in for 1 hour after every sentence you have to have lick me...example hello sweet^tart lick me  another example doing alright today lick me
    if (%d == 35) msg $chan 7,1 $nick Name every sexual act don't forget to mention oral that counts, you have done in the last month sex-missionary style ect ...details
    if (%d == 36) msg $chan 7,1 $nick Give us a mock cyber of your favorite act in pm lots of details  
    if (%d == 37) msg $chan 7,1 $nick Change your nick to pantysniffer or PantySniffer you have two choices. 
    if (%d == 38) msg $chan 7,1 $nick Play with yourself till you cum.. and describe it as you go.
    if (%d == 39) msg $chan 7,1 $nick Choose a Dom/Domme or Guy/Girl in channel to make cum..and DO IT.
    if (%d == 40) msg $chan 7,1 $nick Choose anyone You want on the nicklist perform oral sex Them in main for 10 minutes.
    if (%d == 41) msg $chan 7,1 $nick Lick the toes of the next two persons to enter the room
    if (%d == 42) msg $chan 7,1 $nick Use 3 paragraphs to describe how you're rubbing your own ankles
    if (%d == 43) msg $chan 7,1 $nick Suck your own cock, right now, in this chat room. Even if you don't have one.
    if (%d == 44) msg $chan 7,1 $nick Seduce the bot in the room, be very sexy.
    if (%d == 45) msg $chan 7,1 $nick Give the next three players in the game a seductive kiss after they are done with their questions.
    if (%d == 46) msg $chan 7,1 $nick Head to the largest Channel on Server, ask if anyone has seen Horny_Turkey, cause you need them so bad (make sure people believe you).
    if (%d == 47) msg $chan 7,1 $nick Name three nicks on this server you have cyber or been extremely attracted to only first letter and last letter ( example M***E).
    if (%d == 48) msg $chan 7,1 $nick You are a Ballerina, get on your tippy toes and dance around the room for 10 minutes, let the room enjoy your talent.
    if (%d == 49) msg $chan 7,1 $nick Oh, My you are a Ruthless Pirate, grab a nick and have your way for 15 minutes in main, intertain us.
    if (%d == 50) msg $chan 7,1 $nick Today is your day to be a slave serve the whole room for 15 minutes, take care of everyones needs, think i would like a drink of water. (LOL)
    if (%d == 51) msg $chan 7,1 $nick In the Room take a cucumber show the room how many uses during sex. Be detailed in the description.
    if (%d == 52) msg $chan 7,1 $nick Must leave the room and recruit two more players in 10 minutes, if not then take two !dares.
    if (%d == 53) msg $chan 7,1 $nick Change your nick to Thumper69 or thumper69 everyone that comes in the rooms you are in for the next 30 minutes have to hump their leg.
    if (%d == 54) msg $chan 7,1 $nick Imagine your a Doll, with a pull string, Everyone can pull your string by typing !pull , but all you can say is sexual things example !pull lick my nipples make me arousedfor 30 minutes.(People pull $nick strings type !pull.)
    if (%d == 55) msg $chan 7,1 $nick Take out your logs look at the Best Cyber you ever had, if not a log just remember your last  and rewrite 20 minutes of that event without the other persons nick.
    if (%d == 56) msg $chan 7,1 $nick Your job is to plant something really disgusting in everyones minds in the room. (Has to be sexual to make nicks go, omg)
    if (%d == 57) msg $chan 7,1 $nick Pick the someone of the opposite nick (that you do not know) now you have to pretend you really want them, must get thenm to want you. (Use all means possible.)
    if (%d == 58) msg $chan 7,1 $nick You have a large pimple(Zit) on your Ass, convince the Rooms your are  in that you need someone to pop it for you, lots of details. (LOL)
    if (%d == 59) msg $chan 7,1 $nick Your Vampire Desires have come out, now you must take someone that you really don't know well in the room, bite them on the neck while in a feverish state to satisfy your needs, describe in details in main.
    if (%d == 60) msg $chan 7,1 $nick You are the world best Pimp or Madam now pimp off the first three nicks on the nicklist for next twenty minutes.
    if (%d == 61) msg $chan 7,1 $nick You are so excited to be playing have to take last three nicks and beg to sniff their panties, boxers whatever. ( Then sniff them for the room.)
    if (%d == 62) msg $chan 7,1 $nick Awww you have a cute pet spider named Earl, don't squash him, show people and tell them how much you love and care for him. Example (Earl is so cute all his warm eyes like watching everything)
    if (%d == 63) msg $chan 7,1 $nick This one is simple from A-Z something that has to do with sex. (Sarting with A=Arousal now keep going till Z.)
    if (%d == 64) msg $chan 7,1 $nick You will mastrabate for everyone hit this in main #thescene will take you to the room, everyone can join and watch.
    if (%d == 65) msg $chan 7,1 $nick Finish this Poem four times, Roses are Red, Violets are blue. (Be witty and sexual at the same time.)
    if (%d == 66) msg $chan 7,1 $nick Ten examples of My Mom told me not to, example (My mom told me not to = have oral sex without mouthwash.) Make them funny and sexual at the same time.
    if (%d == 67) msg $chan 7,1 $nick Name ten sexual toys you have or would like to have.
    if (%d == 68) msg $chan 7,1 $nick Give ten reasons why you are leaving your cyber mate, make them sexual and convincing. Example (Dear John, When your tongue brushes across my nipples I feel nothing anymore.)
    if (%d == 69) msg $chan 7,1 $nick You are on the phone right this minute having phonesex, let the room watch you. (No just moaning we want details.)
    if (%d == 70) msg $chan 7,1 $nick Tell the room 8 good reasons why this room is a perfect place to meet a mate.
    if (%d == 71) msg $chan 7,1 $nick You have the most perfect Ass, now convince the room.
    if (%d == 72) msg $chan 7,1 $nick Tell the room why your mouth is a wonderland of enjoyment, please details.
    if (%d == 73) msg $chan 7,1 $nick Tell the room about your Fetishit's one that makes the room look twice, think hard on this one.
    if (%d == 74) msg $chan 7,1 $nick You are a Animal, tell us how you copulate, in detail.
    if (%d == 75) msg $chan 7,1 $nick Have to make the room believe your a virgin, they have to believe you so, be convincing. 
  }

  if ($1 == !gift) {
    var %g $rand(1,70)
    if (%g == 1) describe $chan pulls a small gift out of the Giftbag and tosses it at $nick inside the box is a set of nipple claps with hanging silver chains and 10 oz weights at the ends
    if (%g == 2) describe $chan pulls a few packages out of the GiftBag  tosses $nick  two different size anal plugs
    if (%g == 3) describe $chan pulls out a huge Gift from the GiftBag tosses it to $nick assortment of whips and paddles
    if (%g == 4) describe $chan pulls out box of crayons and BDSM coloring book from the GiftBag  hands it to $nick
    if (%g == 5) describe $chan pulls a poster out of the GiftBag tosses it to $nick [Homer Simpson Naked Chained to a Wall]
    if (%g == 6) describe $chan pulls out a small red box big gold bow from the GiftBag hands it to $nick inside two buttons and three rubber bands (not everyone gets a good gift) *laughs*
    if (%g == 7) describe $chan pulls out a rubber chicken from the GiftBag hands it to $nick
    if (%g == 8) describe $chan pulls stuff lamb with a big pink bow from the GiftBag  hands it to $nick inside hid is 50 dallor bill
    if (%g == 9) describe $chan pulls a giant box out of the GiftBag hands it to $nick inside rope, three leather crops and ball gag
    if (%g == 10) describe $chan pulls a bottle of strawberry flavored lubricant from the GiftBag hands it to $nick
    if (%g == 11) describe $chan pulls out of the GiftBag a can hands $nick a Coke 0,4 COKE 14,14.
    if (%g == 12) describe $chan pulls out of the GiftBag  15,15O0,0O4,4O0,5TootsieRoll4,4O0,0O15,15O0,0 4hands it to $nick
    if (%g == 13) describe $chan pulls out a roll 15,15.0,2L1,9I0,3F0,4E1,8S0,10A0,4V0,10E1,9R15,15. 4candy from the GiftBag tosses it to $nick
    if (%g == 14) describe $chan pulls out a pair silver tiny bell slave anklets from the GiftBag hands it to $nick
    if (%g == 15) describe $chan pulls out a some new slave furs for the floor from the GiftBag hands it to $nick
    if (%g == 16) describe $chan pulls out a little green box from the GiftBag hands it to $nick (small anal vibrator)
    if (%g == 17) describe $chan pulls out of the GiftBag a picture of a naked Betty White spread eagle tosses it to $nick enjoy
    if (%g == 18) describe $chan pulls a flat package out of the GiftBag tosses at $nick pair of fishnet silk stockings 
    if (%g == 19) describe $chan pulls a ball gag from the GiftBag hands it to $nick
    if (%g == 20) describe $chan pulls out a candy bar from the GiftBag 15,15.5,5.415,5HERSHEY'S4,45,5.15,15.4tosses it to $nick
    if (%g == 21) describe $chan pulls out of the GiftBag looks around strolls over puts a live mouse in $nick hand
    if (%g == 22) describe $chan pulls out a big blue box from the GiftBag hands it to $nick inside a training collar and leash
    if (%g == 23) describe $chan pulls out of GiftBag toolbox with Craftman tools hands them to $nick
    if (%g == 24) describe $chan pulls out a beautiful red rose 4red @3-->-->-- 4from the GiftBag hands it to $nick
    if (%g == 25) describe $chan pulls out a pack of gum from the GiftBag 15,15l1,8<~Juicy-Fruit~>15,15l4tosses it to $nick
    if (%g == 26) describe $chan pulls out a baggie of columbian *um thats MINE sticks it in pocket* grabs back in the bag pulls out a 8 inch vibrator with batteries out of the GiftBag hands it to $nick
    if (%g == 27) describe $chan pulls out a long box from the GiftBag hands it to $nick pins, few daggers and one jeweled sword
    if (%g == 28) describe $chan pulls a tiny box out of the GiftBag *smirks* hands it to $nick *hope you enjoy that used condom*
    if (%g == 29) describe $chan pulls a pink box from the GiftBag  *sighs* hands it to $nick to jeweled collars
    if (%g == 30) describe $chan pulls out a medium sized green box from the GiftBag hands it to $nick a penis extender
    if (%g == 31) describe $chan pulls out a plastic fur vibrating vagina from the GiftBag hands it to $nick
    if (%g == 32) describe $chan pulls a card from the GiftBag tosses it to $nick a years membership to GoldenShowers Magazine
    if (%g == 33) describe $chan pulls out a purple barney pencil from the GiftBag hands it to $nick
    if (%g == 34) describe $chan pulls a card from the GiftBag tosses it to $nick a years membership to World of Gor Magazine
    if (%g == 35) describe $chan pulls out a little box from his GiftBag hands it to $nick small rubber ducky for the bath tub
    if (%g == 36) describe $chan pulls  out a can from the GiftBag 15,15!1,148,3MtDew15,15! 4hands it to $nick 
    if (%g == 37) describe $chan looks in bag, then back at $nick grabs chap stick out of back pocket, smears some on lips, walks over lays on big slobbery kiss *just a special gift for you*
    if (%g == 38) describe $chan pulls out from the GiftBag a black tee-shirt with group [Next-Cyber Sex] hands it to $nick 
    if (%g == 39) describe $chan grabs a red tee-shirt from the GiftBag with group [NWA - Just Don't Bite It] *smiles* hands it to $nick
    if (%g == 40) describe $chan reaches in to the GiftBag pulls out a coffee mug with group [Matchbox 20 - Back to Good] puts it in $nick hand
    if (%g == 41) describe $chan puts hand deep to the bottom of the bag pulls out a small blue box hands it to $nick inside a one song CD [Scorpions - Hey You] have to love the old classics
    if (%g == 42) describe $chan grabs a CD out of the GiftBag *laughs Out Loud* hands $nick [Rockwell - Somebody's Watching Me ]
    if (%g == 43) describe $chan reaches in picks up a CD from the GiftBag hands $nick {Basshunter - Angel In The Night - Bota Anna}
    if (%g == 44) describe $chan reaches in the GiftBag pulls out package of mint breath spray, tosses it to $nick you really need that 
    if (%g == 45) describe $chan pulls out from the GiftBag a blue tee-shirt with group [Lords of Acid - Rough Sex] tosses it to $nick
    if (%g == 46) describe $chan looks in the GiftBag pulls out a large Roll of pink Duct Tape tosses it to $nick * use your imagination*  *laughs*
    if (%g == 47) describe $chan pulls out from the GiftBag a black tee-shirt with group [HIM - Wings of a Butterfly] hands it to $nick 
    if (%g == 48) describe $chan reaches in the GiftBag pulls out a rolled up  Poster [Trews, The - So She's Leaving] hands it to $nick
    if (%g == 49) describe $chan reaches in to the GiftBag pulls out a coffee mug with group [Moving Units - Submission] puts it in $nick hand
    if (%g == 50) describe $chan pulls out a huge box from the Giftbag hands it to $nick two branding irons, tatoo inks and needles 
    if (%g == 51) describe $chan reaches into bag pulls out the top green box with huge silver bow from the GiftBag hands it to $nick a Barbie Doll with two sets of clothes on blue gown matching shoes, the other cowboy outfit
    if (%g == 52) describe $chan pulls out a super shooter squirt gun from the GiftBag hands it to $nick
    if (%g == 53) describe $chan reaches in the GiftBag hands $nick tube of cherry red lipstick hands it to $nick
    if (%g == 54) describe $chan reaches in the GiftBag hands $nick two tampons and some instructions in french *laughs*   
    if (%g == 55) describe $chan grabs inside the GiftBag pulls out a small brown paper bag hands $nick the leftover turkey and swiss cheese sandwich from yesterday 
    if (%g == 56) describe $chan grabs in the GiftBag pulls out a gift for $nick hands them a 5 year old Fruit Cake don't look at the expiration date 
    if (%g == 57) describe $chan starts to reach in the GiftBag looks over at $nick drops the bag, walks over hugs them so tight hears the air escape from their lungs *oops couldn't help myself*  
    if (%g == 58) describe $chan pulls out of the GiftBag a small box of nude Women playing cards hands them to $nick 
    if (%g == 59) describe $chan pulls out of the GiftBag Troll Repellent hands it to $nick
    if (%g == 60) describe $chan reaches in the GiftBag hands $nick Hair Remover Kit with Hot Wax and instructions 
    if (%g == 61) describe $chan reaches in the GiftBag hands $nick nailpolish (passion pink) 
    if (%g == 62) describe $chan grabs inside the GiftBag pulls out a empty bag of M&Ms hands it to $nick *so I was hungry*  *shrugs*
    if (%g == 63) describe $chan grabs inside the GiftBag pulls out A pretty snow globe with lots of snow inside scene of two hobbits making love hands it to $nick
    if (%g == 64) describe $chan reaches in the GiftBag hands $nick a paper with a cute saying to put in the nicklist popups [14  Yes, I KnoW ThaT MY TypinG is BaD ThaT's ßecause The Fairies are HavinG Se× on MY KeyßoarÐ ThanK You VerY MucH !!!!4]  
    if (%g == 65) describe $chan grabs inside the GiftBag pulls out brand new little sailboat for the bathtub  hands it to $nick
    if (%g == 66) describe $chan reaches in the GiftBag hands $nick a sticky notepad with Tweety Bird on them 
    if (%g == 67) describe $chan pulls out of the GiftBag a small box of nude Men playing cards hands them to $nick 
    if (%g == 68) describe $chan pulls out of the GiftBag a nerf football hands it to $nick
    if (%g == 69) describe $chan reaches in the GiftBag hands $nick a Dunce hat points to the corner...
    if (%g == 70) describe $chan reaches in the GiftBag hands $nick cherry lollipop
  }
}
 Respond  
Sorasyn   -  Dec 14, 2010

You could use text files to downsize the snippet and allow it to run optimally. Have a text file holding all the truths another with dare and a 3rd one with gifts. and call them using $read(), eliminating 100 lines of code in exchange for one line.

Example:

on *:TEXT:*!truth*:#:{ msg $chan 14,1 $+ $read(Truths.txt,$rand(1,99)) }

Flood protection isn't "necessary" unless people use it fairly frequently, or your occasional immature fuck comes along.

 Respond  
blackvenomm666   -  Dec 14, 2010

you should add some flood protection

 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.