Everything posted by RicyVasco
-
Police Menu (Computer, Speedcam, Parkingticket and more)
So far it doesn't seem like PoliceMenu is causing the crash but some external callings with DirectX. Hopefully it gets fixed for you in the next GTA update, until then the only solution is sadly to not spawn the computer for now
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
Did this happen with other LSPDFR/RAGE versions or only on the most current one? I looked into the problem with some other devs but sadly we werent able to figure out what was causing it. I tested it on my end and both the HD and Vanilla computer dodn't crash in 30+ minutes
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
Thanks! Can you try it without the HD computer installed and can you also tell me which DirectX version you have selected in Settings - Graphics?
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
Did you install the hd computer from the extra folder or qas it crashing without it? Also: Could you please try it like 3 times and sent me the crash log everytime it does crash? That would help me out alot!
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
Thats good to know, I'll test it myself and see if I crash too. Are you doing something specific when it crashes, are you on a certain screen? Or does it also crash if you just spawn but dont interact with it?
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
Did you put the OpenIV files into the mods folder or base folder? Apart from that, the only crashes that you should encounter is the "MEM_ALLOC_ERROR" which can be fixed if you enable the setting in the ini file. Or a standard ragepluginhook crash. I'm not sure what the cause of the Access Violation could be, but I dont think Police Menu is the cause of it, especially if it works properly ingame. I did a quick google search and found multiple causes, one of the possible fixes: "Set this in your lspdfr.ini: Main.DisableGameBlipHiding = true " However, your best bet is probably to open a thread in the support forum here: https://www.lcpdfr.com/forums/forum/920-lspdfr-04-support/ and upload your ragepluginhook.log when it crashes again.
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
Currently not. I'm working on a bigger update and reworking the Court is planned for that too. I'll see if I can add that one too
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
You probably need to reinstall the OpenIV files. Whenever Rockstar updates GTA5, they tend to update the folder where those files are located
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
- 707 comments
- 33 reviews
-
Police Menu (Computer, Speedcam, Parkingticket and more)
- 707 comments
- 33 reviews
-
Regular Callouts
Make sure you have the newest version of RageNativeUI installed. Next time also attach your RageLog else I can't see why it's crashing
- 52 comments
- 5 reviews
-
LSPDFR Crashes when using Police Menu mod
Best bet would be to reinstall GTA and Rage again. GTA failed to spawn certain objects
-
Disable ped knock down ragdoll when shot
I've looked into the decompiled code for the Paleto heist and this is everything I found regarding ragdoll: SET_RAGDOLL_BLOCKING_FLAGS(ped, 32768) SET_PED_CAN_RAGDOLL_FROM_PLAYER_IMPACT(ped, false) Ped.CanRagdoll was also used but you already tried that
-
Police Menu (Computer, Speedcam, Parkingticket and more)
Blame Rockstar for that, anything past 16:9 is sadly not supported and there's nothing I could do to change that
- 707 comments
- 33 reviews
-
Disable ped knock down ragdoll when shot
You should also be able to use NativeFunction.Natives.SET_RAGDOLL_BLOCKING_FLAGS(Ped, 1)
-
Regular Callouts
- 52 comments
- 5 reviews
-
Regular Callouts
Thats simply because I can't control anything created by another plugin. If you spawn backup, I can't despawn them
- 52 comments
- 5 reviews
-
Get the ped targetted by my suspect's task
Maybe I'm not understanding the question correctly: All tasks have the Target as requirement anyway. So EnterVehicle(TargetVehicle), LeaveVehicle(TargetVehicle) etc. Scriptwise you would always know what TargetVehicle is. You can't call those functions and let the game decide who to target
-
Game crashed after starting a callout I created.
I don't see any changes in the link you pro ided but I'm also on my phone right now so maybe its a bit funky. You also need to set the Chase active for the player. While you can do that, it's not necessary. If you create a chase, add members and then set it active for the player, LSPDFR will handle ecerything. No need to give the suspect a flee task or give blips to backup
-
Game crashed after starting a callout I created.
Yeah you are calling it in a loop, creating the pursuit and requesting backup over and over again. There are numerous ways on how to fix it. One solution would be to create a bool public LHandle pursuit; public Vector3 SpawnPoint; public Blip myBlip; public Ped mySuspect; public Vehicle myVehicle; public bool StartedChase; And then in your process: if (Game.LocalPlayer.Character.Position.DistanceTo(SpawnPoint) <= 100f && !StartedChase) { // Create the pursuit. this.pursuit = Functions.CreatePursuit(); // Add mySuspect to the pursuit. Functions.AddPedToPursuit(this.pursuit, mySuspect); // Request backup for an air unit and one local unit to join the pursuit. Functions.RequestBackup(Game.LocalPlayer.Character.Position, LSPD_First_Response.EBackupResponseType.Pursuit, LSPD_First_Response.EBackupUnitType.AirUnit); Functions.RequestBackup(Game.LocalPlayer.Character.Position, LSPD_First_Response.EBackupResponseType.Pursuit, LSPD_First_Response.EBackupUnitType.LocalUnit); StartedChase = true; } Also, make sure to end the callout somehow like checking if the Suspect is arrested or killed, otherwise your callout will run indefinitely.
-
Regular Callouts
That's because the dead person is vital to the callout, removing the body also removes an important option to progress the callout. Since there is no way for me to block STP from taking away the body, the only solution os to just don't let the coroners pick it up until after the call is done.
- 52 comments
- 5 reviews