Advertisement
RichJMoney

randomban

Dec 10th, 2014
1,267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local cmd = function(msg,usr,chan)
  2.  
  3. local list = GetUsers();
  4. local rand = list[math.random(#list)];
  5.  
  6. --not operator is not != in lua
  7. if UserStatus(usr) ~= 2 then
  8. rand = usr;
  9. end
  10.  
  11.  
  12. MOD.Timeout(rand,10);
  13. print("And the loser is: " .. rand .. ". BANNED!");
  14. end
  15.  
  16. return cmd;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement