ADDED new wheelpost script and replace vehicles
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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.
@@ -0,0 +1,3 @@
|
||||
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
|
||||
|
||||
client_script "client.lua"
|
||||
@@ -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
@@ -207,7 +207,7 @@ ensure seatbelt
|
||||
ensure jraxion_handlingeditor
|
||||
ensure Better-Torch
|
||||
ensure K9_ped
|
||||
ensure
|
||||
ensure savewheelpos
|
||||
ensure
|
||||
|
||||
|
||||
@@ -756,7 +756,7 @@ ensure EGRP-Industrial
|
||||
ensure EGRP-Motorcycles
|
||||
ensure EGRP-Muscle
|
||||
ensure EGRP-Off-Road
|
||||
//ensure EGRP-Planes
|
||||
ensure replace1
|
||||
ensure EGRP-Sedans
|
||||
ensure EGRP-Service
|
||||
ensure EGRP-Sports
|
||||
|
||||
Reference in New Issue
Block a user