Add files via upload

This commit is contained in:
Dinkledork
2023-02-16 21:20:12 -07:00
committed by GitHub
parent 0f5bac952c
commit dffa0234af
7 changed files with 1310 additions and 0 deletions

12
repair.lua Normal file
View File

@@ -0,0 +1,12 @@
local cmd = "repairall"
local function OnCommand(event, player, command)
if command == cmd then
if not player:IsInCombat() then
player:DurabilityRepairAll( false )
player:SendBroadcastMessage("Your items has been repaired.")
end
return false
end
end
RegisterPlayerEvent(42, OnCommand)