mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
13 lines
No EOL
379 B
Lua
13 lines
No EOL
379 B
Lua
-- Debug naked
|
|
-- http://www.wowhead.com/spell=54844 (X-Ray Specs)
|
|
local function debug_naked(event, player, msg, lang, typ)
|
|
if(msg == "#naked" and not player:IsDead()) then
|
|
player:CastSpell(player, 54844, false)
|
|
local aura = player:GetAura(54844)
|
|
if (aura ~= nil) then
|
|
aura:Remove()
|
|
end
|
|
end
|
|
end
|
|
|
|
RegisterPlayerEvent(18, debug_naked) |