Files

12 lines
345 B
Lua
Raw Permalink Normal View History

2023-02-16 21:20:12 -07:00
local cmd = "repairall"
local function OnCommand(event, player, command)
if command == cmd then
if not player:IsInCombat() then
player:DurabilityRepairAll( false )
2023-03-03 16:35:23 -07:00
player:SendBroadcastMessage("Your equipment has been repaired.")
2023-02-16 21:20:12 -07:00
end
return false
end
end
RegisterPlayerEvent(42, OnCommand)