Random Nick Changer

By Mr_E on Sep 27, 2007

Got bored made this random nick changer. Just copy/paste into remotes and change all the NICK1- NICK7 to your desired nicks and make sure that if you add more or delete them you change the set variable at top. To use right click the channel and it's under "Random Nick" or type /rannick. Enjoy

Comments

Sign in to comment.
ZiX   -  Oct 29, 2007

Nice Job Mr_E ;]

 Respond  
Saeed   -  Sep 28, 2007

It\'s so much easier to add it without having to open the scripts editor and create a new line in the alias just for another nick. And you\'re right, shorter isn\'t always better but it would be in this case. It\'s much easier to have in all in one line and use tokens. I would follow the ideas of the others because they are much easier to configure and use.

 Respond  
Mr_E   -  Sep 28, 2007

Well yeah but I try to keep it simple and shorter isn\'t always better...Text files get long...and no Gummo as I stated you can add more to it, if you bothered to read the intro that is.

 Respond  
Akishoot   -  Sep 28, 2007

I\'m pretty sure you could do this through a text file as well. Not as \'professional\' looking, but it would work.

 Respond  
guest598594   -  Sep 28, 2007
alias rannick nick $gettok(%nicks,$r(1,$numtok(%nicks,32)),32) 
alias addnnick set %nicks $addtok(%nicks,$$?=\"Nick?\",32)
alias remnick set %nicks $remtok(%nicks,$$?=\"Nick?\",1,32)
 Respond  
Gummo   -  Sep 28, 2007

napa182: Both your way and Mr_E\'s way can only work properly if there\'s 7 nicks.

 Respond  
napa182   -  Sep 28, 2007

oops

 Respond  
napa182   -  Sep 28, 2007

well you could do it alot of diff ways but smaller is not always better..
heres another way lmao

menu channel { 
  .Random Nick
  ..Echo ChangeNicks:{ echo -a Nick now randomly changed | rannick } 
}
alias rannick {
  var %f NICK1,NICK2,NICK3,NICK4,NICK5,NICK6,NICK7
  nick $gettok(%f,$r(1,7),44)
} 

or again i do like E\'s way also it\'s ez to read for beginners to learn from...

 Respond  
Gummo   -  Sep 28, 2007

You can make that script much smaller:

menu channel { 
  Random Nick
  .ChangeNicks:{
    echo -a Nick now randomly changed
    tokenize 32 NICK1 NICK2 NICK3 NICK4 NICK5 NICK6 NICK7
    nick $ [ $+ [ $rand(1,$0) ] ]
  }
}

:)

 Respond  
napa182   -  Sep 27, 2007

nice work E

 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.