Nvm, i used Codewalker (https://www.gta5-mods.com/tools/codewalker-gtav-interactive-3d-map) to find out
Hermes1312
View profile on GTA5-Mods.com »
Posts made by Hermes1312
-
Model name of houses on Grove St / Davis and other hoods
Do you know what is the name of models for houses on Grove St / Davis and other hoods like Chamberlain Hills?
-
RE: [.NET] MovementAnimationSet
@JohnFromGWN No problem you helped me anyway
-
RE: [.NET] MovementAnimationSet
@JohnFromGWN Wait a second why did u applied animation to SpawnedPed and gave Task to CurrentPed i meant to apply movement style for eg. Ped1 and then tell this Ped1 to enter vehicle with specified movement style.
-
[.NET] Smooth animation from ragdoll
Hello,
Is it possible to have smooth transition when ragdolled ped is trying to standup? -
RE: [.NET] MovementAnimationSet
@JohnFromGWN I found a diffrent way:
RevivedPed.Task.EnterVehicle(Team.Ambulance, IsDriver ? VehicleSeat.LeftRear : VehicleSeat.RightRear);
if (!Function.Call<bool>(Hash.HAS_ANIM_SET_LOADED, "move_m@injured"))
Function.Call(Hash.REQUEST_ANIM_SET, "move_m@injured");
Function.Call(Hash.SET_PED_MOVEMENT_CLIPSET, RevivedPed.Handle, "move_m@injured", 0x3E800000);
https://nativedb.dotindustries.dev/natives/0x95D2D383D5396B8A?search=SET_PED_IS_DRUNK
-
RE: [.NET] MovementAnimationSet
@JohnFromGWN Not working for me
-
[.NET] MovementAnimationSet
Hi,
How does MovementAnimationSet works? I want to set ped's movement animation and then task him to enter vehicle with this movement style. I was trying:RevivedPed.MovementAnimationSet = "move_m@injured"; RevivedPed.Task.EnterVehicle(Team.Ambulance, IsDriver ? VehicleSeat.LeftRear : VehicleSeat.RightRear);
-
RE: [.NET] Script.Wait(1000) without freezeing whole script.
@JohnFromGWN I dont think that what i did is correct but i can share i did it like this: GitHub
-
RE: [.NET] Script.Wait(1000) without freezeing whole script.
@JustDancePC It's not that but i solved it with Stopwatch