Everything posted by jmwgamingyt
-
Creating a Route/Blip to a coordinate
Yes, I think so
-
Creating a Route/Blip to a coordinate
Blip routeBlip = target.attachBlip(); routeBlip.enableRoute = true; That should work :)
-
Help With Peds In Vehicles
When I spawn a ped in a vehicle, It will cruise around in the vehicle. However, when I put the ped in the passenger seat. It jumps out. This happens on both of my current mods. Any suggestions Source Code : https://github.com/jmwgamingyt/JMWs-GTA-V-Mods/blob/master/MultiCop%20Control/Main.cs https://github.com/jmwgamingyt/JMWs-GTA-V-Mods/blob/master/Police%20Trainer/Trainer.cs
-
Problem With Vehicle Spawn
Thanks :)
-
Problem With Vehicle Spawn
Can someone try to identify what causes the game to crash when a vehicle is spawned, the source code is here - https://github.com/jmwgamingyt/JMWs-GTA-V-Mods/blob/eab3c1f857f47a705b0b80beecbc4c21fedbb8bf/Police%20Trainer/Trainer.cs . The vehicle spawning code is : spawnPoint = (Game.LocalPlayer.Character.GetOffsetPositionFront(5F)); new Vehicle(selectedItem.Text, spawnPoint); (selectedItem.Text being the label of a RageNativeUI button) Thanks in advance
-
JMWs Police Trainer
-
JMWs Police Trainer
-
JMWs Police Trainer
Just copy the RageNativeUI.dll and Plugins folder into your GTA V directory. There are other guides on how to install LSPDFR on the homepage, once its set up, ts easy
-
JMWs Police Trainer
Added It :), Start the menu with F3 and select change player voice. Then choose a voice and it will change it :)
-
JMWs Police Trainer
-
JMWs Police Trainer
- 1,940 downloads
- Version 0.3A
This is a simple trainer that uses the RageNativeUI library, The source code can be found here : https://github.com/jmwgamingyt/JMWs-GTA-V-Mods , Feel free to make any changes to the mod and I will add them in the next release :) Instructions : F3 to Open, Arrow Keys To Change Selection & Enter / Backspace for Select / Back -
Error With Ped Getting In Vehicle
Thanks, any idea how I can make the ped get in the players vehicle when the player gets in it then?
-
Error With Ped Getting In Vehicle
public static void Process() { if (Game.LocalPlayer.Character.IsInAnyVehicle(false) { myPed.Tasks.EnterVehicle(Game.LocalPlayer.Character.LastVehicle, 0) } } When the player gets in a vehicle the ped stands by the door holding the handle