mIRC Home    About    Download    Register    News    Help

Print Thread
#152486 01/07/06 08:01 PM
Joined: Sep 2005
Posts: 53
C
Babel fish
OP Offline
Babel fish
C
Joined: Sep 2005
Posts: 53
This is what i have
Code:
on *:Text:It's your turn:#: {
  if $nick = NarutoXD {
    set %nick1234 $nick($chan,$rand(1,$nick($chan,0,v)),v)
    /msg $chan Attack %nick1234 with fist of fury
    if %nick1234 = $me { goto begin }
  }
  { else } { halt }
}

Im trying to attack people who are voiced but im also voiced, so im attacking someone besides me who is voiced.

#152487 01/07/06 08:12 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Code:
 on *:text:It's your turn:#:{
if $nick == NarutoXD {
while %nick1234 == $me {
set %nick1234 $nick($chan,$r(1,$nick($chan,0,v)),v)
}
describe # Attacks %nick1234 with fist of fury
}
}
 


Link Copied to Clipboard