Everything posted by ph9902
- 5
- 4
- 3
- 2
- 1
- 1
- 2
- 3
- 4
- 5
- 6
-
[UPDATED] Beachfront Callouts by FallOsprey
@FallOsprey I had started making a similar pack while back, I have an active shooter callout with a couple locations. One on the pier and one on the beach. Also have a suspicious vehicle callout for a location on the pier. I am down to send you them so you can maybe add them into this pack if you want.
- 24 comments
- 10 reviews
-
Code 4
Just a disclaimer I am familiar with C# however still getting to know the LSPDFR API so hopefully this is all helpful but I definitely don't have the best solution to your problem. But why not try 😅 For the OfficerFoundDead callout, upon first look maybe line 70 You are trying to spawn the Ped based on the position of the SultanRsVehicle however you have not actually spawned the SultanRsVehicle at your desired spawn point. Try to spawn the SultanRsVehicle before you try to spawn a ped based on the position of said vehicle. I will keep updating with more (hopefully helpful) suggestions
-
Code 4
I'm guessing its the same callouts from your other post. If so, on the HotPursuit callout delete line 54. This should fix that callout, let me know, also give me a little to look over the other 2 callouts and I will try my best to help fix them.
-
How to set random position to the call.
Maybe either of these could help? Vector3 randomPosition = World.GetRandomPositionOnStreet(); Vector3 randomPositionNearby = World.GetNextPositionOnStreet(Game.LocalPlayer.Character.Position.Around(20f)); Adjust the float distance for nearby position as needed.