Advertisement
totodeux

Naked debug

Jul 19th, 2013
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. -- Debug naked
  2.  
  3. local function debug_naked_remove(player)
  4.     local aura;
  5.     aura = player:GetAura(54844);
  6.     aura:Remove()
  7. end
  8.  
  9. local function debug_naked(event, player, msg, lang, typ)
  10.     if(msg == "#naked") then
  11.     local aura;
  12.     player:CastSpell(player,54844,false) --http://www.wowhead.com/spell=54844 (X-Ray Specs)
  13.     CreateLuaEvent(function() debug_naked_remove(player) end, 100,1)
  14.     return false
  15.     end
  16. end
  17.  
  18. RegisterServerHook(18, debug_naked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement