mirror of
https://github.com/araxiaonline/RandomScriptsforAzerothCore.git
synced 2026-06-13 02:22:19 -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) |