ADDED new wheelpost script and replace vehicles

This commit is contained in:
KingMcDonalds
2025-07-15 13:52:21 -07:00
parent 77ce9d4579
commit 87efd19af5
58 changed files with 186 additions and 4 deletions
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5'
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3
View File
@@ -0,0 +1,3 @@
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
client_script "client.lua"
+19
View File
@@ -0,0 +1,19 @@
Citizen.CreateThread(function()
local angle = 0.0
local speed = 0.0
while true do
Citizen.Wait(0)
local veh = GetVehiclePedIsUsing(PlayerPedId())
if DoesEntityExist(veh) then
local tangle = GetVehicleSteeringAngle(veh)
if tangle > 10.0 or tangle < -10.0 then
angle = tangle
end
speed = GetEntitySpeed(veh)
local vehicle = GetVehiclePedIsIn(PlayerPedId(), true)
if speed < 0.1 and DoesEntityExist(vehicle) and not GetIsTaskActive(PlayerPedId(), 151) and not GetIsVehicleEngineRunning(vehicle) then
SetVehicleSteeringAngle(GetVehiclePedIsIn(PlayerPedId(), true), angle)
end
end
end
end)
+2 -2
View File
@@ -207,7 +207,7 @@ ensure seatbelt
ensure jraxion_handlingeditor ensure jraxion_handlingeditor
ensure Better-Torch ensure Better-Torch
ensure K9_ped ensure K9_ped
ensure ensure savewheelpos
ensure ensure
@@ -756,7 +756,7 @@ ensure EGRP-Industrial
ensure EGRP-Motorcycles ensure EGRP-Motorcycles
ensure EGRP-Muscle ensure EGRP-Muscle
ensure EGRP-Off-Road ensure EGRP-Off-Road
//ensure EGRP-Planes ensure replace1
ensure EGRP-Sedans ensure EGRP-Sedans
ensure EGRP-Service ensure EGRP-Service
ensure EGRP-Sports ensure EGRP-Sports