example
example

教程 如何在你服务器里开启无后坐力

添加到任意在运行的client.lua内即可​

Lua:
Citizen.CreateThread(function()
    while true do
        SetWeaponAnimationOverride(PlayerPedId(), 0)
        N_0x4757f00bc6323cfe(GetHashKey("WEAPON_UNARMED"), 0.0)
        Citizen.Wait(0)
    end
end)
 
后退
顶部