Nomad only officially supports legit versions, but their scripthook still works on scene release if you copy the crack files to /Scripthook/data folder
Would it be possible to add vehicle handling as a hotkey?
For example have a key that toggles between default and one of the multipliers.
The vehicle handling looks like this in ScriptHook\data\scripts\trainer\menu\Vehicle.lua
local function VehicleHandlingChange(menu, text, name) local veh = GetPlayerVehicle() if veh == nil then return end veh:SetSlowMotionAssist(tonumber(name)); end local function VehicleHandlingMenu(menu, text, name) local menu = UI.SimpleMenu() menu:SetTitle("Vehicle Handling") menu:AddButton("Default Handling", "0", VehicleHandlingChange) menu:AddButton("Handling multiplier x1", "1", VehicleHandlingChange) menu:AddButton("Handling multiplier x2", "2", VehicleHandlingChange) menu:AddButton("Handling multiplier x3", "3", VehicleHandlingChange) menu:AddButton("Handling multiplier x5", "5", VehicleHandlingChange) menu:AddButton("Handling multiplier x10", "10", VehicleHandlingChange) menu:AddButton("Handling multiplier x20", "20", VehicleHandlingChange) return menu end Seems like an easy if/else script could make this, like the other toggle scripts are made.
Install Scripthook from link in description, then copy the "Scripthook" folder from this download to your game directory. It will merge with the other Scripthook folder and everything will go in the right place
17 comments
Would it be possible to add vehicle handling as a hotkey?
For example have a key that toggles between default and one of the multipliers.
The vehicle handling looks like this in ScriptHook\data\scripts\trainer\menu\Vehicle.lua
local function VehicleHandlingChange(menu, text, name)
local veh = GetPlayerVehicle()
if veh == nil then
return
end
veh:SetSlowMotionAssist(tonumber(name));
end
local function VehicleHandlingMenu(menu, text, name)
local menu = UI.SimpleMenu()
menu:SetTitle("Vehicle Handling")
menu:AddButton("Default Handling", "0", VehicleHandlingChange)
menu:AddButton("Handling multiplier x1", "1", VehicleHandlingChange)
menu:AddButton("Handling multiplier x2", "2", VehicleHandlingChange)
menu:AddButton("Handling multiplier x3", "3", VehicleHandlingChange)
menu:AddButton("Handling multiplier x5", "5", VehicleHandlingChange)
menu:AddButton("Handling multiplier x10", "10", VehicleHandlingChange)
menu:AddButton("Handling multiplier x20", "20", VehicleHandlingChange)
return menu
end
Seems like an easy if/else script could make this, like the other toggle scripts are made.
Thanks in advance.
https://db.nomad-group.net/page/MDE_ScriptHook:_Instructions