CrazyDriver commented on a Page, First Script :Few Fun Commands  -  Mar 03, 2016

You can just update it and not to have it to just their name, you can have it to others as well!

on *:TEXT:!awesome:#: {
  msg $chan $nick you are $rand(0,100) $+ % awesome!
}

on *:TEXT:!awesome *:#: {
  msg $chan $2 is $rand(0,100) $+ % awesome!
}

on *:TEXT:!cool:#: {
  msg $chan $nick you are $rand(0,100) $+ $+ % cool!
}

on *:TEXT:!cool *:#: {
  msg $chan $2 is $rand(0,100) $+ % cool!
}

on *:TEXT:!epic:#: {
  msg $chan $nick today you are looking $rand(0,100) $+ % epic!
}

on *:TEXT:!epic *:#: {
  msg $chan $2 is $rand(0,100) $+ % epic!
}

on *:TEXT:!lame:#: {
  msg $chan $nick you are $rand(0,100) $+ % lame!
}

on *:TEXT:!lame *:#: {
  msg $chan $2 is $rand(0,100) $+ % lame!
}

on *:TEXT:!stupid:#: {
  msg $chan $nick today you are $rand(0,100) $+ % stupid!
}

on *:TEXT:!stupid *:#: {
  msg $chan $2 is $rand(0,100) $+ % stupid!
}

on *:TEXT:!lucky:#: {
  msg $chan $nick today you are $rand(0,100) $+ % lucky!
}

on *:TEXT:!lucky *:#: {
  msg $chan $2 is $rand(0,100) $+ % lucky!
}

on *:TEXT:!rip:#: {
  msg $chan $nick you have $rand(1,365) days left to live!
}

on *:TEXT:!rip *:#: {
  msg $chan $2 has $rand(1,365) days left to live!
}

on *:TEXT:!seljak*:#: {
  msg # $nick you are $rand(0,100) $+ % seljak!
}

on *:TEXT:!seljak *:#: {
  msg $chan $2 is $rand(0,100) $+ % seljak!
}

on *:TEXT:!gay*:#: {
  msg # $nick you are $rand(0,100) $+ % gay!
}

on *:TEXT:!gay *:#: {
  msg $chan $2 is $rand(0,100) $+ % gay!
}

on *:TEXT:!retarded*:#: {
  msg # $nick you are $rand(0,100) $+ % retarded!
}

on *:TEXT:!retarded *:#: {
  msg $chan $2 is $rand(0,100) $+ % retarded!
}
dma  -  May 14, 2016

how do i get it to do other nics?

OrFeAsGr  -  Aug 19, 2016
ON *:TEXT:*:#: {
if ($istok(!awesome !cool !epic !lame !stupid !lucky !gay !retarded !seljak,$strip($1),32)) {
msg $chan $iif($2, $v1, $nick) is $rand(0,100) $+ % $remove($1,!)
}
}

This will do the same with only 1 event ;)
I used:
$istok
$iif
$remove
Look them up! Good Luck!

Sign in to comment

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.