Advertisement
GeneralGuy4872

Slap.lua

Oct 14th, 2018
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. local name = "slap.lua"
  2. local desc = "Trout slap"
  3. local version = "0.1"
  4.  
  5. hexchat.register(name, version, desc)
  6.  
  7. local function cmd_slap(string)
  8.     local target=string[2]
  9.     hexchat.command("me slaps " .. target .. " around a bit with a large trout")
  10.     return hexchat.EAT_ALL
  11. end
  12.  
  13. local help = "Trout slap! Fun!"
  14.  
  15. hexchat.hook_command("SLAP", cmd_slap, help)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement