Add files via upload

This commit is contained in:
Dinkledork
2023-02-11 03:20:34 -07:00
committed by GitHub
parent 4e7172544f
commit 6273678709
9 changed files with 451 additions and 226 deletions

11
Unbind.lua Normal file
View File

@@ -0,0 +1,11 @@
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)