example
example

已解决√ 求助 求一个ESX飙车,开枪有压力,喝酒,抽烟缓解压力的插件

yidong

新用户
认证用户
黄金
0.00G
求一个ESX飙车,开枪有压力,喝酒,抽烟缓解压力的插件
 
 
最后编辑:
谢谢
 
您好有QB的压力系统不 我想让玩家开车过快增加压力
 
您好有QB的压力系统不 我想让玩家开车过快增加压力
Lua:
CreateThread(function() -- Speeding
    while true do
        if LocalPlayer.state.isLoggedIn then
            local ped = PlayerPedId()
            if IsPedInAnyVehicle(ped, false) then
                local veh = GetVehiclePedIsIn(ped, false)
                local vehClass = GetVehicleClass(veh)
                local speed = GetEntitySpeed(veh) * speedMultiplier

                if vehClass ~= 13 and vehClass ~= 14 and vehClass ~= 15 and vehClass ~= 16 and vehClass ~= 21 then
                    local stressSpeed
                    if vehClass == 8 then
                        stressSpeed = config.MinimumSpeed
                    else
                        stressSpeed = seatbeltOn and config.MinimumSpeed or config.MinimumSpeedUnbuckled
                    end
                    if speed >= stressSpeed then
                        TriggerServerEvent('hud:server:GainStress', math.random(1, 3))
                    end
                end
            end
        end
        Wait(10000)
    end
end)
如果你使用的qb-hud,就在client.lua中找这段代码,里边就是对速度进行判断然后获得压力的,你可以根据自己的想法改一下,不会就找个人帮你改,没有太复杂。
 
Lua:
CreateThread(function() -- Speeding
    while true do
        if LocalPlayer.state.isLoggedIn then
            local ped = PlayerPedId()
            if IsPedInAnyVehicle(ped, false) then
                local veh = GetVehiclePedIsIn(ped, false)
                local vehClass = GetVehicleClass(veh)
                local speed = GetEntitySpeed(veh) * speedMultiplier

                if vehClass ~= 13 and vehClass ~= 14 and vehClass ~= 15 and vehClass ~= 16 and vehClass ~= 21 then
                    local stressSpeed
                    if vehClass == 8 then
                        stressSpeed = config.MinimumSpeed
                    else
                        stressSpeed = seatbeltOn and config.MinimumSpeed or config.MinimumSpeedUnbuckled
                    end
                    if speed >= stressSpeed then
                        TriggerServerEvent('hud:server:GainStress', math.random(1, 3))
                    end
                end
            end
        end
        Wait(10000)
    end
end)
如果你使用的qb-hud,就在client.lua中找这段代码,里边就是对速度进行判断然后获得压力的,你可以根据自己的想法改一下,不会就找个人帮你改,没有太复杂。
我目前用的是mHud 但是现在无论是开枪还是开车都没有压力不会增加
 
我目前用的是mHud 但是现在无论是开枪还是开车都没有压力不会增加
那你还真的得问问人家的客服,除了检查配置文件没有相关配置之外,只能问他们找解决方案了。
 
那你还真的得问问人家的客服,除了检查配置文件没有相关配置之外,只能问他们找解决方案了。
唉 联系不上客服了!人家不管这些事情,那你能给我推荐一个qb-hud吗有汉化的更好谢谢🙏
 
唉 联系不上客服了!人家不管这些事情,那你能给我推荐一个qb-hud吗有汉化的更好谢谢🙏
找找IamDiWang试试,让他给你看看或者帮你汉化,可能会花点小钱,但是省时间。不过具体还得看你自己的想法
 
hud一般都自带压力系统,可能是你没配置对。一般情况下是用不到独立压力系统的
因为hud对于压力值和安全带的状态显示有天然优势,一般都内置
 
后退
顶部