example
example

求助 QB-core如何移除TAB武器盘

Lua:
Citizen.CreateThread(function()
    while true do
        Citizen.Wait(0)
        BlockWeaponWheelThisFrame()
        DisableControlAction(0, 37, true)
        DisableControlAction(0, 199, true)
    end
end)
客户端添加这段
 
Lua:
Citizen.CreateThread(function()
    while true do
        Citizen.Wait(0)
        BlockWeaponWheelThisFrame()
        DisableControlAction(0, 37, true)
        DisableControlAction(0, 199, true)
    end
end)
客户端添加这段
加到哪个脚本
 
有个问题,加了之后TAB武器转盘是没了,但是P键打不开地图
删掉这行DisableControlAction(0, 199, true)
 
后退
顶部