mirror of
https://github.com/araxiaonline/RandomScriptsforAzerothCore.git
synced 2026-06-16 03:42:20 -04:00
11 lines
290 B
Lua
11 lines
290 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)
|