Advertisement
Terrah

zeno

Oct 21st, 2014
1,482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1.  
  2. local ZenoEmotes = {};
  3.  
  4. table.insert(ZenoEmotes,"zenoPls");
  5. table.insert(ZenoEmotes,"zenoOoh");
  6. table.insert(ZenoEmotes,"zenoAah");
  7. table.insert(ZenoEmotes,"zenoChaos");
  8. table.insert(ZenoEmotes,"zenoJam");
  9. table.insert(ZenoEmotes,"zenoOscar");
  10. table.insert(ZenoEmotes,"zenoNinja");
  11. table.insert(ZenoEmotes,"zenoSlap");
  12.  
  13.  
  14. return function (m, usr, chan)
  15.  
  16.     local msg = "@" .. usr;
  17.  
  18.     if m and m ~= "" then
  19.         msg = msg .. " is a " .. m;
  20.     end
  21.  
  22.     for n=1,3 do
  23.         msg = msg .. " " .. ZenoEmotes[math.random(#ZenoEmotes)];
  24.     end
  25.  
  26.     print(msg);
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement