Top

!orgy D:

Please Register to submit score.
Average Score  4.7
Scores Submitted  3
Date Added  Mar 23, 2008
Last Updated  Mar 30, 2008
Tags  fun  game  orgy  snippet 

Introduction

just a joke the guys and i made for fun :)
simply copy and paste in your remotes, and when someone types !orgy, it will respond with some funniness.

Grab the Code

Comments

  (16)  RSS
DarkDaemon
Comments: 52
 
Posted on Mar 23, 2008 8:37 pm
:D
DarkDaemon
Comments: 52
 
Posted on Mar 23, 2008 8:37 pm
some people might no be in #Vash so set it

on *:text:!orgy:# PENIS CAKE
giggle-tan
Comments: 4
 
Posted on Mar 23, 2008 8:56 pm
hahahhaha i tottaly forgot about that; ty (updated)
DarkDaemon
Comments: 52
 
Posted on Mar 23, 2008 10:30 pm
Your welcome giggle
EL
Comments: 552
 
Posted on Mar 24, 2008 12:01 am
Lol nice.Anyways watch your command floods and a timer spam aswell and halt your self out of %nick1/2/3.And why not have the person kicked randomized as well...seems unfair to kick the middle person...they be the ones havein the best time....depending on the company O_o..
Eugenio
Comments: 266
 
Posted on Mar 24, 2008 3:50 am
=/
mountaindew
Comments: 1299
 
Posted on Mar 24, 2008 1:57 pm
I would make it
Code:

on @*:text:!orgy:#:{

So that if you're not op, it doesn't msg all that stuff and not kick the person.
humming_hi
Comments: 11
 
Posted on Mar 25, 2008 1:42 am
I would change
Code:
timer 1 7 /kick $chan %nick2 YOU GOT AIDS!

to
Code:
timer 1 7 kick $chan $gettok(%nick %nick2 %nick3,$r(1,$numtok(%nick %nick2 %nick3,32)),32) YOU GOT AIDS!

that way it will just pick a random person out of the 3
napa182
Comments: 640
 
Posted on Mar 25, 2008 2:23 am
Quote:
I would change

Code:
timer 1 7 /kick $chan %nick2 YOU GOT AIDS!


to

Code:
timer 1 7 kick $chan $gettok(%nick %nick2 %nick3,$r(1,$numtok(%nick %nick2 %nick3,32)),32) YOU GOT AIDS!


that way it will just pick a random person out of the 3


why not just
Code:
.timer 1 7 kick $chan $gettok(%nick %nick2 %nick3,$r(1,3),32) YOU GOT AIDS!

no need for the $numtok
Eugenio
Comments: 266
 
Posted on Mar 25, 2008 3:12 am
Yey Napa pwned this script with a comment.
napa182
Comments: 640
 
Posted on Mar 25, 2008 3:15 am
maybe add some checks so it dont say the same nick twice or say the bot's nick...
heres one way...
[code]on @*:text:!orgy:#:{
if ($nick(#,0) <= 4) { msg $chan Sorry $nick You Need At Lest 4 Other People Not Including $me In The Channel To Use This Script | halt }
elseif ($nick(#,0) >= 5) {
:pickagain
var %nick = $nick(#,$r(1,$nick(#,0))), %nick2 = $nick(#,$r(1,$nick(#,0))), %nick3 = $nick(#,$r(1,$nick(#,0)))
if ($istok(%nick %nick2 %nick3,$me,32)) || ($istok(%nick %nick2 %nick3,$nick,32)) { goto pickagain }
if (%nick == %nick2 || %nick == %nick3 || %nick2 == %nick3) { goto pickagain }
else {
msg $chan $nick starts an orgy!
.timer 1 3 msg $chan $nick grabs %nick %nick2 and %nick3
.timer 1 5 msg $chan OH NOES!
.timer 1 7 kick $chan $gettok($nick %nick %nick2 %nick3,$r(1,4),32) YOU GOT AIDS!
}
}
}[code]
napa182
Comments: 640
 
Posted on Mar 25, 2008 3:17 am
O_O oops
Eugenio
Comments: 266
 
Posted on Mar 25, 2008 3:21 am
LMFAO! Pwned x2
^Neptune
Comments: 129
 
Posted on Mar 28, 2008 4:47 pm
/quit Oh god why
Lord-Harlot
Comments: 9
 
Posted on Mar 28, 2008 8:40 pm
^5 ^neptune
jonesy44
Comments: 347
 
Posted on Mar 31, 2008 8:42 pm
hahah, nice one napa.

also u cud change:
Code:
  elseif ($nick(#,0) >= 5) {

to juse
Code:
  else {

Please Register or Login to start posting comments.
Bottom