Advertisement
RichJMoney

zeno

Jan 19th, 2016
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. local ZenoEmotes = {};
  2.  
  3. table.insert(ZenoEmotes,"zenoJam");
  4. table.insert(ZenoEmotes,"zenoOscar");
  5. table.insert(ZenoEmotes,"zenoNinja");
  6. table.insert(ZenoEmotes,"zenoSlap");
  7. table.insert(ZenoEmotes,"zenoRip");
  8. table.insert(ZenoEmotes,"zenoK");
  9. table.insert(ZenoEmotes,"zenoKeepoPride");
  10. table.insert(ZenoEmotes,"zenoScam");
  11. table.insert(ZenoEmotes,"zenoRage");
  12. table.insert(ZenoEmotes,"zenoW");
  13.  
  14.  
  15. return function (m, usr, chan)
  16.  
  17. local msg = "@" .. usr .. ", ty for scam <3";
  18.  
  19. if m and m ~= "" then
  20. msg = msg .. " is a " .. m;
  21. end
  22.  
  23. for n=1,3 do
  24. msg = msg .. " " .. ZenoEmotes[math.random(#ZenoEmotes)];
  25. end
  26.  
  27. print(msg);
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement