Guest User

Untitled

a guest
May 20th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. local speak = {}
  2.  
  3. function speak:on_load()
  4. print("speech loaded")
  5. end
  6.  
  7. function speak:on_unload()
  8. print("speech unloaded")
  9. end
  10.  
  11. function speak:on_privmsg(msg_message, msg_channel, msg_nick, msg_user, msg_server)
  12. if msg_message:lower():find("nitori, say ") then
  13. reply(msg_message:sub(12))
  14. end
  15. end
  16.  
  17. return speak
Add Comment
Please, Sign In to add comment