黑手党 3 手动变速箱的 Lua 脚本。帮我重做模组

Lua Script for mafia 3 manual transmission. Help me redo the mod

提问人:kalkoenn 提问时间:11/14/2023 最后编辑:Nifimkalkoenn 更新时间:11/14/2023 访问量:37

问:

在这种模式下,每个档位都绑定到一个特定的钥匙。

SetManualOn = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetManualGear(true);
]]

SetManualOff = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetManualGear(false);
]]

SetGearR = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetGear(-1);
]]

SetGearN = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetGear(0);
]]


SetGear1 = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetGear(1);
]]

SetGear2 = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetGear(2);
]]

SetGear3 = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetGear(3);
]]

SetGear4 = [[
Gear = game.game:GetActivePlayer():GetOwner(); 
Gear:SetGear(4);
]]

unbindKey("u")
unbindKey("6")
unbindKey("7")
unbindKey("8")
unbindKey("9")
unbindKey("0")
unbindKey("m")
unbindKey("n")

bindKey("u", SetGearN)
bindKey("6", SetGearR)
bindKey("7", SetGear1)
bindKey("8", SetGear2)
bindKey("9", SetGear3)
bindKey("0", SetGear4)
bindKey("m", SetManualOn)
bindKey("n", SetManualOff)

我需要一个按钮来升档,另一个按钮来降档。因此,E - 按钮会增加档位。Q 按钮降低。让启用和禁用模组的按钮保留(M / N键)。最好移除空档和倒档的按钮,以便倒档与降档相同的按钮打开。

Lua 脚本

评论


答: 暂无答案