Guest User

Untitled

a guest
Jun 25th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. on *:TEXT:!giveaway:#:{
  2. %i = 0
  3. %j = 0
  4. %add = 1
  5. %rand = $r(1, $nick($chan, 0))
  6. %tot = 7
  7. if (%tot > $nick($chan,0)) %tot = $v2
  8. %chosen = ""
  9.  
  10. %file = $+($mircdir, exclusionlist.txt)
  11. %lines = $lines(%file)
  12.  
  13. while (%i < %tot) {
  14. %add = 1
  15. while ($istok(%chosen, $nick(#, %rand), 32)) {
  16. %rand = $r(1, $nick($chan,0))
  17. }
  18. while (%j <= %lines) {
  19. if ($gettok($read(%file,%j),1,32) == $nick($chan,%rand)) {
  20. %add = 0
  21. %j = 1
  22. }
  23. inc %j
  24. }
  25. if (%add == 1){
  26. %chosen = %chosen $nick($chan, %rand)
  27. msg # $nick($chan,%rand)
  28. msg # CHOSEN: %chosen
  29. inc %i
  30. }
  31. }
Add Comment
Please, Sign In to add comment