eluna-scripts-ornfelt/lua/RandomScriptsforAzerothCore/Unbind.lua
2024-09-23 07:59:23 +02:00

11 lines
No EOL
280 B
Lua

local UnbindCommand = {}
local MSG_UNBIND = "#unbind"
local function UnbindInstances(event, player, msg, Type, lang)
if (msg:find(MSG_UNBIND)) then
player:UnbindAllInstances()
player:SendBroadcastMessage("All instances unbound.")
end
end
RegisterPlayerEvent(18, UnbindInstances)