Did you even watch showcase? My script detect mods that gives your super punch (like in the video, cars can be launched in the space, one-shot players/peds)
So why pay money for script that a admin can clearly see player using mods to super punch then ban them. Not that hard to just pull up TxAdmin to ban someone
Can you not just look at the weapondamage event and check for the damage on the unarmed weapon? what does this do for $15/$50 that this code doesn’t lol ?
AddEventHandler(
"weaponDamageEvent",
function(sender, data)
if GetHashKey("weapon_unarmed") ~= data.weaponType then return end
if data.weaponDamage >= 150 then
CancelEvent()
Ban(sender)
end
end
)