Skip to content
View in the app

A better way to browse. Learn more.

LCPDFR.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Heli Assistance - Observer Mode, Customizable Searchlight, More Features 2.4.2

(33 reviews)

7 Screenshots

This mod simulates the flight patterns of Southern California (more specifically, Los Angeles area) law enforcement air support helicopters. That is, they will orbit around a target entity or position instead of just hovering above. A spotlight will track the subject when night-time. You may also call for a backup heli anytime while on-duty.

 

 

 

A Must-Have For Realistic Gameplay!

 

 

 

 

Make sure to put HeliAssistance.dll and HeliAssistance.ini and HeliAssistance.pdb into \Plugins\LSPDFR folder.

Make sure you have the latest RageNativeUI installed. And make sure you have Spotlight installed.

 

API for Developers (for usage with v2.4.2)

Spoiler
namespace HeliAssistanceAPI
{
	using LSPD_First_Response.Mod.API;
	using Rage;
    using Functions = HeliAssistance.API.Functions;

    internal static class HeliAssistanceWrapper
	{
		private const string DllPath = @"Plugins\LSPDFR\HeliAssistance.dll";
		private static readonly bool DllExists = System.IO.File.Exists(DllPath);

		/// <summary>
		/// One more wrapper to prevent <see cref="CanBeUsed"/> from trying to load the HeliAssistance assembly.
		/// </summary>
		private static class IsLoadedWrapper
		{
			public static bool IsLoaded => Functions.IsLoaded;
		}

		/// <summary>
		/// Checks if the plugin is loaded within LSPDFR (i.e. LSPDFR is loaded and the player is on duty).
		/// </summary>
		public static bool CanBeUsed => DllExists ? IsLoadedWrapper.IsLoaded : false;

		/// <summary>
		/// Determines whether the menu can be toggled by the player. If set to false, the menu will be closed if it is visible.
		/// </summary>
		public static bool CanPlayerUseMenu
        {
			get => Functions.CanPlayerUseMenu;
			set => Functions.CanPlayerUseMenu = value;
        }

		/// <summary>
		/// Requests the air unit to be created and respond to the <see cref="Entity"/> target. If the air unit is already active and/or alive, then it will merely have the air unit respond to the target.
		/// </summary>
		public static void RequestAirUnit(Entity target) => Functions.RequestAirUnit(target);

		/// <summary>
		/// Requests the air unit to be created and respond to the <see cref="Vector3"/> target. If the air unit is already active and/or alive, then it will merely have the air unit respond to the target.
		/// </summary>
		public static void RequestAirUnit(Vector3 target) => Functions.RequestAirUnit(target);

		/// <summary>
		/// Dismisses the air unit from any active player-requested task.
		/// </summary>
		public static void DismissAirUnit() => Functions.DismissAirUnit();

		/// <summary>
		/// Attaches the active air unit to the <see cref="LHandle"/> pursuit.
		/// </summary>
		public static void AssignAirUnitToPursuit(LHandle pursuit) => Functions.AssignAirUnitToPursuit(pursuit);
		
		/// <summary>
		/// Removes the air unit from the <see cref="LHandle"/> pursuit.
		/// </summary>
		public static void RemoveAirUnitFromPursuit() => Functions.RemoveAirUnitFromPursuit();

		/// <summary>
		/// Checks if the air unit exists, regardless of its current assigned task.
		/// </summary>
		public static bool IsAirUnitAlive() => Functions.IsAirUnitAlive();

		[System.Obsolete("Use IsAirUnitInService()")]
		public static bool IsAirUnitActive() => Functions.IsAirUnitActive();

		/// <summary>
		/// Checks if the air unit exists and is currently assigned to a player-assigned task.
		/// </summary>
		public static bool IsAirUnitInService() => Functions.IsAirUnitInService();

		/// <summary>
		/// Assigns a new <see cref="Entity"/> target to the air unit, if it is active in service.
		/// </summary>
		public static void UpdateTarget(Entity target) => Functions.UpdateTarget(target);

		/// <summary>
		/// Assigns a new <see cref="Vector3"/> target to the air unit, if it is active in service.
		/// </summary>
		public static void UpdateTarget(Vector3 target) => Functions.UpdateTarget(target);

		/// <summary>
		/// Updates the air unit's flight characteristics. Pass a value <= 0 to a parameter to restore the default value of the respective flight behavior.
		/// </summary>
		/// <param name="flightAltitude">The altitude the air unit will fly when responding or following a target.</param>
		/// <param name="flightSpeed">The speed the air unit fly when responding or following a target. Value should be in GTA's default measurement, m/s.</param>
		/// <param name="orbitRadius">The radius the air unit will orbit.</param>
		/// <param name="orbitSpeed">The speed the air unit will orbit. Value should be in GTA's default measurement, m/s.</param>
		public static void UpdateFlightCharacteristics(float flightAltitude = -1f, float flightSpeed = -1f, float orbitRadius = -1f, float orbitSpeed = -1f) => Functions.UpdateFlightCharacteristics(flightAltitude, flightSpeed, orbitRadius, orbitSpeed);

		/// <summary>
		/// Sets the on-scene duration to the given <paramref name="duration"/>. If the air unit is already in the on-scene task, then it will extend the duration to the given <paramref name="duration"/>.
		/// </summary>
		/// <param name="duration">In milliseconds</param>
		public static void UpdateOnsceneDuration(int duration) => Functions.UpdateOnsceneDuration(duration);

		/// <summary>
		/// Checks if the target of the air unit is the given <see cref="Entity"/>. <br/>Note: Make sure to call <see cref="IsAirUnitInService"/> to verify the air unit is active before calling this.
		/// </summary>
		public static bool IsCurrentTarget(Entity pedToCheck) => Functions.IsCurrentTarget(pedToCheck);

		/// <summary>
		/// Checks if the target of the air unit is the given <see cref="Vector3"/>. <br/>Note: Make sure to call <see cref="IsAirUnitInService"/> to verify the air unit is active before calling this.
		/// </summary>
		public static bool IsCurrentTarget(Vector3 posToCheck) => Functions.IsCurrentTarget(posToCheck);

		/// <summary>
		/// Retrieves the <see cref="Entity"/> the air unit is targeting. <br/>Note: Make sure to call <see cref="IsAirUnitInService"/> to verify the air unit is active before calling this.
		/// </summary>
		public static Entity GetCurrentTarget() => Functions.GetCurrentTarget();

		/// <summary>
		/// Retrieves the <see cref="Vector3"/> the air unit is targeting. <br/>Note: Make sure to call <see cref="IsAirUnitInService"/> to verify the air unit is active before calling this.
		/// </summary>
		public static Vector3 GetCurrentTargetPosition() => Functions.GetCurrentTargetPosition();

		/// <summary>
		/// Checks if the air unit is active, but not assigned to the player's request. In other words, is the air unit currently roaming around.
		/// </summary>
		/// <returns></returns>
		public static bool IsCurrentlyRoaming() => Functions.IsCurrentlyRoaming();
	}
}

 

Take a look at the INI at least once to make sure you are satisfied with the settings. 

 

Special Thanks:

@alexguirre

@DiamondTKG

@NorthKing

@Echooo

LSPDFR Developer Discord

Edited by OJdoesIt
Update

What's New in Version 2.4.2

Released

- Added feature to modify the jerk rate and distance (shakiness) of the searchlight
- Improved the accuracy of ETA
- Updated API to allow an Entity object to be targeted instead of just a Ped object
- Made minor updates to the API methods


Short Description

helicopter helicopter helicopter helicopter

User Feedback

Recommended Comments

BC9205

Members

i already have spotlight 1.4 installed but it is still crashing when you request a helicopter. I would really appreciate it if you could look at this plugin more closely and find out what the reason is for the lspdfr crash. RAGENATIVE.UI is also up to date. As i result i would say there is something wrong with the heli assistance plugin.

 

Thanks.

I also would say that i am not the only one with this kind of problem. There are more comments like that.

BC9205

Members

aight,

 

somehow i got it to work it seems 🙂

BC9205

Members

And it has crashed again. Here is the log: 

 

[8/10/2022 9:48:10 PM.823] LSPD First Response: [FATAL] Forced termination
[8/10/2022 9:48:10 PM.824] LSPD First Response: [TRACE] Released 2 entities from DefaultContentManager
[8/10/2022 9:48:10 PM.824] LSPD First Response: [WARN] Chase still active, terminating manually
[8/10/2022 9:48:10 PM.827] LSPD First Response: [TRACE] Ending chase
[8/10/2022 9:48:10 PM.827] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/10/2022 9:48:10 PM.827] LSPD First Response: [TRACE] Removed ped chase strategy
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Visual lost event fired
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Visual lost event fired
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Freeing cop: Andzej Kromal
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Cop freed
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Removed ped chase strategy
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Freeing cop: Joe Crawley
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Cop freed
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Freeing cop: Boston Johnson
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Cop freed
[8/10/2022 9:48:10 PM.840] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/10/2022 9:48:10 PM.841] LSPD First Response: [TRACE] Aborting EvadeCopsInVehicle: Aborting main task
[8/10/2022 9:48:10 PM.845] LSPD First Response: [TRACE] TaskEvadeCopsAdvInVehicle::OnAbort
[8/10/2022 9:48:10 PM.845] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/10/2022 9:48:10 PM.845] LSPD First Response: [TRACE] Suspect freed
[8/10/2022 9:48:10 PM.846] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/10/2022 9:48:10 PM.846] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/10/2022 9:48:10 PM.846] LSPD First Response: [TRACE] Suspect freed
[8/10/2022 9:48:13 PM.535] LSPD First Response: [INFO] LSPDFR has shut down
[8/10/2022 9:48:14 PM.962] LSPD First Response: UB All Police Partners are removed
[8/10/2022 9:48:15 PM.211] LSPD First Response: UB Pursuit backup is failed to spawn
[8/10/2022 9:48:15 PM.346] LSPD First Response: Exception in StaticFinalizer callback (System.IO.FileNotFoundException: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.)
 

OJdoesIt

Members Author

4 hours ago, BC9205 said:

And it has crashed again. Here is the log: 

 

[8/10/2022 9:48:10 PM.823] LSPD First Response: [FATAL] Forced termination
[8/10/2022 9:48:10 PM.824] LSPD First Response: [TRACE] Released 2 entities from DefaultContentManager
[8/10/2022 9:48:10 PM.824] LSPD First Response: [WARN] Chase still active, terminating manually
[8/10/2022 9:48:10 PM.827] LSPD First Response: [TRACE] Ending chase
[8/10/2022 9:48:10 PM.827] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/10/2022 9:48:10 PM.827] LSPD First Response: [TRACE] Removed ped chase strategy
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Visual lost event fired
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Visual lost event fired
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Freeing cop: Andzej Kromal
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Cop freed
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Removed ped chase strategy
[8/10/2022 9:48:10 PM.830] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Freeing cop: Joe Crawley
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Cop freed
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Freeing cop: Boston Johnson
[8/10/2022 9:48:10 PM.831] LSPD First Response: [TRACE] Cop freed
[8/10/2022 9:48:10 PM.840] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/10/2022 9:48:10 PM.841] LSPD First Response: [TRACE] Aborting EvadeCopsInVehicle: Aborting main task
[8/10/2022 9:48:10 PM.845] LSPD First Response: [TRACE] TaskEvadeCopsAdvInVehicle::OnAbort
[8/10/2022 9:48:10 PM.845] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/10/2022 9:48:10 PM.845] LSPD First Response: [TRACE] Suspect freed
[8/10/2022 9:48:10 PM.846] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/10/2022 9:48:10 PM.846] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/10/2022 9:48:10 PM.846] LSPD First Response: [TRACE] Suspect freed
[8/10/2022 9:48:13 PM.535] LSPD First Response: [INFO] LSPDFR has shut down
[8/10/2022 9:48:14 PM.962] LSPD First Response: UB All Police Partners are removed
[8/10/2022 9:48:15 PM.211] LSPD First Response: UB Pursuit backup is failed to spawn
[8/10/2022 9:48:15 PM.346] LSPD First Response: Exception in StaticFinalizer callback (System.IO.FileNotFoundException: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.)
 

Send me the actual log file

BC9205

Members

[11.08.2022 14:55:13.511] LSPD First Response: CompuLite: Citations.xml has been successfully loaded
[11.08.2022 14:55:13.566] LSPD First Response: CompuLite: Charges.xml has been successfully loaded
[8/11/2022 2:55:14 PM.100] LSPD First Response: [TRACE] Thread Marker #6 initialized
[8/11/2022 2:55:14 PM.233] LSPD First Response: Custom Pullover.Mainloop started
[8/11/2022 2:55:14 PM.233] LSPD First Response: Loading Custom Pullover settings...
[8/11/2022 2:55:15 PM.155] LSPD First Response: [TRACE] Player switch done
[8/11/2022 2:55:18 PM.028] LSPD First Response:  [ParksTools] using cached token without checking for new token
[8/11/2022 2:55:18 PM.056] LSPD First Response: [Better EMS]: Unable to parse bone: Unknown
[8/11/2022 2:55:18 PM.064] LSPD First Response: [Better EMS]: Unable to parse bone: 
[8/11/2022 2:55:18 PM.066] LSPD First Response: [Better EMS]: Finished loading Better EMS
[8/11/2022 2:55:18 PM.109] LSPD First Response: [Better EMS]: Launching EMS response
[8/11/2022 2:55:18 PM.135] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:55:18 PM.135] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:18 PM.162] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:55:18 PM.163] LSPD First Response: [TRACE] Created policeb at X:805.8427 Y:-1183.173 Z:46.07821
[8/11/2022 2:55:18 PM.183] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:18 PM.184] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:18 PM.224] LSPD First Response: [TRACE] John Phillips (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:55:18 PM.253] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:55:23 PM.083] LSPD First Response: [TRACE] Preloading hwaycar
[8/11/2022 2:55:23 PM.083] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:23 PM.124] LSPD First Response: [TRACE] Preloading hwaycar
[8/11/2022 2:55:23 PM.424] LSPD First Response: [TRACE] Created hwaycar at X:896.92 Y:-1168.356 Z:42.71584
[8/11/2022 2:55:23 PM.479] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:23 PM.480] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:23 PM.482] LSPD First Response: [TRACE] Andrew MacDougle (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:55:23 PM.513] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar
[8/11/2022 2:55:31 PM.150] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:55:31 PM.152] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:55:31 PM.152] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:55:38 PM.131] LSPD First Response: [TRACE] Preloading POLICE3
[8/11/2022 2:55:38 PM.131] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:55:38 PM.182] LSPD First Response: [TRACE] Preloading POLICE3
[8/11/2022 2:55:38 PM.560] LSPD First Response: [TRACE] Created police3 at X:824.6554 Y:-1535.615 Z:29.82216
[8/11/2022 2:55:38 PM.672] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:55:38 PM.682] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:38 PM.711] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.712] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.721] LSPD First Response: [TRACE] Julia Rodrigues (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:55:38 PM.849] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:55:38 PM.858] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:38 PM.859] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.859] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.866] LSPD First Response: [TRACE] Killian Francisco (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:55:38 PM.887] LSPD First Response: [TRACE] AmbientSpawn - spawned: police3
[8/11/2022 2:55:42 PM.039] LSPD First Response: OP_Immersive_Dispatch [OfficerCheckIn] Check Timer Ended
[8/11/2022 2:55:42 PM.040] LSPD First Response: OP_Immersive_Dispatch [Status] 10-7 (Out of Service)
[8/11/2022 2:55:42 PM.198] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:55:45 PM.205] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 2:55:45 PM.206] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:55:48 PM.165] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:55:48 PM.165] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:48 PM.222] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:55:48 PM.581] LSPD First Response: [TRACE] Created hwaycar3 at X:852.1702 Y:-1169.467 Z:45.14573
[8/11/2022 2:55:48 PM.601] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:48 PM.602] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:48 PM.604] LSPD First Response: [TRACE] Furio Tarantino (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:55:48 PM.624] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar3
[8/11/2022 2:55:55 PM.681] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:55:55 PM.681] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:55:55 PM.682] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:55:55 PM.756] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 2:55:55 PM.756] LSPD First Response: [TRACE] Kevin Rojas (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:56:02 PM.819] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:56:02 PM.819] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:56:02 PM.819] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:56:03 PM.050] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:56:03 PM.050] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:56:03 PM.050] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:56:03 PM.458] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:56:03 PM.458] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:56:03 PM.458] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:56:10 PM.997] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:10 PM.997] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:11 PM.053] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:11 PM.420] LSPD First Response: [TRACE] Created police at X:722.957 Y:-1432.908 Z:32.17033
[8/11/2022 2:56:11 PM.443] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:11 PM.452] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:11 PM.464] LSPD First Response: [TRACE] Car Shooter (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:11 PM.489] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:11 PM.499] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:11 PM.509] LSPD First Response: [TRACE] Mamada Diallo (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:11 PM.534] LSPD First Response: [TRACE] AmbientSpawn - spawned: police
[8/11/2022 2:56:31 PM.023] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:31 PM.023] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:31 PM.064] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:31 PM.064] LSPD First Response: [TRACE] Created policeb at X:907.5818 Y:-1184.137 Z:47.90331
[8/11/2022 2:56:31 PM.084] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:31 PM.085] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:31 PM.086] LSPD First Response: [TRACE] Jack McThomasen (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:56:31 PM.108] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:56:31 PM.282] LSPD First Response: [TRACE] Thread VehicleSelector #1 initialized
[8/11/2022 2:56:33 PM.209] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.210] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.210] LSPD First Response: [TRACE] ExpandableFileParser::Parse: Reading content from file:lspdfr/data/duty_selection.xml
[8/11/2022 2:56:33 PM.212] LSPD First Response: [TRACE] Started new menu thread MenuBase #10
[8/11/2022 2:56:33 PM.239] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.239] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.241] LSPD First Response: [TRACE] ExpandableFileParser::Parse: Reading content from file:lspdfr/data/duty_selection.xml
[8/11/2022 2:56:33 PM.307] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.307] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.307] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:33 PM.322] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.322] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.322] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:33 PM.325] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.326] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.326] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:33 PM.326] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.327] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.327] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:34 PM.332] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 2:56:34 PM.334] LSPD First Response: [TRACE] Jason Williams (S_M_Y_COP_01) was set as a cop
[8/11/2022 2:56:34 PM.334] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 2:56:34 PM.335] LSPD First Response: [TRACE] Dave Summers (S_M_Y_COP_01) was set as a cop
[8/11/2022 2:56:36 PM.594] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:36 PM.594] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:36 PM.638] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:36 PM.639] LSPD First Response: [TRACE] Created policeb at X:818.0809 Y:-1243.741 Z:27.41123
[8/11/2022 2:56:36 PM.660] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:36 PM.661] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:36 PM.662] LSPD First Response: [TRACE] Frank Mudbridge (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:56:36 PM.682] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:56:37 PM.630] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:56:37 PM.631] LSPD First Response: [TRACE] Created police31 at X:446.3985 Y:-1026.087 Z:28.92508
[8/11/2022 2:56:37 PM.631] LSPD First Response: [TRACE] AmbientStationSpawn: Added police31 at Downtown Police Station
[8/11/2022 2:56:37 PM.994] LSPD First Response: [TRACE] Preloading POLICE2
[8/11/2022 2:56:37 PM.994] LSPD First Response: [TRACE] Created police2 at X:427.5909 Y:-1027.707 Z:29.22805
[8/11/2022 2:56:37 PM.995] LSPD First Response: [TRACE] AmbientStationSpawn: Added POLICE2 at Downtown Police Station
[8/11/2022 2:56:37 PM.995] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:56:37 PM.995] LSPD First Response: [TRACE] Created police31 at X:407.7591 Y:-1005.385 Z:28.26613
[8/11/2022 2:56:37 PM.996] LSPD First Response: [TRACE] AmbientStationSpawn: Added police31 at Downtown Police Station
[8/11/2022 2:56:37 PM.999] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:38 PM.008] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.019] LSPD First Response: [TRACE] Elizabeth Murray (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.021] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.025] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:38 PM.033] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.043] LSPD First Response: [TRACE] Amy Ryan (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.044] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.044] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:38 PM.055] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.066] LSPD First Response: [TRACE] Derek Manson (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.066] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.066] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:38 PM.075] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.083] LSPD First Response: [TRACE] Earl Basco (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.083] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.084] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:38 PM.093] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.101] LSPD First Response: [TRACE] Jay Richman (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.101] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:44 PM.447] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:44 PM.447] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:44 PM.447] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:44 PM.448] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:44 PM.448] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:44 PM.448] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:46 PM.326] LSPD First Response: [TRACE] hwaycar2 livery 0 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 1 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 2 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 3 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 4 name: NULL ()
[8/11/2022 2:56:47 PM.505] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:47 PM.506] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:47 PM.506] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.155] LSPD First Response: [TRACE] hwaycar2 livery 0 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 1 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 3 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 4 name: NULL ()
[8/11/2022 2:56:48 PM.339] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:48 PM.339] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:48 PM.340] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.844] LSPD First Response: [TRACE] hwaycar2 livery 0 name: NULL ()
[8/11/2022 2:56:48 PM.844] LSPD First Response: [TRACE] hwaycar2 livery 1 name: NULL ()
[8/11/2022 2:56:48 PM.845] LSPD First Response: [TRACE] hwaycar2 livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.845] LSPD First Response: [TRACE] hwaycar2 livery 3 name: NULL ()
[8/11/2022 2:56:48 PM.845] LSPD First Response: [TRACE] hwaycar2 livery 4 name: NULL ()
[8/11/2022 2:56:49 PM.168] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:49 PM.168] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:49 PM.168] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:54 PM.718] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.723] LSPD First Response: [TRACE] Released 0 entities from PoliceStation #5 Content Manager
[8/11/2022 2:56:54 PM.723] LSPD First Response: [TRACE] Instance cleaned (PoliceStation #5)
[8/11/2022 2:56:54 PM.753] LSPD First Response: [TRACE] Ped Amy Ryan has become idle again
[8/11/2022 2:56:54 PM.753] LSPD First Response: [TRACE] Ped Elizabeth Murray has become idle again
[8/11/2022 2:56:54 PM.754] LSPD First Response: [TRACE] Ped Jay Richman has become idle again
[8/11/2022 2:56:54 PM.754] LSPD First Response: [TRACE] Ped Derek Manson has become idle again
[8/11/2022 2:56:54 PM.754] LSPD First Response: [TRACE] Ped Earl Basco has become idle again
[8/11/2022 2:56:56 PM.253] LSPD First Response: [TRACE] Released 0 entities from MenuBase #10 Content Manager
[8/11/2022 2:56:56 PM.253] LSPD First Response: [TRACE] Instance cleaned (MenuBase #10)
[8/11/2022 2:56:57 PM.059] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:57 PM.059] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:57 PM.107] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:57 PM.108] LSPD First Response: [TRACE] Created police at X:885.5715 Y:-1445.578 Z:30.43327
[8/11/2022 2:56:57 PM.129] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:57 PM.138] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:57 PM.147] LSPD First Response: [TRACE] Kate Millerton (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:57 PM.168] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:57 PM.179] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:57 PM.189] LSPD First Response: [TRACE] Susan White (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:57 PM.213] LSPD First Response: [TRACE] AmbientSpawn - spawned: police
[8/11/2022 2:56:57 PM.245] LSPD First Response: [TRACE] Released 0 entities from VehicleSelector #1 Content Manager
[8/11/2022 2:56:57 PM.245] LSPD First Response: [TRACE] Instance cleaned (VehicleSelector #1)
[8/11/2022 2:56:57 PM.270] LSPD First Response: [TRACE] Thread VehicleSelector #1 has been shut down
[8/11/2022 2:57:22 PM.044] LSPD First Response: [TRACE] Updating lights options.
[8/11/2022 2:57:22 PM.045] LSPD First Response: [TRACE] Selected first option: On
[8/11/2022 2:57:22 PM.054] LSPD First Response: [TRACE] Max radio: 25
[8/11/2022 2:57:22 PM.060] LSPD First Response: [TRACE] Added radio: 0
[8/11/2022 2:57:22 PM.060] LSPD First Response: [TRACE] Added radio: 1
[8/11/2022 2:57:22 PM.060] LSPD First Response: [TRACE] Added radio: 2
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 3
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 4
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 5
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 6
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 7
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 8
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 9
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 10
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 11
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 12
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 13
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 14
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 15
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 16
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 17
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 18
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 19
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 20
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 21
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 22
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 23
[8/11/2022 2:57:22 PM.065] LSPD First Response: [TRACE] Added radio: 24
[8/11/2022 2:57:22 PM.148] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:57:22 PM.148] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:57:22 PM.206] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:57:22 PM.207] LSPD First Response: [TRACE] Created police31 at X:770.0642 Y:-1439.747 Z:28.09795
[8/11/2022 2:57:22 PM.237] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:57:22 PM.245] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:57:22 PM.254] LSPD First Response: [TRACE] Andrew Burke (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:57:22 PM.278] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:57:22 PM.289] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:57:22 PM.300] LSPD First Response: [TRACE] Alex Mason (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:57:22 PM.333] LSPD First Response: [TRACE] AmbientSpawn - spawned: police31
[8/11/2022 2:57:23 PM.292] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:57:23 PM.292] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:57:23 PM.292] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:57:23 PM.461] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:57:23 PM.461] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:57:23 PM.461] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:57:24 PM.063] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:57:24 PM.063] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:57:24 PM.063] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:12 PM.286] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:58:12 PM.287] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:58:12 PM.337] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:58:12 PM.338] LSPD First Response: [TRACE] Created police31 at X:702.9894 Y:-1433.037 Z:32.29707
[8/11/2022 2:58:12 PM.361] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:58:12 PM.371] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:12 PM.380] LSPD First Response: [TRACE] Amy Taylor (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:58:12 PM.405] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:58:12 PM.414] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:12 PM.433] LSPD First Response: [TRACE] Peyton Young (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:58:12 PM.462] LSPD First Response: [TRACE] AmbientSpawn - spawned: police31
[8/11/2022 2:58:16 PM.061] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:16 PM.061] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:16 PM.061] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:16 PM.633] LSPD First Response: Opening or closing menu
[8/11/2022 2:58:20 PM.639] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:20 PM.639] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:20 PM.639] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:20 PM.788] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:20 PM.788] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:20 PM.788] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:22 PM.290] LSPD First Response: Opening or closing menu
[8/11/2022 2:58:30 PM.187] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:30 PM.188] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:30 PM.188] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:30 PM.844] LSPD First Response: [MEGAPHONE UI] Operation is not valid because the specified  Rage.TaskInvoker is invalid.
[8/11/2022 2:58:37 PM.326] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:58:37 PM.326] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:37 PM.398] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:58:37 PM.768] LSPD First Response: [TRACE] Created hwaycar3 at X:655.5812 Y:-1190.175 Z:42.68215
[8/11/2022 2:58:37 PM.796] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:37 PM.797] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:37 PM.798] LSPD First Response: [TRACE] Adam Wayne (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:58:37 PM.825] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar3
[8/11/2022 2:58:39 PM.683] LSPD First Response: [TRACE] Released 0 entities from Marker #6 Content Manager
[8/11/2022 2:58:39 PM.683] LSPD First Response: [TRACE] Instance cleaned (Marker #6)
[8/11/2022 2:58:39 PM.690] LSPD First Response: [TRACE] Thread Marker #6 has been shut down
[8/11/2022 2:58:42 PM.355] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:58:42 PM.355] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:42 PM.408] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:58:42 PM.511] LSPD First Response: [TRACE] Created policeb at X:934.2985 Y:-1199.32 Z:50.3531
[8/11/2022 2:58:42 PM.537] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:42 PM.538] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:42 PM.539] LSPD First Response: [TRACE] Lenny OSullivan (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:58:42 PM.566] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:58:52 PM.377] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:58:52 PM.378] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:58:52 PM.433] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:58:52 PM.434] LSPD First Response: [TRACE] Created police at X:800.1415 Y:-1378.124 Z:27.27731
[8/11/2022 2:58:52 PM.459] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:58:52 PM.470] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:52 PM.479] LSPD First Response: [TRACE] Cuddy Haze (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:58:52 PM.505] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:58:52 PM.516] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:52 PM.526] LSPD First Response: [TRACE] James Murray (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:58:52 PM.556] LSPD First Response: [TRACE] AmbientSpawn - spawned: police
[8/11/2022 2:59:37 PM.525] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 2:59:37 PM.525] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:37 PM.574] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 2:59:37 PM.925] LSPD First Response: [TRACE] Created hwaycar41 at X:977.0375 Y:-1192.901 Z:53.68712
[8/11/2022 2:59:37 PM.954] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:37 PM.956] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:59:37 PM.957] LSPD First Response: [TRACE] Aleksandr Kozlov (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:59:37 PM.985] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar41
[8/11/2022 2:59:42 PM.534] LSPD First Response: [TRACE] Preloading hwaycar2
[8/11/2022 2:59:42 PM.534] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:42 PM.587] LSPD First Response: [TRACE] Preloading hwaycar2
[8/11/2022 2:59:42 PM.588] LSPD First Response: [TRACE] Created hwaycar2 at X:1066.907 Y:-1124.896 Z:45.15166
[8/11/2022 2:59:42 PM.618] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:42 PM.619] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:59:42 PM.621] LSPD First Response: [TRACE] Ben Karner (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:59:42 PM.644] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar2
[8/11/2022 2:59:49 PM.572] LSPD First Response: [TRACE] Released 0 entities from PoliceStation #2 Content Manager
[8/11/2022 2:59:49 PM.572] LSPD First Response: [TRACE] Instance cleaned (PoliceStation #2)
[8/11/2022 3:00:02 PM.605] LSPD First Response: [TRACE] Preloading POLICE2
[8/11/2022 3:00:02 PM.606] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:02 PM.669] LSPD First Response: [TRACE] Preloading POLICE2
[8/11/2022 3:00:03 PM.129] LSPD First Response: [TRACE] Created police2 at X:880.5336 Y:-782.1189 Z:42.51297
[8/11/2022 3:00:03 PM.156] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:03 PM.166] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 3:00:03 PM.177] LSPD First Response: [TRACE] Lance Crawford (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 3:00:03 PM.210] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:03 PM.219] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 3:00:03 PM.229] LSPD First Response: [TRACE] Charley Bone (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 3:00:03 PM.261] LSPD First Response: [TRACE] AmbientSpawn - spawned: police2
[8/11/2022 3:00:03 PM.776] LSPD First Response: [TRACE] Spawned with 1.367228
[8/11/2022 3:00:03 PM.776] LSPD First Response: [TRACE] Using 973.3051, -918.4873, 42.6468 Heading: 21.33737 and 970.3519, -911.4291, 42.62485 Heading: 21.33904 as base positions
[8/11/2022 3:00:03 PM.795] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 3:00:03 PM.795] LSPD First Response: [TRACE] Preloading 0xb472d2b5
[8/11/2022 3:00:03 PM.797] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 3:00:04 PM.193] LSPD First Response: [TRACE] Created police31 at X:973.3051 Y:-918.4873 Z:42.6468
[8/11/2022 3:00:04 PM.245] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:04 PM.258] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice (lspd)
[8/11/2022 3:00:04 PM.267] LSPD First Response: [TRACE] Bubba Maddox (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 3:00:04 PM.268] LSPD First Response: [TRACE] Assigned ped to ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:04 PM.269] LSPD First Response: [TRACE] Assigned ped to ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:04 PM.314] LSPD First Response: [TRACE] Thread CruiseAwareOfEntity #1 initialized
[8/11/2022 3:00:08 PM.286] LSPD First Response: OP_Immersive_Dispatch [Status] 10-41 (In Service)
[8/11/2022 3:00:08 PM.441] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 3:00:09 PM.552] LSPD First Response: [TRACE] It has been 292 seconds since the last callout
[8/11/2022 3:00:09 PM.561] LSPD First Response: Creating znfmAFTxdhLMCXqAKIuMtJEurAtE from znfmAFTxdhLMCXqAKIuMtJEurAtE, LSPD First Response, Version=0.4.8242.35949, Culture=neutral, PublicKeyToken=null
[8/11/2022 3:00:09 PM.585] LSPD First Response: [TRACE] Preloading BANSHEE
[8/11/2022 3:00:09 PM.587] LSPD First Response: [TRACE] Callout created: Pursuit #1
[8/11/2022 3:00:09 PM.753] LSPD First Response: GetAudioFileForAction: No file found for: 
[8/11/2022 3:00:09 PM.753] LSPD First Response: GetAudioFileForAction: No file found for: 
[8/11/2022 3:00:09 PM.753] LSPD First Response: PlayAction: Failed to find 
[8/11/2022 3:00:11 PM.028] LSPD First Response: [TRACE] Assigned ped to CruiseAwareOfEntity #1 (Ambient)
[8/11/2022 3:00:11 PM.480] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 3:00:11 PM.480] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 3:00:13 PM.961] LSPD First Response: [TRACE] Entering at Driver
[8/11/2022 3:00:16 PM.627] LSPD First Response: [TRACE] Cleaning UI
[8/11/2022 3:00:16 PM.649] LSPD First Response: [TRACE] Created new chase
[8/11/2022 3:00:16 PM.862] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 3:00:16 PM.896] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 3:00:16 PM.902] LSPD First Response: [TRACE] Pursuit menu was reset.
[8/11/2022 3:00:16 PM.936] LSPD First Response: [TRACE] Starting chase
[8/11/2022 3:00:16 PM.981] LSPD First Response: [TRACE] Player now monitoring Tim Hook
[8/11/2022 3:00:17 PM.056] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:17 PM.156] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 3:00:17 PM.157] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 3:00:17 PM.226] LSPD First Response: [TRACE] Player now monitoring Vince Kaufman
[8/11/2022 3:00:18 PM.538] LSPD First Response: [TRACE] User accepted callout
[8/11/2022 3:00:20 PM.458] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:21 PM.120] LSPD First Response: [TRACE] Aborting EnterVehicleSmart: Ped in seat
[8/11/2022 3:00:21 PM.125] LSPD First Response: [TRACE] Scenario ScenarioFakeTrafficStop #1 asked to abort: Scenario has ended
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Asked thread CruiseAwareOfEntity #1 to abort: No reason specified
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Removing ped from CruiseAwareOfEntity #1 (Ambient)
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Released 0 entities from CruiseAwareOfEntity #1 Content Manager
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Instance cleaned (CruiseAwareOfEntity #1)
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Removing ped from ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Removing ped from ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Released 0 entities from ScenarioFakeTrafficStop #1 Content Manager
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Instance cleaned (ScenarioFakeTrafficStop #1)
[8/11/2022 3:00:21 PM.133] LSPD First Response: [TRACE] Scenario ScenarioFakeTrafficStop #1 aborted
[8/11/2022 3:00:21 PM.141] LSPD First Response: [TRACE] Thread CruiseAwareOfEntity #1 has been shut down
[8/11/2022 3:00:21 PM.167] LSPD First Response: [TRACE] Ped Bubba Maddox has become idle again
[8/11/2022 3:00:21 PM.167] LSPD First Response: [TRACE] Ped Ethan Ritchie has become idle again
[8/11/2022 3:00:21 PM.168] LSPD First Response: [TRACE] Ped Alex Marton has become idle again
[8/11/2022 3:00:27 PM.922] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:29 PM.896] LSPD First Response: [TRACE] Alex Rodriguez (S_M_M_AUTOSHOP_01) was damaged.
[8/11/2022 3:00:32 PM.828] LSPD First Response: OP_Immersive_Dispatch [Status] Standby For Pursuit Authority
[8/11/2022 3:00:32 PM.858] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 3:00:32 PM.861] LSPD First Response: GetAudioFileForAction: No file found for: STREET_DEL_PERRO_FWY
[8/11/2022 3:00:35 PM.273] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:35 PM.857] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 3:00:35 PM.858] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 3:00:42 PM.710] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:47 PM.033] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 3:00:47 PM.033] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 3:00:47 PM.347] LSPD First Response: OP_Immersive_Dispatch [Status] 10-80 (Pursuit) Authorized
[8/11/2022 3:00:47 PM.348] LSPD First Response: OP_Immersive_Dispatch [PursuitTimer] Check Timer Started
[8/11/2022 3:00:47 PM.349] LSPD First Response: OP_Immersive_Dispatch [Signal 100] ~w~Activated: ~g~True
[8/11/2022 3:00:47 PM.357] LSPD First Response: OP_Immersive_Dispatch [Backup] Pursuit
[8/11/2022 3:00:47 PM.369] LSPD First Response: OP_Immersive_Dispatch [Air Request] Is Air Support Required?
[8/11/2022 3:00:48 PM.298] LSPD First Response: OP_Immersive_Dispatch [Backup] Air Unit (Pursuit)
[8/11/2022 3:00:48 PM.303] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 3:00:48 PM.303] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 3:00:48 PM.309] LSPD First Response: [TRACE] Using new pursuit spawn
[8/11/2022 3:00:48 PM.349] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 3:00:48 PM.414] LSPD First Response: UB: REQUESTED TYPE: LocalPatrol
[8/11/2022 3:00:48 PM.418] LSPD First Response: UB: DETECTED ZONE: VINE
[8/11/2022 3:00:48 PM.418] LSPD First Response: UB: DETECTED COUNTY: LosSantosCity
[8/11/2022 3:00:49 PM.084] LSPD First Response: [TRACE] Recently used nodes: 1
[8/11/2022 3:00:49 PM.096] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 3:00:49 PM.146] LSPD First Response: [TRACE] Created polmav at X:-383.75 Y:-781.5 Z:197.1563
[8/11/2022 3:00:49 PM.146] LSPD First Response: [TRACE] Forced Livery: 0
[8/11/2022 3:00:49 PM.225] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 3:00:49 PM.226] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 3:00:49 PM.228] LSPD First Response: [TRACE] Anthony Cacciatore (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 3:00:49 PM.231] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 3:00:49 PM.231] LSPD First Response: [TRACE] Report Voice: S_M_Y_HWAYCOP_01_WHITE_FULL_01
[8/11/2022 3:00:49 PM.232] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 3:00:49 PM.233] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 3:00:49 PM.234] LSPD First Response: [TRACE] Luiz Rodriguez (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 3:00:49 PM.241] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 3:00:49 PM.279] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.279] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 3:00:49 PM.322] LSPD First Response: [TRACE] Cop Luiz Rodriguez reassigned to Tim Hook
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 3:00:49 PM.326] LSPD First Response: [TRACE] Cop Anthony Cacciatore reassigned to Tim Hook
[8/11/2022 3:00:49 PM.326] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 3:00:49 PM.326] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 3:00:49 PM.330] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 3:00:49 PM.332] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 3:00:49 PM.344] LSPD First Response: [HeliAssist] Create air unit from existing police helicopter
[8/11/2022 3:00:49 PM.457] LSPD First Response: 
[8/11/2022 3:00:49 PM.457] LSPD First Response: ==============================
[8/11/2022 3:00:49 PM.457] LSPD First Response: UNHANDLED EXCEPTION DURING GAME FIBER TICK
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Origin: Game fiber "HeliAssist".
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Exception type: System.IO.FileNotFoundException
[8/11/2022 3:00:49 PM.457] LSPD First Response: Exception message: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Inner exceptions:
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Stack trace:
[8/11/2022 3:00:49 PM.457] LSPD First Response: at HeliUnit.IsSearchlightInitialized()
[8/11/2022 3:00:49 PM.457] at HeliAssistance.Main.ProcessSearchlightStuff() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 768
[8/11/2022 3:00:49 PM.457] at HeliAssistance.Main.OnTick() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 316
[8/11/2022 3:00:49 PM.457] at Rage.GameFiber.Main()
[8/11/2022 3:00:49 PM.457] LSPD First Response: ==============================
[8/11/2022 3:00:49 PM.457] LSPD First Response: 
[8/11/2022 3:00:49 PM.465] LSPD First Response: [FATAL] Forced termination
[8/11/2022 3:00:49 PM.466] LSPD First Response: [TRACE] Released 1 entities from DefaultContentManager
[8/11/2022 3:00:49 PM.466] LSPD First Response: [WARN] Chase still active, terminating manually
[8/11/2022 3:00:49 PM.468] LSPD First Response: [TRACE] Ending chase
[8/11/2022 3:00:49 PM.469] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Freeing cop: Luiz Rodriguez
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Cop freed
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Freeing cop: Anthony Cacciatore
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Cop freed
[8/11/2022 3:00:49 PM.476] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 3:00:49 PM.476] LSPD First Response: [TRACE] Aborting EvadeCopsInVehicle: Aborting main task
[8/11/2022 3:00:49 PM.481] LSPD First Response: [TRACE] TaskEvadeCopsAdvInVehicle::OnAbort
[8/11/2022 3:00:49 PM.482] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 3:00:52 PM.187] LSPD First Response: [INFO] LSPDFR has shut down
[8/11/2022 3:00:53 PM.599] LSPD First Response: UB All Police Partners are removed
[8/11/2022 3:00:53 PM.835] LSPD First Response: UB Pursuit backup is failed to spawn
[8/11/2022 3:00:53 PM.962] LSPD First Response: Exception in StaticFinalizer callback (System.IO.FileNotFoundException: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.)
 

Here is the log from the first lspdfr gameplay today. Like i already said: i have spotlight 1.4 and i also have the latest ragenative.ui installed. I only get a crash when i request a helicopter when starting a pursuit with immersive dispatch but not when i request a heli with ultimate backup. That is strange to me.

OJdoesIt

Members Author

1 hour ago, BC9205 said:
Spoiler

[11.08.2022 14:55:13.511] LSPD First Response: CompuLite: Citations.xml has been successfully loaded
[11.08.2022 14:55:13.566] LSPD First Response: CompuLite: Charges.xml has been successfully loaded
[8/11/2022 2:55:14 PM.100] LSPD First Response: [TRACE] Thread Marker #6 initialized
[8/11/2022 2:55:14 PM.233] LSPD First Response: Custom Pullover.Mainloop started
[8/11/2022 2:55:14 PM.233] LSPD First Response: Loading Custom Pullover settings...
[8/11/2022 2:55:15 PM.155] LSPD First Response: [TRACE] Player switch done
[8/11/2022 2:55:18 PM.028] LSPD First Response:  [ParksTools] using cached token without checking for new token
[8/11/2022 2:55:18 PM.056] LSPD First Response: [Better EMS]: Unable to parse bone: Unknown
[8/11/2022 2:55:18 PM.064] LSPD First Response: [Better EMS]: Unable to parse bone: 
[8/11/2022 2:55:18 PM.066] LSPD First Response: [Better EMS]: Finished loading Better EMS
[8/11/2022 2:55:18 PM.109] LSPD First Response: [Better EMS]: Launching EMS response
[8/11/2022 2:55:18 PM.135] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:55:18 PM.135] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:18 PM.162] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:55:18 PM.163] LSPD First Response: [TRACE] Created policeb at X:805.8427 Y:-1183.173 Z:46.07821
[8/11/2022 2:55:18 PM.183] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:18 PM.184] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:18 PM.224] LSPD First Response: [TRACE] John Phillips (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:55:18 PM.253] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:55:23 PM.083] LSPD First Response: [TRACE] Preloading hwaycar
[8/11/2022 2:55:23 PM.083] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:23 PM.124] LSPD First Response: [TRACE] Preloading hwaycar
[8/11/2022 2:55:23 PM.424] LSPD First Response: [TRACE] Created hwaycar at X:896.92 Y:-1168.356 Z:42.71584
[8/11/2022 2:55:23 PM.479] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:23 PM.480] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:23 PM.482] LSPD First Response: [TRACE] Andrew MacDougle (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:55:23 PM.513] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar
[8/11/2022 2:55:31 PM.150] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:55:31 PM.152] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:55:31 PM.152] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:55:38 PM.131] LSPD First Response: [TRACE] Preloading POLICE3
[8/11/2022 2:55:38 PM.131] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:55:38 PM.182] LSPD First Response: [TRACE] Preloading POLICE3
[8/11/2022 2:55:38 PM.560] LSPD First Response: [TRACE] Created police3 at X:824.6554 Y:-1535.615 Z:29.82216
[8/11/2022 2:55:38 PM.672] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:55:38 PM.682] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:38 PM.711] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.712] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.721] LSPD First Response: [TRACE] Julia Rodrigues (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:55:38 PM.849] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:55:38 PM.858] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:38 PM.859] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.859] LSPD First Response: [WARN] GetOutfitVariation: Failed to find outfit lspd_cop
[8/11/2022 2:55:38 PM.866] LSPD First Response: [TRACE] Killian Francisco (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:55:38 PM.887] LSPD First Response: [TRACE] AmbientSpawn - spawned: police3
[8/11/2022 2:55:42 PM.039] LSPD First Response: OP_Immersive_Dispatch [OfficerCheckIn] Check Timer Ended
[8/11/2022 2:55:42 PM.040] LSPD First Response: OP_Immersive_Dispatch [Status] 10-7 (Out of Service)
[8/11/2022 2:55:42 PM.198] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:55:45 PM.205] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 2:55:45 PM.206] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:55:48 PM.165] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:55:48 PM.165] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:48 PM.222] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:55:48 PM.581] LSPD First Response: [TRACE] Created hwaycar3 at X:852.1702 Y:-1169.467 Z:45.14573
[8/11/2022 2:55:48 PM.601] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:55:48 PM.602] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:55:48 PM.604] LSPD First Response: [TRACE] Furio Tarantino (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:55:48 PM.624] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar3
[8/11/2022 2:55:55 PM.681] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:55:55 PM.681] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:55:55 PM.682] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:55:55 PM.756] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 2:55:55 PM.756] LSPD First Response: [TRACE] Kevin Rojas (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:56:02 PM.819] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:56:02 PM.819] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:56:02 PM.819] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:56:03 PM.050] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:56:03 PM.050] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:56:03 PM.050] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:56:03 PM.458] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:56:03 PM.458] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:56:03 PM.458] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:56:10 PM.997] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:10 PM.997] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:11 PM.053] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:11 PM.420] LSPD First Response: [TRACE] Created police at X:722.957 Y:-1432.908 Z:32.17033
[8/11/2022 2:56:11 PM.443] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:11 PM.452] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:11 PM.464] LSPD First Response: [TRACE] Car Shooter (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:11 PM.489] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:11 PM.499] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:11 PM.509] LSPD First Response: [TRACE] Mamada Diallo (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:11 PM.534] LSPD First Response: [TRACE] AmbientSpawn - spawned: police
[8/11/2022 2:56:31 PM.023] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:31 PM.023] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:31 PM.064] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:31 PM.064] LSPD First Response: [TRACE] Created policeb at X:907.5818 Y:-1184.137 Z:47.90331
[8/11/2022 2:56:31 PM.084] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:31 PM.085] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:31 PM.086] LSPD First Response: [TRACE] Jack McThomasen (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:56:31 PM.108] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:56:31 PM.282] LSPD First Response: [TRACE] Thread VehicleSelector #1 initialized
[8/11/2022 2:56:33 PM.209] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.210] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.210] LSPD First Response: [TRACE] ExpandableFileParser::Parse: Reading content from file:lspdfr/data/duty_selection.xml
[8/11/2022 2:56:33 PM.212] LSPD First Response: [TRACE] Started new menu thread MenuBase #10
[8/11/2022 2:56:33 PM.239] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.239] LSPD First Response: [WARN] Path without extension: lspdfr/data/custom
[8/11/2022 2:56:33 PM.241] LSPD First Response: [TRACE] ExpandableFileParser::Parse: Reading content from file:lspdfr/data/duty_selection.xml
[8/11/2022 2:56:33 PM.307] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.307] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.307] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:33 PM.322] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.322] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.322] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:33 PM.325] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.326] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.326] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:33 PM.326] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:33 PM.327] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:33 PM.327] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:34 PM.332] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 2:56:34 PM.334] LSPD First Response: [TRACE] Jason Williams (S_M_Y_COP_01) was set as a cop
[8/11/2022 2:56:34 PM.334] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 2:56:34 PM.335] LSPD First Response: [TRACE] Dave Summers (S_M_Y_COP_01) was set as a cop
[8/11/2022 2:56:36 PM.594] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:36 PM.594] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:36 PM.638] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:56:36 PM.639] LSPD First Response: [TRACE] Created policeb at X:818.0809 Y:-1243.741 Z:27.41123
[8/11/2022 2:56:36 PM.660] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:56:36 PM.661] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:36 PM.662] LSPD First Response: [TRACE] Frank Mudbridge (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:56:36 PM.682] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:56:37 PM.630] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:56:37 PM.631] LSPD First Response: [TRACE] Created police31 at X:446.3985 Y:-1026.087 Z:28.92508
[8/11/2022 2:56:37 PM.631] LSPD First Response: [TRACE] AmbientStationSpawn: Added police31 at Downtown Police Station
[8/11/2022 2:56:37 PM.994] LSPD First Response: [TRACE] Preloading POLICE2
[8/11/2022 2:56:37 PM.994] LSPD First Response: [TRACE] Created police2 at X:427.5909 Y:-1027.707 Z:29.22805
[8/11/2022 2:56:37 PM.995] LSPD First Response: [TRACE] AmbientStationSpawn: Added POLICE2 at Downtown Police Station
[8/11/2022 2:56:37 PM.995] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:56:37 PM.995] LSPD First Response: [TRACE] Created police31 at X:407.7591 Y:-1005.385 Z:28.26613
[8/11/2022 2:56:37 PM.996] LSPD First Response: [TRACE] AmbientStationSpawn: Added police31 at Downtown Police Station
[8/11/2022 2:56:37 PM.999] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:38 PM.008] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.019] LSPD First Response: [TRACE] Elizabeth Murray (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.021] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.025] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:38 PM.033] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.043] LSPD First Response: [TRACE] Amy Ryan (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.044] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.044] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:38 PM.055] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.066] LSPD First Response: [TRACE] Derek Manson (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.066] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.066] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:38 PM.075] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.083] LSPD First Response: [TRACE] Earl Basco (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.083] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:38 PM.084] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:56:38 PM.093] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: Custom ()
[8/11/2022 2:56:38 PM.101] LSPD First Response: [TRACE] Jay Richman (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:56:38 PM.101] LSPD First Response: [TRACE] Assigned ped to PoliceStation #5 (Ambient)
[8/11/2022 2:56:44 PM.447] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:44 PM.447] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:44 PM.447] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:44 PM.448] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:44 PM.448] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:44 PM.448] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:46 PM.326] LSPD First Response: [TRACE] hwaycar2 livery 0 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 1 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 2 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 3 name: NULL ()
[8/11/2022 2:56:46 PM.327] LSPD First Response: [TRACE] hwaycar2 livery 4 name: NULL ()
[8/11/2022 2:56:47 PM.505] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:47 PM.506] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:47 PM.506] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.155] LSPD First Response: [TRACE] hwaycar2 livery 0 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 1 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 3 name: NULL ()
[8/11/2022 2:56:48 PM.156] LSPD First Response: [TRACE] hwaycar2 livery 4 name: NULL ()
[8/11/2022 2:56:48 PM.339] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:48 PM.339] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:48 PM.340] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.844] LSPD First Response: [TRACE] hwaycar2 livery 0 name: NULL ()
[8/11/2022 2:56:48 PM.844] LSPD First Response: [TRACE] hwaycar2 livery 1 name: NULL ()
[8/11/2022 2:56:48 PM.845] LSPD First Response: [TRACE] hwaycar2 livery 2 name: NULL ()
[8/11/2022 2:56:48 PM.845] LSPD First Response: [TRACE] hwaycar2 livery 3 name: NULL ()
[8/11/2022 2:56:48 PM.845] LSPD First Response: [TRACE] hwaycar2 livery 4 name: NULL ()
[8/11/2022 2:56:49 PM.168] LSPD First Response: [TRACE] hwaycar livery 0 name: NULL ()
[8/11/2022 2:56:49 PM.168] LSPD First Response: [TRACE] hwaycar livery 1 name: NULL ()
[8/11/2022 2:56:49 PM.168] LSPD First Response: [TRACE] hwaycar livery 2 name: NULL ()
[8/11/2022 2:56:54 PM.718] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.720] LSPD First Response: [TRACE] Removing ped from PoliceStation #5 (Ambient)
[8/11/2022 2:56:54 PM.723] LSPD First Response: [TRACE] Released 0 entities from PoliceStation #5 Content Manager
[8/11/2022 2:56:54 PM.723] LSPD First Response: [TRACE] Instance cleaned (PoliceStation #5)
[8/11/2022 2:56:54 PM.753] LSPD First Response: [TRACE] Ped Amy Ryan has become idle again
[8/11/2022 2:56:54 PM.753] LSPD First Response: [TRACE] Ped Elizabeth Murray has become idle again
[8/11/2022 2:56:54 PM.754] LSPD First Response: [TRACE] Ped Jay Richman has become idle again
[8/11/2022 2:56:54 PM.754] LSPD First Response: [TRACE] Ped Derek Manson has become idle again
[8/11/2022 2:56:54 PM.754] LSPD First Response: [TRACE] Ped Earl Basco has become idle again
[8/11/2022 2:56:56 PM.253] LSPD First Response: [TRACE] Released 0 entities from MenuBase #10 Content Manager
[8/11/2022 2:56:56 PM.253] LSPD First Response: [TRACE] Instance cleaned (MenuBase #10)
[8/11/2022 2:56:57 PM.059] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:57 PM.059] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:57 PM.107] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:56:57 PM.108] LSPD First Response: [TRACE] Created police at X:885.5715 Y:-1445.578 Z:30.43327
[8/11/2022 2:56:57 PM.129] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:57 PM.138] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:57 PM.147] LSPD First Response: [TRACE] Kate Millerton (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:57 PM.168] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:56:57 PM.179] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:56:57 PM.189] LSPD First Response: [TRACE] Susan White (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:56:57 PM.213] LSPD First Response: [TRACE] AmbientSpawn - spawned: police
[8/11/2022 2:56:57 PM.245] LSPD First Response: [TRACE] Released 0 entities from VehicleSelector #1 Content Manager
[8/11/2022 2:56:57 PM.245] LSPD First Response: [TRACE] Instance cleaned (VehicleSelector #1)
[8/11/2022 2:56:57 PM.270] LSPD First Response: [TRACE] Thread VehicleSelector #1 has been shut down
[8/11/2022 2:57:22 PM.044] LSPD First Response: [TRACE] Updating lights options.
[8/11/2022 2:57:22 PM.045] LSPD First Response: [TRACE] Selected first option: On
[8/11/2022 2:57:22 PM.054] LSPD First Response: [TRACE] Max radio: 25
[8/11/2022 2:57:22 PM.060] LSPD First Response: [TRACE] Added radio: 0
[8/11/2022 2:57:22 PM.060] LSPD First Response: [TRACE] Added radio: 1
[8/11/2022 2:57:22 PM.060] LSPD First Response: [TRACE] Added radio: 2
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 3
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 4
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 5
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 6
[8/11/2022 2:57:22 PM.061] LSPD First Response: [TRACE] Added radio: 7
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 8
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 9
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 10
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 11
[8/11/2022 2:57:22 PM.062] LSPD First Response: [TRACE] Added radio: 12
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 13
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 14
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 15
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 16
[8/11/2022 2:57:22 PM.063] LSPD First Response: [TRACE] Added radio: 17
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 18
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 19
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 20
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 21
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 22
[8/11/2022 2:57:22 PM.064] LSPD First Response: [TRACE] Added radio: 23
[8/11/2022 2:57:22 PM.065] LSPD First Response: [TRACE] Added radio: 24
[8/11/2022 2:57:22 PM.148] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:57:22 PM.148] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:57:22 PM.206] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:57:22 PM.207] LSPD First Response: [TRACE] Created police31 at X:770.0642 Y:-1439.747 Z:28.09795
[8/11/2022 2:57:22 PM.237] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:57:22 PM.245] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:57:22 PM.254] LSPD First Response: [TRACE] Andrew Burke (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:57:22 PM.278] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:57:22 PM.289] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:57:22 PM.300] LSPD First Response: [TRACE] Alex Mason (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:57:22 PM.333] LSPD First Response: [TRACE] AmbientSpawn - spawned: police31
[8/11/2022 2:57:23 PM.292] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:57:23 PM.292] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:57:23 PM.292] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:57:23 PM.461] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:57:23 PM.461] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:57:23 PM.461] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:57:24 PM.063] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:57:24 PM.063] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:57:24 PM.063] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:12 PM.286] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:58:12 PM.287] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:58:12 PM.337] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 2:58:12 PM.338] LSPD First Response: [TRACE] Created police31 at X:702.9894 Y:-1433.037 Z:32.29707
[8/11/2022 2:58:12 PM.361] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:58:12 PM.371] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:12 PM.380] LSPD First Response: [TRACE] Amy Taylor (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:58:12 PM.405] LSPD First Response: [TRACE] Preloading MP_F_FREEMODE_01
[8/11/2022 2:58:12 PM.414] LSPD First Response: [TRACE] New ped created mp_f_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:12 PM.433] LSPD First Response: [TRACE] Peyton Young (MP_F_FREEMODE_01) was set as a cop
[8/11/2022 2:58:12 PM.462] LSPD First Response: [TRACE] AmbientSpawn - spawned: police31
[8/11/2022 2:58:16 PM.061] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:16 PM.061] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:16 PM.061] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:16 PM.633] LSPD First Response: Opening or closing menu
[8/11/2022 2:58:20 PM.639] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:20 PM.639] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:20 PM.639] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:20 PM.788] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:20 PM.788] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:20 PM.788] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:22 PM.290] LSPD First Response: Opening or closing menu
[8/11/2022 2:58:30 PM.187] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 2:58:30 PM.188] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 2:58:30 PM.188] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 2:58:30 PM.844] LSPD First Response: [MEGAPHONE UI] Operation is not valid because the specified  Rage.TaskInvoker is invalid.
[8/11/2022 2:58:37 PM.326] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:58:37 PM.326] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:37 PM.398] LSPD First Response: [TRACE] Preloading hwaycar3
[8/11/2022 2:58:37 PM.768] LSPD First Response: [TRACE] Created hwaycar3 at X:655.5812 Y:-1190.175 Z:42.68215
[8/11/2022 2:58:37 PM.796] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:37 PM.797] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:37 PM.798] LSPD First Response: [TRACE] Adam Wayne (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:58:37 PM.825] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar3
[8/11/2022 2:58:39 PM.683] LSPD First Response: [TRACE] Released 0 entities from Marker #6 Content Manager
[8/11/2022 2:58:39 PM.683] LSPD First Response: [TRACE] Instance cleaned (Marker #6)
[8/11/2022 2:58:39 PM.690] LSPD First Response: [TRACE] Thread Marker #6 has been shut down
[8/11/2022 2:58:42 PM.355] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:58:42 PM.355] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:42 PM.408] LSPD First Response: [TRACE] Preloading POLICEB
[8/11/2022 2:58:42 PM.511] LSPD First Response: [TRACE] Created policeb at X:934.2985 Y:-1199.32 Z:50.3531
[8/11/2022 2:58:42 PM.537] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:58:42 PM.538] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:42 PM.539] LSPD First Response: [TRACE] Lenny OSullivan (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:58:42 PM.566] LSPD First Response: [TRACE] AmbientSpawn - spawned: policeb
[8/11/2022 2:58:52 PM.377] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:58:52 PM.378] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:58:52 PM.433] LSPD First Response: [TRACE] Preloading POLICE
[8/11/2022 2:58:52 PM.434] LSPD First Response: [TRACE] Created police at X:800.1415 Y:-1378.124 Z:27.27731
[8/11/2022 2:58:52 PM.459] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:58:52 PM.470] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:52 PM.479] LSPD First Response: [TRACE] Cuddy Haze (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:58:52 PM.505] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 2:58:52 PM.516] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:58:52 PM.526] LSPD First Response: [TRACE] James Murray (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 2:58:52 PM.556] LSPD First Response: [TRACE] AmbientSpawn - spawned: police
[8/11/2022 2:59:37 PM.525] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 2:59:37 PM.525] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:37 PM.574] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 2:59:37 PM.925] LSPD First Response: [TRACE] Created hwaycar41 at X:977.0375 Y:-1192.901 Z:53.68712
[8/11/2022 2:59:37 PM.954] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:37 PM.956] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:59:37 PM.957] LSPD First Response: [TRACE] Aleksandr Kozlov (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:59:37 PM.985] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar41
[8/11/2022 2:59:42 PM.534] LSPD First Response: [TRACE] Preloading hwaycar2
[8/11/2022 2:59:42 PM.534] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:42 PM.587] LSPD First Response: [TRACE] Preloading hwaycar2
[8/11/2022 2:59:42 PM.588] LSPD First Response: [TRACE] Created hwaycar2 at X:1066.907 Y:-1124.896 Z:45.15166
[8/11/2022 2:59:42 PM.618] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 2:59:42 PM.619] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 2:59:42 PM.621] LSPD First Response: [TRACE] Ben Karner (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 2:59:42 PM.644] LSPD First Response: [TRACE] AmbientSpawn - spawned: hwaycar2
[8/11/2022 2:59:49 PM.572] LSPD First Response: [TRACE] Released 0 entities from PoliceStation #2 Content Manager
[8/11/2022 2:59:49 PM.572] LSPD First Response: [TRACE] Instance cleaned (PoliceStation #2)
[8/11/2022 3:00:02 PM.605] LSPD First Response: [TRACE] Preloading POLICE2
[8/11/2022 3:00:02 PM.606] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:02 PM.669] LSPD First Response: [TRACE] Preloading POLICE2
[8/11/2022 3:00:03 PM.129] LSPD First Response: [TRACE] Created police2 at X:880.5336 Y:-782.1189 Z:42.51297
[8/11/2022 3:00:03 PM.156] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:03 PM.166] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 3:00:03 PM.177] LSPD First Response: [TRACE] Lance Crawford (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 3:00:03 PM.210] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:03 PM.219] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 3:00:03 PM.229] LSPD First Response: [TRACE] Charley Bone (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 3:00:03 PM.261] LSPD First Response: [TRACE] AmbientSpawn - spawned: police2
[8/11/2022 3:00:03 PM.776] LSPD First Response: [TRACE] Spawned with 1.367228
[8/11/2022 3:00:03 PM.776] LSPD First Response: [TRACE] Using 973.3051, -918.4873, 42.6468 Heading: 21.33737 and 970.3519, -911.4291, 42.62485 Heading: 21.33904 as base positions
[8/11/2022 3:00:03 PM.795] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 3:00:03 PM.795] LSPD First Response: [TRACE] Preloading 0xb472d2b5
[8/11/2022 3:00:03 PM.797] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 3:00:04 PM.193] LSPD First Response: [TRACE] Created police31 at X:973.3051 Y:-918.4873 Z:42.6468
[8/11/2022 3:00:04 PM.245] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 3:00:04 PM.258] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice (lspd)
[8/11/2022 3:00:04 PM.267] LSPD First Response: [TRACE] Bubba Maddox (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 3:00:04 PM.268] LSPD First Response: [TRACE] Assigned ped to ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:04 PM.269] LSPD First Response: [TRACE] Assigned ped to ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:04 PM.314] LSPD First Response: [TRACE] Thread CruiseAwareOfEntity #1 initialized
[8/11/2022 3:00:08 PM.286] LSPD First Response: OP_Immersive_Dispatch [Status] 10-41 (In Service)
[8/11/2022 3:00:08 PM.441] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 3:00:09 PM.552] LSPD First Response: [TRACE] It has been 292 seconds since the last callout
[8/11/2022 3:00:09 PM.561] LSPD First Response: Creating znfmAFTxdhLMCXqAKIuMtJEurAtE from znfmAFTxdhLMCXqAKIuMtJEurAtE, LSPD First Response, Version=0.4.8242.35949, Culture=neutral, PublicKeyToken=null
[8/11/2022 3:00:09 PM.585] LSPD First Response: [TRACE] Preloading BANSHEE
[8/11/2022 3:00:09 PM.587] LSPD First Response: [TRACE] Callout created: Pursuit #1
[8/11/2022 3:00:09 PM.753] LSPD First Response: GetAudioFileForAction: No file found for: 
[8/11/2022 3:00:09 PM.753] LSPD First Response: GetAudioFileForAction: No file found for: 
[8/11/2022 3:00:09 PM.753] LSPD First Response: PlayAction: Failed to find 
[8/11/2022 3:00:11 PM.028] LSPD First Response: [TRACE] Assigned ped to CruiseAwareOfEntity #1 (Ambient)
[8/11/2022 3:00:11 PM.480] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 3:00:11 PM.480] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 3:00:13 PM.961] LSPD First Response: [TRACE] Entering at Driver
[8/11/2022 3:00:16 PM.627] LSPD First Response: [TRACE] Cleaning UI
[8/11/2022 3:00:16 PM.649] LSPD First Response: [TRACE] Created new chase
[8/11/2022 3:00:16 PM.862] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 3:00:16 PM.896] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 3:00:16 PM.902] LSPD First Response: [TRACE] Pursuit menu was reset.
[8/11/2022 3:00:16 PM.936] LSPD First Response: [TRACE] Starting chase
[8/11/2022 3:00:16 PM.981] LSPD First Response: [TRACE] Player now monitoring Tim Hook
[8/11/2022 3:00:17 PM.056] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:17 PM.156] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 3:00:17 PM.157] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 3:00:17 PM.226] LSPD First Response: [TRACE] Player now monitoring Vince Kaufman
[8/11/2022 3:00:18 PM.538] LSPD First Response: [TRACE] User accepted callout
[8/11/2022 3:00:20 PM.458] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:21 PM.120] LSPD First Response: [TRACE] Aborting EnterVehicleSmart: Ped in seat
[8/11/2022 3:00:21 PM.125] LSPD First Response: [TRACE] Scenario ScenarioFakeTrafficStop #1 asked to abort: Scenario has ended
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Asked thread CruiseAwareOfEntity #1 to abort: No reason specified
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Removing ped from CruiseAwareOfEntity #1 (Ambient)
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Released 0 entities from CruiseAwareOfEntity #1 Content Manager
[8/11/2022 3:00:21 PM.128] LSPD First Response: [TRACE] Instance cleaned (CruiseAwareOfEntity #1)
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Removing ped from ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Removing ped from ScenarioFakeTrafficStop #1 (Ambient)
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Released 0 entities from ScenarioFakeTrafficStop #1 Content Manager
[8/11/2022 3:00:21 PM.130] LSPD First Response: [TRACE] Instance cleaned (ScenarioFakeTrafficStop #1)
[8/11/2022 3:00:21 PM.133] LSPD First Response: [TRACE] Scenario ScenarioFakeTrafficStop #1 aborted
[8/11/2022 3:00:21 PM.141] LSPD First Response: [TRACE] Thread CruiseAwareOfEntity #1 has been shut down
[8/11/2022 3:00:21 PM.167] LSPD First Response: [TRACE] Ped Bubba Maddox has become idle again
[8/11/2022 3:00:21 PM.167] LSPD First Response: [TRACE] Ped Ethan Ritchie has become idle again
[8/11/2022 3:00:21 PM.168] LSPD First Response: [TRACE] Ped Alex Marton has become idle again
[8/11/2022 3:00:27 PM.922] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:29 PM.896] LSPD First Response: [TRACE] Alex Rodriguez (S_M_M_AUTOSHOP_01) was damaged.
[8/11/2022 3:00:32 PM.828] LSPD First Response: OP_Immersive_Dispatch [Status] Standby For Pursuit Authority
[8/11/2022 3:00:32 PM.858] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 3:00:32 PM.861] LSPD First Response: GetAudioFileForAction: No file found for: STREET_DEL_PERRO_FWY
[8/11/2022 3:00:35 PM.273] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:35 PM.857] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 3:00:35 PM.858] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 3:00:42 PM.710] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 3:00:47 PM.033] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 3:00:47 PM.033] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 3:00:47 PM.347] LSPD First Response: OP_Immersive_Dispatch [Status] 10-80 (Pursuit) Authorized
[8/11/2022 3:00:47 PM.348] LSPD First Response: OP_Immersive_Dispatch [PursuitTimer] Check Timer Started
[8/11/2022 3:00:47 PM.349] LSPD First Response: OP_Immersive_Dispatch [Signal 100] ~w~Activated: ~g~True
[8/11/2022 3:00:47 PM.357] LSPD First Response: OP_Immersive_Dispatch [Backup] Pursuit
[8/11/2022 3:00:47 PM.369] LSPD First Response: OP_Immersive_Dispatch [Air Request] Is Air Support Required?
[8/11/2022 3:00:48 PM.298] LSPD First Response: OP_Immersive_Dispatch [Backup] Air Unit (Pursuit)
[8/11/2022 3:00:48 PM.303] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 3:00:48 PM.303] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 3:00:48 PM.309] LSPD First Response: [TRACE] Using new pursuit spawn
[8/11/2022 3:00:48 PM.349] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 3:00:48 PM.414] LSPD First Response: UB: REQUESTED TYPE: LocalPatrol
[8/11/2022 3:00:48 PM.418] LSPD First Response: UB: DETECTED ZONE: VINE
[8/11/2022 3:00:48 PM.418] LSPD First Response: UB: DETECTED COUNTY: LosSantosCity
[8/11/2022 3:00:49 PM.084] LSPD First Response: [TRACE] Recently used nodes: 1
[8/11/2022 3:00:49 PM.096] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 3:00:49 PM.146] LSPD First Response: [TRACE] Created polmav at X:-383.75 Y:-781.5 Z:197.1563
[8/11/2022 3:00:49 PM.146] LSPD First Response: [TRACE] Forced Livery: 0
[8/11/2022 3:00:49 PM.225] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 3:00:49 PM.226] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 3:00:49 PM.228] LSPD First Response: [TRACE] Anthony Cacciatore (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 3:00:49 PM.231] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 3:00:49 PM.231] LSPD First Response: [TRACE] Report Voice: S_M_Y_HWAYCOP_01_WHITE_FULL_01
[8/11/2022 3:00:49 PM.232] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 3:00:49 PM.233] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 3:00:49 PM.234] LSPD First Response: [TRACE] Luiz Rodriguez (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 3:00:49 PM.241] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 3:00:49 PM.279] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.279] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 3:00:49 PM.322] LSPD First Response: [TRACE] Cop Luiz Rodriguez reassigned to Tim Hook
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.325] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 3:00:49 PM.326] LSPD First Response: [TRACE] Cop Anthony Cacciatore reassigned to Tim Hook
[8/11/2022 3:00:49 PM.326] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 3:00:49 PM.326] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 3:00:49 PM.330] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 3:00:49 PM.332] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 3:00:49 PM.344] LSPD First Response: [HeliAssist] Create air unit from existing police helicopter
[8/11/2022 3:00:49 PM.457] LSPD First Response: 
[8/11/2022 3:00:49 PM.457] LSPD First Response: ==============================
[8/11/2022 3:00:49 PM.457] LSPD First Response: UNHANDLED EXCEPTION DURING GAME FIBER TICK
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Origin: Game fiber "HeliAssist".
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Exception type: System.IO.FileNotFoundException
[8/11/2022 3:00:49 PM.457] LSPD First Response: Exception message: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Inner exceptions:
[8/11/2022 3:00:49 PM.457] LSPD First Response: ------------------------------
[8/11/2022 3:00:49 PM.457] LSPD First Response: Stack trace:
[8/11/2022 3:00:49 PM.457] LSPD First Response: at HeliUnit.IsSearchlightInitialized()
[8/11/2022 3:00:49 PM.457] at HeliAssistance.Main.ProcessSearchlightStuff() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 768
[8/11/2022 3:00:49 PM.457] at HeliAssistance.Main.OnTick() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 316
[8/11/2022 3:00:49 PM.457] at Rage.GameFiber.Main()
[8/11/2022 3:00:49 PM.457] LSPD First Response: ==============================
[8/11/2022 3:00:49 PM.457] LSPD First Response: 
[8/11/2022 3:00:49 PM.465] LSPD First Response: [FATAL] Forced termination
[8/11/2022 3:00:49 PM.466] LSPD First Response: [TRACE] Released 1 entities from DefaultContentManager
[8/11/2022 3:00:49 PM.466] LSPD First Response: [WARN] Chase still active, terminating manually
[8/11/2022 3:00:49 PM.468] LSPD First Response: [TRACE] Ending chase
[8/11/2022 3:00:49 PM.469] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Freeing cop: Luiz Rodriguez
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Cop freed
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Freeing cop: Anthony Cacciatore
[8/11/2022 3:00:49 PM.470] LSPD First Response: [TRACE] Cop freed
[8/11/2022 3:00:49 PM.476] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 3:00:49 PM.476] LSPD First Response: [TRACE] Aborting EvadeCopsInVehicle: Aborting main task
[8/11/2022 3:00:49 PM.481] LSPD First Response: [TRACE] TaskEvadeCopsAdvInVehicle::OnAbort
[8/11/2022 3:00:49 PM.482] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 3:00:49 PM.483] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 3:00:52 PM.187] LSPD First Response: [INFO] LSPDFR has shut down
[8/11/2022 3:00:53 PM.599] LSPD First Response: UB All Police Partners are removed
[8/11/2022 3:00:53 PM.835] LSPD First Response: UB Pursuit backup is failed to spawn
[8/11/2022 3:00:53 PM.962] LSPD First Response: Exception in StaticFinalizer callback (System.IO.FileNotFoundException: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.)

Here is the log from the first lspdfr gameplay today. Like i already said: i have spotlight 1.4 and i also have the latest ragenative.ui installed. I only get a crash when i request a helicopter when starting a pursuit with immersive dispatch but not when i request a heli with ultimate backup. That is strange to me.

Next time upload the actual file, not a paste of the file.

And you don't have Spotlight plugin loaded. If you have it installed in the plugins folder, make sure you are loading it into Rage. Either have it auto-load via the Rage configurator tool, or load it within the game by opening the console and doing "LoadPlugin Spotlight.dll"

BC9205

Members

i loaded it in but still crash here:

 

[8/11/2022 6:24:08 PM.362] Plugin "Spotlight" was loaded from "Spotlight.dll".
[8/11/2022 6:24:08 PM.411] Spotlight: Reading settings...
[8/11/2022 6:24:09 PM.154] Spotlight: Initialized
[8/11/2022 6:24:14 PM.123] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:14 PM.123] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:14 PM.123] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:29 PM.753] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:29 PM.753] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:29 PM.753] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:33 PM.018] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 6:24:33 PM.018] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 6:24:33 PM.088] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 6:24:33 PM.463] LSPD First Response: [TRACE] Created police31 at X:803.6136 Y:-1163.543 Z:29.3496
[8/11/2022 6:24:33 PM.539] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 6:24:33 PM.549] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 6:24:33 PM.564] LSPD First Response: [TRACE] Dan Dixon (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 6:24:33 PM.596] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 6:24:33 PM.606] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 6:24:33 PM.617] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 6:24:33 PM.643] LSPD First Response: [TRACE] AmbientSpawn - spawned: police31
[8/11/2022 6:24:36 PM.039] Dynamic Lighting System: Could not find game window.
[8/11/2022 6:24:45 PM.010] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:45 PM.010] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:45 PM.010] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:45 PM.406] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:45 PM.406] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:45 PM.406] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:47 PM.827] LSPD First Response: CalloutInterface: [DEBUG] user selected callout Pursuit from menu
[8/11/2022 6:24:47 PM.861] LSPD First Response: CalloutInterface: [INFO] starting callout Pursuit
[8/11/2022 6:24:47 PM.861] LSPD First Response: CalloutInterface: [DEBUG] waiting for callout delay: 1 s
[8/11/2022 6:24:48 PM.881] LSPD First Response: CalloutInterface: [DEBUG] starting callout: Pursuit
[8/11/2022 6:24:48 PM.883] LSPD First Response: Creating znfmAFTxdhLMCXqAKIuMtJEurAtE from znfmAFTxdhLMCXqAKIuMtJEurAtE, LSPD First Response, Version=0.4.8242.35949, Culture=neutral, PublicKeyToken=null
[8/11/2022 6:24:48 PM.902] LSPD First Response: GetAudioFileForAction: No file found for: STREET_OLYMPIC_FWY
[8/11/2022 6:24:49 PM.109] LSPD First Response: [TRACE] Preloading BLISTA2
[8/11/2022 6:24:49 PM.111] LSPD First Response: [TRACE] Callout created: Pursuit #1
[8/11/2022 6:24:55 PM.542] LSPD First Response: [TRACE] Allowed civilian to shoot
[8/11/2022 6:24:56 PM.505] LSPD First Response: [TRACE] Cleaning UI
[8/11/2022 6:24:56 PM.532] LSPD First Response: [TRACE] Created new chase
[8/11/2022 6:24:56 PM.714] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 6:24:56 PM.745] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 6:24:56 PM.751] LSPD First Response: [TRACE] Pursuit menu was reset.
[8/11/2022 6:24:56 PM.787] LSPD First Response: [TRACE] Starting chase
[8/11/2022 6:24:56 PM.841] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:24:56 PM.841] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:24:56 PM.881] LSPD First Response: [TRACE] Cop Dan Dixon reassigned to Tyler Sanderson
[8/11/2022 6:24:56 PM.886] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:24:56 PM.887] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:24:56 PM.887] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:24:56 PM.892] LSPD First Response: [TRACE] Cop Ryan Bently reassigned to Tyler Sanderson
[8/11/2022 6:24:56 PM.892] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:24:56 PM.893] LSPD First Response: [TRACE] Dan Dixon now monitoring Tyler Sanderson
[8/11/2022 6:24:56 PM.893] LSPD First Response: [TRACE] Ryan Bently now monitoring Tyler Sanderson
[8/11/2022 6:24:56 PM.894] LSPD First Response: [TRACE] Player now monitoring Tyler Sanderson
[8/11/2022 6:24:57 PM.019] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:24:57 PM.083] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 6:24:57 PM.083] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 6:24:57 PM.185] LSPD First Response: [TRACE] Dan Dixon now monitoring Holly Woodward
[8/11/2022 6:24:57 PM.186] LSPD First Response: [TRACE] Ryan Bently now monitoring Holly Woodward
[8/11/2022 6:24:57 PM.186] LSPD First Response: [TRACE] Player now monitoring Holly Woodward
[8/11/2022 6:24:57 PM.696] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:24:57 PM.697] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:24:58 PM.642] LSPD First Response: [TRACE] User accepted callout
[8/11/2022 6:24:58 PM.694] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:24:58 PM.694] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:24:59 PM.266] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 6:24:59 PM.266] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 6:24:59 PM.273] LSPD First Response: [TRACE] Using new link spawn
[8/11/2022 6:24:59 PM.774] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 6:24:59 PM.774] LSPD First Response: [TRACE] Created hwaycar41 at X:1049.5 Y:-1192.75 Z:54.78125
[8/11/2022 6:24:59 PM.776] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 6:24:59 PM.777] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: HighwayPatrol (sahp)
[8/11/2022 6:24:59 PM.778] LSPD First Response: [TRACE] Michael Green (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Cop Michael Green reassigned to Tyler Sanderson
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 6:24:59 PM.867] LSPD First Response: [TRACE] Michael Green now monitoring Tyler Sanderson
[8/11/2022 6:24:59 PM.867] LSPD First Response: [TRACE] Michael Green now monitoring Holly Woodward
[8/11/2022 6:24:59 PM.870] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:24:59 PM.872] LSPD First Response: [TRACE] We found a cop eligible to switch, importance: 3
[8/11/2022 6:24:59 PM.872] LSPD First Response: [TRACE] Aborting CopChasePed: Reassigning cop
[8/11/2022 6:24:59 PM.875] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:24:59 PM.877] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:24:59 PM.877] LSPD First Response: [TRACE] Cop Michael Green reassigned to Holly Woodward
[8/11/2022 6:24:59 PM.881] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:00 PM.350] LSPD First Response: [TRACE] Dan Dixon (MP_M_FREEMODE_01) entered combat with target: Tyler Sanderson (A_M_Y_LATINO_01)
[8/11/2022 6:25:00 PM.787] LSPD First Response: [TRACE] Released 0 entities from Marker #6 Content Manager
[8/11/2022 6:25:00 PM.787] LSPD First Response: [TRACE] Instance cleaned (Marker #6)
[8/11/2022 6:25:00 PM.795] LSPD First Response: [TRACE] Thread Marker #6 has been shut down
[8/11/2022 6:25:00 PM.867] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) entered combat with target: Tyler Sanderson (A_M_Y_LATINO_01)
[8/11/2022 6:25:00 PM.870] LSPD First Response: [TRACE] Invoking PedGainedVisual
[8/11/2022 6:25:00 PM.871] LSPD First Response: [TRACE] Invoking PedGainedVisual
[8/11/2022 6:25:00 PM.873] LSPD First Response: [TRACE] Report Voice: s_m_y_hwaycop_01_black_full_01
[8/11/2022 6:25:01 PM.136] LSPD First Response: PlayAction: Failed to find REPORT_SUSPECT_SPOTTED, reverted to random voice
[8/11/2022 6:25:01 PM.884] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:01 PM.887] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:01 PM.887] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:01 PM.887] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:02 PM.006] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:02 PM.167] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:25:02 PM.280] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:02 PM.334] LSPD First Response: [TRACE] Michael Green (S_M_Y_HWAYCOP_01) entered combat with target: Holly Woodward (A_F_Y_EASTSA_01)
[8/11/2022 6:25:02 PM.385] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) left combat.
[8/11/2022 6:25:03 PM.895] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:03 PM.896] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:03 PM.905] LSPD First Response: GetAudioFileForAction: No file found for: STREET_OLYMPIC_FWY
[8/11/2022 6:25:04 PM.131] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:04 PM.393] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:06 PM.271] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:06 PM.537] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:07 PM.522] LSPD First Response: [TRACE] Thread Marker #7 initialized
[8/11/2022 6:25:07 PM.747] LSPD First Response: OP_Immersive_Dispatch [Status] Standby For Pursuit Authority
[8/11/2022 6:25:07 PM.891] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:25:08 PM.414] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:08 PM.550] LSPD First Response: [TRACE] Freeing far cop
[8/11/2022 6:25:08 PM.552] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:08 PM.552] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:08 PM.554] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Freeing cop: Dan Dixon
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Freeing far cop
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Freeing cop: Ryan Bently
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Ped Ryan Bently has become idle again
[8/11/2022 6:25:08 PM.557] LSPD First Response: [TRACE] Ped Dan Dixon has become idle again
[8/11/2022 6:25:08 PM.668] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:09 PM.328] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:09 PM.328] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:09 PM.597] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) entered combat with target: Tyler Sanderson (A_M_Y_LATINO_01)
[8/11/2022 6:25:10 PM.423] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:10 PM.423] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:10 PM.833] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:10 PM.888] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 6:25:10 PM.888] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:25:11 PM.532] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:11 PM.533] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:12 PM.042] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:25:12 PM.625] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:12 PM.625] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:12 PM.939] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:13 PM.689] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:13 PM.689] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:13 PM.715] LSPD First Response: [TRACE] Dan Dixon (MP_M_FREEMODE_01) left combat.
[8/11/2022 6:25:14 PM.688] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:14 PM.688] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:14 PM.744] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) left combat.
[8/11/2022 6:25:15 PM.061] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:15 PM.719] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:15 PM.719] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:16 PM.287] LSPD First Response: GetAudioFileForAction: No file found for: STREET_OLYMPIC_FWY
[8/11/2022 6:25:16 PM.789] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:16 PM.789] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:17 PM.199] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:17 PM.877] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:25:17 PM.881] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:18 PM.515] LSPD First Response: OP_Immersive_Dispatch [Status] 10-80 (Pursuit) Authorized
[8/11/2022 6:25:18 PM.516] LSPD First Response: OP_Immersive_Dispatch [PursuitTimer] Check Timer Started
[8/11/2022 6:25:18 PM.516] LSPD First Response: OP_Immersive_Dispatch [Signal 100] ~w~Activated: ~g~True
[8/11/2022 6:25:18 PM.518] LSPD First Response: OP_Immersive_Dispatch [Backup] Pursuit
[8/11/2022 6:25:18 PM.531] LSPD First Response: OP_Immersive_Dispatch [Air Request] Is Air Support Required?
[8/11/2022 6:25:18 PM.742] LSPD First Response: [TRACE] Released 0 entities from Marker #7 Content Manager
[8/11/2022 6:25:18 PM.742] LSPD First Response: [TRACE] Instance cleaned (Marker #7)
[8/11/2022 6:25:18 PM.750] LSPD First Response: [TRACE] Thread Marker #7 has been shut down
[8/11/2022 6:25:18 PM.960] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:25:18 PM.960] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:19 PM.346] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:19 PM.594] LSPD First Response: UB: REQUESTED TYPE: LocalPatrol
[8/11/2022 6:25:19 PM.597] LSPD First Response: UB: DETECTED ZONE: LMESA
[8/11/2022 6:25:19 PM.598] LSPD First Response: UB: DETECTED COUNTY: LosSantosCity
[8/11/2022 6:25:19 PM.679] LSPD First Response: UB: STARTED PURSUIT >> OSB-0
[8/11/2022 6:25:20 PM.146] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:25:20 PM.147] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:20 PM.229] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:20 PM.229] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:20 PM.229] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:20 PM.230] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:20 PM.591] LSPD First Response: OP_Immersive_Dispatch [Backup] Air Unit (Pursuit)
[8/11/2022 6:25:20 PM.592] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 6:25:20 PM.592] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 6:25:20 PM.593] LSPD First Response: [TRACE] Using new pursuit spawn
[8/11/2022 6:25:20 PM.600] LSPD First Response: [WARN] New pursuit spawn failed, falling back to old system.
[8/11/2022 6:25:20 PM.621] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 6:25:20 PM.655] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:25:20 PM.825] LSPD First Response: [TRACE] Created polmav at X:692 Y:-1441.75 Z:184.2188
[8/11/2022 6:25:20 PM.825] LSPD First Response: [TRACE] Forced Livery: 0
[8/11/2022 6:25:20 PM.825] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 6:25:20 PM.826] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 6:25:20 PM.827] LSPD First Response: [TRACE] Butch Wild (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 6:25:20 PM.827] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 6:25:20 PM.827] LSPD First Response: [TRACE] Report Voice: S_M_Y_HWAYCOP_01_WHITE_FULL_02
[8/11/2022 6:25:20 PM.829] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 6:25:20 PM.830] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 6:25:20 PM.830] LSPD First Response: [TRACE] Gino Mendez (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 6:25:20 PM.838] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 6:25:20 PM.860] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.860] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop Gino Mendez reassigned to Tyler Sanderson
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop Butch Wild reassigned to Tyler Sanderson
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 6:25:20 PM.862] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.862] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.873] LSPD First Response: [HeliAssist] Create air unit from existing police helicopter
[8/11/2022 6:25:20 PM.895] LSPD First Response: [TRACE] Gino Mendez now monitoring Tyler Sanderson
[8/11/2022 6:25:20 PM.895] LSPD First Response: [TRACE] Gino Mendez now monitoring Holly Woodward
[8/11/2022 6:25:20 PM.897] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:25:20 PM.960] LSPD First Response: 
[8/11/2022 6:25:20 PM.960] LSPD First Response: ==============================
[8/11/2022 6:25:20 PM.960] LSPD First Response: UNHANDLED EXCEPTION DURING GAME FIBER TICK
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Origin: Game fiber "HeliAssist".
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Exception type: System.IO.FileNotFoundException
[8/11/2022 6:25:20 PM.960] LSPD First Response: Exception message: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Inner exceptions:
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Stack trace:
[8/11/2022 6:25:20 PM.960] LSPD First Response: at HeliUnit.IsSearchlightInitialized()
[8/11/2022 6:25:20 PM.960] at HeliAssistance.Main.ProcessSearchlightStuff() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 768
[8/11/2022 6:25:20 PM.960] at HeliAssistance.Main.OnTick() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 316
[8/11/2022 6:25:20 PM.960] at Rage.GameFiber.Main()
[8/11/2022 6:25:20 PM.960] LSPD First Response: ==============================
[8/11/2022 6:25:20 PM.960] LSPD First Response: 
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:25:20 PM.967] LSPD First Response: [WARN] Added cop without proper cop data
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Giorgio Luca (S_M_Y_COP_01) was set as a cop
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Cop Giorgio Luca reassigned to Tyler Sanderson
[8/11/2022 6:25:20 PM.968] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:25:20 PM.975] LSPD First Response: [FATAL] Forced termination
[8/11/2022 6:25:20 PM.976] LSPD First Response: [TRACE] Released 2 entities from DefaultContentManager
[8/11/2022 6:25:20 PM.976] LSPD First Response: [WARN] Chase still active, terminating manually
[8/11/2022 6:25:20 PM.978] LSPD First Response: [TRACE] Ending chase
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Michael Green
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Gino Mendez
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Butch Wild
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Giorgio Luca
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.987] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 6:25:20 PM.988] LSPD First Response: [TRACE] Aborting EvadeCopsInVehicle: Aborting main task
[8/11/2022 6:25:20 PM.993] LSPD First Response: [TRACE] TaskEvadeCopsAdvInVehicle::OnAbort
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 6:25:20 PM.995] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 6:25:23 PM.690] LSPD First Response: [INFO] LSPDFR has shut down
[8/11/2022 6:25:24 PM.906] LSPD First Response: PlayAction: Failed to find HELI_APPROACHING_DISPATCH, reverted to random voice
[8/11/2022 6:25:25 PM.121] LSPD First Response: UB All Police Partners are removed
[8/11/2022 6:25:25 PM.346] LSPD First Response: UB Pursuit backup is failed to spawn
[8/11/2022 6:25:25 PM.401] LSPD First Response: UB All Police Buddy are removed
[8/11/2022 6:25:25 PM.407] LSPD First Response: UB: UNIT FULLY DISMISSED >> OSB-0 | TOTAL ACTIVE UNIT >> 0
[8/11/2022 6:25:25 PM.504] LSPD First Response: Exception in StaticFinalizer callback (System.IO.FileNotFoundException: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.)
 

You can see on top of the log: 

 

[8/11/2022 6:24:08 PM.362] Plugin "Spotlight" was loaded from "Spotlight.dll".
[8/11/2022 6:24:08 PM.411] Spotlight: Reading settings...
[8/11/2022 6:24:09 PM.154] Spotlight: Initialized

I Just don't get it why.

OJdoesIt

Members Author

3 hours ago, BC9205 said:

i loaded it in but still crash here:

 

[8/11/2022 6:24:08 PM.362] Plugin "Spotlight" was loaded from "Spotlight.dll".
[8/11/2022 6:24:08 PM.411] Spotlight: Reading settings...
[8/11/2022 6:24:09 PM.154] Spotlight: Initialized
[8/11/2022 6:24:14 PM.123] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:14 PM.123] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:14 PM.123] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:29 PM.753] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:29 PM.753] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:29 PM.753] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:33 PM.018] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 6:24:33 PM.018] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 6:24:33 PM.088] LSPD First Response: [TRACE] Preloading police31
[8/11/2022 6:24:33 PM.463] LSPD First Response: [TRACE] Created police31 at X:803.6136 Y:-1163.543 Z:29.3496
[8/11/2022 6:24:33 PM.539] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 6:24:33 PM.549] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 6:24:33 PM.564] LSPD First Response: [TRACE] Dan Dixon (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 6:24:33 PM.596] LSPD First Response: [TRACE] Preloading MP_M_FREEMODE_01
[8/11/2022 6:24:33 PM.606] LSPD First Response: [TRACE] New ped created mp_m_freemode_01 (PedType: 6), Agency: CityPolice ()
[8/11/2022 6:24:33 PM.617] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) was set as a cop
[8/11/2022 6:24:33 PM.643] LSPD First Response: [TRACE] AmbientSpawn - spawned: police31
[8/11/2022 6:24:36 PM.039] Dynamic Lighting System: Could not find game window.
[8/11/2022 6:24:45 PM.010] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:45 PM.010] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:45 PM.010] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:45 PM.406] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: No radio action was specified.
[8/11/2022 6:24:45 PM.406] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:24:45 PM.406] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:24:47 PM.827] LSPD First Response: CalloutInterface: [DEBUG] user selected callout Pursuit from menu
[8/11/2022 6:24:47 PM.861] LSPD First Response: CalloutInterface: [INFO] starting callout Pursuit
[8/11/2022 6:24:47 PM.861] LSPD First Response: CalloutInterface: [DEBUG] waiting for callout delay: 1 s
[8/11/2022 6:24:48 PM.881] LSPD First Response: CalloutInterface: [DEBUG] starting callout: Pursuit
[8/11/2022 6:24:48 PM.883] LSPD First Response: Creating znfmAFTxdhLMCXqAKIuMtJEurAtE from znfmAFTxdhLMCXqAKIuMtJEurAtE, LSPD First Response, Version=0.4.8242.35949, Culture=neutral, PublicKeyToken=null
[8/11/2022 6:24:48 PM.902] LSPD First Response: GetAudioFileForAction: No file found for: STREET_OLYMPIC_FWY
[8/11/2022 6:24:49 PM.109] LSPD First Response: [TRACE] Preloading BLISTA2
[8/11/2022 6:24:49 PM.111] LSPD First Response: [TRACE] Callout created: Pursuit #1
[8/11/2022 6:24:55 PM.542] LSPD First Response: [TRACE] Allowed civilian to shoot
[8/11/2022 6:24:56 PM.505] LSPD First Response: [TRACE] Cleaning UI
[8/11/2022 6:24:56 PM.532] LSPD First Response: [TRACE] Created new chase
[8/11/2022 6:24:56 PM.714] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 6:24:56 PM.745] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 6:24:56 PM.751] LSPD First Response: [TRACE] Pursuit menu was reset.
[8/11/2022 6:24:56 PM.787] LSPD First Response: [TRACE] Starting chase
[8/11/2022 6:24:56 PM.841] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:24:56 PM.841] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:24:56 PM.881] LSPD First Response: [TRACE] Cop Dan Dixon reassigned to Tyler Sanderson
[8/11/2022 6:24:56 PM.886] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:24:56 PM.887] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:24:56 PM.887] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:24:56 PM.892] LSPD First Response: [TRACE] Cop Ryan Bently reassigned to Tyler Sanderson
[8/11/2022 6:24:56 PM.892] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:24:56 PM.893] LSPD First Response: [TRACE] Dan Dixon now monitoring Tyler Sanderson
[8/11/2022 6:24:56 PM.893] LSPD First Response: [TRACE] Ryan Bently now monitoring Tyler Sanderson
[8/11/2022 6:24:56 PM.894] LSPD First Response: [TRACE] Player now monitoring Tyler Sanderson
[8/11/2022 6:24:57 PM.019] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:24:57 PM.083] LSPD First Response: [TRACE] Assigned ped to Pursuit #1 (GameplayMandatory)
[8/11/2022 6:24:57 PM.083] LSPD First Response: [TRACE] Suspect added to chase
[8/11/2022 6:24:57 PM.185] LSPD First Response: [TRACE] Dan Dixon now monitoring Holly Woodward
[8/11/2022 6:24:57 PM.186] LSPD First Response: [TRACE] Ryan Bently now monitoring Holly Woodward
[8/11/2022 6:24:57 PM.186] LSPD First Response: [TRACE] Player now monitoring Holly Woodward
[8/11/2022 6:24:57 PM.696] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:24:57 PM.697] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:24:58 PM.642] LSPD First Response: [TRACE] User accepted callout
[8/11/2022 6:24:58 PM.694] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:24:58 PM.694] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:24:59 PM.266] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 6:24:59 PM.266] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 6:24:59 PM.273] LSPD First Response: [TRACE] Using new link spawn
[8/11/2022 6:24:59 PM.774] LSPD First Response: [TRACE] Preloading hwaycar41
[8/11/2022 6:24:59 PM.774] LSPD First Response: [TRACE] Created hwaycar41 at X:1049.5 Y:-1192.75 Z:54.78125
[8/11/2022 6:24:59 PM.776] LSPD First Response: [TRACE] Preloading S_M_Y_HWAYCOP_01
[8/11/2022 6:24:59 PM.777] LSPD First Response: [TRACE] New ped created s_m_y_hwaycop_01 (PedType: 6), Agency: HighwayPatrol (sahp)
[8/11/2022 6:24:59 PM.778] LSPD First Response: [TRACE] Michael Green (S_M_Y_HWAYCOP_01) was set as a cop
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Cop Michael Green reassigned to Tyler Sanderson
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:24:59 PM.832] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 6:24:59 PM.867] LSPD First Response: [TRACE] Michael Green now monitoring Tyler Sanderson
[8/11/2022 6:24:59 PM.867] LSPD First Response: [TRACE] Michael Green now monitoring Holly Woodward
[8/11/2022 6:24:59 PM.870] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:24:59 PM.872] LSPD First Response: [TRACE] We found a cop eligible to switch, importance: 3
[8/11/2022 6:24:59 PM.872] LSPD First Response: [TRACE] Aborting CopChasePed: Reassigning cop
[8/11/2022 6:24:59 PM.875] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:24:59 PM.877] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:24:59 PM.877] LSPD First Response: [TRACE] Cop Michael Green reassigned to Holly Woodward
[8/11/2022 6:24:59 PM.881] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:00 PM.350] LSPD First Response: [TRACE] Dan Dixon (MP_M_FREEMODE_01) entered combat with target: Tyler Sanderson (A_M_Y_LATINO_01)
[8/11/2022 6:25:00 PM.787] LSPD First Response: [TRACE] Released 0 entities from Marker #6 Content Manager
[8/11/2022 6:25:00 PM.787] LSPD First Response: [TRACE] Instance cleaned (Marker #6)
[8/11/2022 6:25:00 PM.795] LSPD First Response: [TRACE] Thread Marker #6 has been shut down
[8/11/2022 6:25:00 PM.867] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) entered combat with target: Tyler Sanderson (A_M_Y_LATINO_01)
[8/11/2022 6:25:00 PM.870] LSPD First Response: [TRACE] Invoking PedGainedVisual
[8/11/2022 6:25:00 PM.871] LSPD First Response: [TRACE] Invoking PedGainedVisual
[8/11/2022 6:25:00 PM.873] LSPD First Response: [TRACE] Report Voice: s_m_y_hwaycop_01_black_full_01
[8/11/2022 6:25:01 PM.136] LSPD First Response: PlayAction: Failed to find REPORT_SUSPECT_SPOTTED, reverted to random voice
[8/11/2022 6:25:01 PM.884] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:01 PM.887] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:01 PM.887] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:01 PM.887] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:02 PM.006] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:02 PM.167] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:25:02 PM.280] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:02 PM.334] LSPD First Response: [TRACE] Michael Green (S_M_Y_HWAYCOP_01) entered combat with target: Holly Woodward (A_F_Y_EASTSA_01)
[8/11/2022 6:25:02 PM.385] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) left combat.
[8/11/2022 6:25:03 PM.895] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:03 PM.896] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:03 PM.905] LSPD First Response: GetAudioFileForAction: No file found for: STREET_OLYMPIC_FWY
[8/11/2022 6:25:04 PM.131] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:04 PM.393] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:06 PM.271] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:06 PM.537] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:07 PM.522] LSPD First Response: [TRACE] Thread Marker #7 initialized
[8/11/2022 6:25:07 PM.747] LSPD First Response: OP_Immersive_Dispatch [Status] Standby For Pursuit Authority
[8/11/2022 6:25:07 PM.891] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:25:08 PM.414] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:08 PM.550] LSPD First Response: [TRACE] Freeing far cop
[8/11/2022 6:25:08 PM.552] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:08 PM.552] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:08 PM.554] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Freeing cop: Dan Dixon
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Freeing far cop
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Freeing cop: Ryan Bently
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:08 PM.556] LSPD First Response: [TRACE] Ped Ryan Bently has become idle again
[8/11/2022 6:25:08 PM.557] LSPD First Response: [TRACE] Ped Dan Dixon has become idle again
[8/11/2022 6:25:08 PM.668] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:09 PM.328] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:09 PM.328] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:09 PM.597] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) entered combat with target: Tyler Sanderson (A_M_Y_LATINO_01)
[8/11/2022 6:25:10 PM.423] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:10 PM.423] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:10 PM.833] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:10 PM.888] LSPD First Response: [TRACE] Aborting CopPlayRadioAction: Timed out
[8/11/2022 6:25:10 PM.888] LSPD First Response: [TRACE] TaskCopPlayRadioAction aborted
[8/11/2022 6:25:11 PM.532] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:11 PM.533] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:12 PM.042] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:25:12 PM.625] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:12 PM.625] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:12 PM.939] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:13 PM.689] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:13 PM.689] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:13 PM.715] LSPD First Response: [TRACE] Dan Dixon (MP_M_FREEMODE_01) left combat.
[8/11/2022 6:25:14 PM.688] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:14 PM.688] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:14 PM.744] LSPD First Response: [TRACE] Ryan Bently (MP_M_FREEMODE_01) left combat.
[8/11/2022 6:25:15 PM.061] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:15 PM.719] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:15 PM.719] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:16 PM.287] LSPD First Response: GetAudioFileForAction: No file found for: STREET_OLYMPIC_FWY
[8/11/2022 6:25:16 PM.789] LSPD First Response: [TRACE] Probing 0 cops
[8/11/2022 6:25:16 PM.789] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:17 PM.199] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:17 PM.877] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:25:17 PM.881] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:18 PM.515] LSPD First Response: OP_Immersive_Dispatch [Status] 10-80 (Pursuit) Authorized
[8/11/2022 6:25:18 PM.516] LSPD First Response: OP_Immersive_Dispatch [PursuitTimer] Check Timer Started
[8/11/2022 6:25:18 PM.516] LSPD First Response: OP_Immersive_Dispatch [Signal 100] ~w~Activated: ~g~True
[8/11/2022 6:25:18 PM.518] LSPD First Response: OP_Immersive_Dispatch [Backup] Pursuit
[8/11/2022 6:25:18 PM.531] LSPD First Response: OP_Immersive_Dispatch [Air Request] Is Air Support Required?
[8/11/2022 6:25:18 PM.742] LSPD First Response: [TRACE] Released 0 entities from Marker #7 Content Manager
[8/11/2022 6:25:18 PM.742] LSPD First Response: [TRACE] Instance cleaned (Marker #7)
[8/11/2022 6:25:18 PM.750] LSPD First Response: [TRACE] Thread Marker #7 has been shut down
[8/11/2022 6:25:18 PM.960] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:25:18 PM.960] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:19 PM.346] LSPD First Response: [TRACE] Reapplied
[8/11/2022 6:25:19 PM.594] LSPD First Response: UB: REQUESTED TYPE: LocalPatrol
[8/11/2022 6:25:19 PM.597] LSPD First Response: UB: DETECTED ZONE: LMESA
[8/11/2022 6:25:19 PM.598] LSPD First Response: UB: DETECTED COUNTY: LosSantosCity
[8/11/2022 6:25:19 PM.679] LSPD First Response: UB: STARTED PURSUIT >> OSB-0
[8/11/2022 6:25:20 PM.146] LSPD First Response: [TRACE] Probing 1 cops
[8/11/2022 6:25:20 PM.147] LSPD First Response: [TRACE] No eligible cop found
[8/11/2022 6:25:20 PM.229] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:20 PM.229] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:20 PM.229] LSPD First Response: [TRACE] InvokePedRegainedVisualOfSuspectEvent
[8/11/2022 6:25:20 PM.230] LSPD First Response: [TRACE] Visual regained event fired
[8/11/2022 6:25:20 PM.591] LSPD First Response: OP_Immersive_Dispatch [Backup] Air Unit (Pursuit)
[8/11/2022 6:25:20 PM.592] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 6:25:20 PM.592] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 6:25:20 PM.593] LSPD First Response: [TRACE] Using new pursuit spawn
[8/11/2022 6:25:20 PM.600] LSPD First Response: [WARN] New pursuit spawn failed, falling back to old system.
[8/11/2022 6:25:20 PM.621] LSPD First Response: [TRACE] Preloading POLMAV
[8/11/2022 6:25:20 PM.655] LSPD First Response: [TRACE] TaskCopPlayRadioAction Initialize()
[8/11/2022 6:25:20 PM.825] LSPD First Response: [TRACE] Created polmav at X:692 Y:-1441.75 Z:184.2188
[8/11/2022 6:25:20 PM.825] LSPD First Response: [TRACE] Forced Livery: 0
[8/11/2022 6:25:20 PM.825] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 6:25:20 PM.826] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 6:25:20 PM.827] LSPD First Response: [TRACE] Butch Wild (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 6:25:20 PM.827] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 6:25:20 PM.827] LSPD First Response: [TRACE] Report Voice: S_M_Y_HWAYCOP_01_WHITE_FULL_02
[8/11/2022 6:25:20 PM.829] LSPD First Response: [TRACE] Preloading S_M_Y_PILOT_01
[8/11/2022 6:25:20 PM.830] LSPD First Response: [TRACE] New ped created s_m_y_pilot_01 (PedType: 6), Agency: AirSupport (lspd_asu)
[8/11/2022 6:25:20 PM.830] LSPD First Response: [TRACE] Gino Mendez (S_M_Y_PILOT_01) was set as a cop
[8/11/2022 6:25:20 PM.838] LSPD First Response: [TRACE] Assigned air unit voices.
[8/11/2022 6:25:20 PM.860] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.860] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop Gino Mendez reassigned to Tyler Sanderson
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop Butch Wild reassigned to Tyler Sanderson
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:25:20 PM.861] LSPD First Response: [TRACE] Added cop to existing chase
[8/11/2022 6:25:20 PM.862] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.862] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.873] LSPD First Response: [HeliAssist] Create air unit from existing police helicopter
[8/11/2022 6:25:20 PM.895] LSPD First Response: [TRACE] Gino Mendez now monitoring Tyler Sanderson
[8/11/2022 6:25:20 PM.895] LSPD First Response: [TRACE] Gino Mendez now monitoring Holly Woodward
[8/11/2022 6:25:20 PM.897] LSPD First Response: [TRACE] Extended route by 20
[8/11/2022 6:25:20 PM.960] LSPD First Response: 
[8/11/2022 6:25:20 PM.960] LSPD First Response: ==============================
[8/11/2022 6:25:20 PM.960] LSPD First Response: UNHANDLED EXCEPTION DURING GAME FIBER TICK
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Origin: Game fiber "HeliAssist".
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Exception type: System.IO.FileNotFoundException
[8/11/2022 6:25:20 PM.960] LSPD First Response: Exception message: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Inner exceptions:
[8/11/2022 6:25:20 PM.960] LSPD First Response: ------------------------------
[8/11/2022 6:25:20 PM.960] LSPD First Response: Stack trace:
[8/11/2022 6:25:20 PM.960] LSPD First Response: at HeliUnit.IsSearchlightInitialized()
[8/11/2022 6:25:20 PM.960] at HeliAssistance.Main.ProcessSearchlightStuff() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 768
[8/11/2022 6:25:20 PM.960] at HeliAssistance.Main.OnTick() in C:\Users\OJ\Documents\Visual Studio 2022\source\repos\HeliAssistance\Main.cs:line 316
[8/11/2022 6:25:20 PM.960] at Rage.GameFiber.Main()
[8/11/2022 6:25:20 PM.960] LSPD First Response: ==============================
[8/11/2022 6:25:20 PM.960] LSPD First Response: 
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Assigned ped to Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Took ownership of cop for chase
[8/11/2022 6:25:20 PM.967] LSPD First Response: [WARN] Added cop without proper cop data
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] New cop added without cop data!
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Giorgio Luca (S_M_Y_COP_01) was set as a cop
[8/11/2022 6:25:20 PM.967] LSPD First Response: [TRACE] Cop Giorgio Luca reassigned to Tyler Sanderson
[8/11/2022 6:25:20 PM.968] LSPD First Response: [TRACE] Cop added to chase
[8/11/2022 6:25:20 PM.975] LSPD First Response: [FATAL] Forced termination
[8/11/2022 6:25:20 PM.976] LSPD First Response: [TRACE] Released 2 entities from DefaultContentManager
[8/11/2022 6:25:20 PM.976] LSPD First Response: [WARN] Chase still active, terminating manually
[8/11/2022 6:25:20 PM.978] LSPD First Response: [TRACE] Ending chase
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Visual lost event fired
[8/11/2022 6:25:20 PM.979] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Michael Green
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Gino Mendez
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Butch Wild
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] TaskCopChasePedAdv::OnAbort
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removed ped chase strategy
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Removing ped from Chase #1 (GameplayMandatory)
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Freeing cop: Giorgio Luca
[8/11/2022 6:25:20 PM.980] LSPD First Response: [TRACE] Cop freed
[8/11/2022 6:25:20 PM.987] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 6:25:20 PM.988] LSPD First Response: [TRACE] Aborting EvadeCopsInVehicle: Aborting main task
[8/11/2022 6:25:20 PM.993] LSPD First Response: [TRACE] TaskEvadeCopsAdvInVehicle::OnAbort
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Aborting EvadeCops: Freeing suspect
[8/11/2022 6:25:20 PM.994] LSPD First Response: [TRACE] Aborting CopChaseVisualCheck: Suspect freed
[8/11/2022 6:25:20 PM.995] LSPD First Response: [TRACE] Suspect freed
[8/11/2022 6:25:23 PM.690] LSPD First Response: [INFO] LSPDFR has shut down
[8/11/2022 6:25:24 PM.906] LSPD First Response: PlayAction: Failed to find HELI_APPROACHING_DISPATCH, reverted to random voice
[8/11/2022 6:25:25 PM.121] LSPD First Response: UB All Police Partners are removed
[8/11/2022 6:25:25 PM.346] LSPD First Response: UB Pursuit backup is failed to spawn
[8/11/2022 6:25:25 PM.401] LSPD First Response: UB All Police Buddy are removed
[8/11/2022 6:25:25 PM.407] LSPD First Response: UB: UNIT FULLY DISMISSED >> OSB-0 | TOTAL ACTIVE UNIT >> 0
[8/11/2022 6:25:25 PM.504] LSPD First Response: Exception in StaticFinalizer callback (System.IO.FileNotFoundException: Die Datei oder Assembly "Spotlight, Version=1.4.0.0, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden.)
 

You can see on top of the log: 

 

[8/11/2022 6:24:08 PM.362] Plugin "Spotlight" was loaded from "Spotlight.dll".
[8/11/2022 6:24:08 PM.411] Spotlight: Reading settings...
[8/11/2022 6:24:09 PM.154] Spotlight: Initialized

I Just don't get it why.

I'm not sure what's going on. And it seems to be isolated with just you since no one else has reported this issue. You could uncheck the Searchlight option within the menu. That should prevent crashing.

JS92

Members

Anyone know why there is no spotlight whenever I call the HeliAssistance? I have already installed the Spotlight plugin. Any help please??

BC9205

Members

Hello OJ, 

 

so here is my log file for the crash report...please i really don't know what the point is of my game crash....i didn't hade those crashes in the previous version. This is really something new.

 

 

RagePluginHook.log

I get it working when i use the heli response with your menu system (Air 1 is reponding). But as soon as is start a pursuit with immersive dispatch and i agree the heli support it crashes the game. It says:

 

 EXCEPTION DURING PLUGIN TERMINATION
[8/14/2022 4:20:56 PM.652] ------------------------------
[8/14/2022 4:20:56 PM.652] Origin: Plugin "LSPD First Response" (LSPD First Response.dll).
[8/14/2022 4:20:56 PM.652] ------------------------------
[8/14/2022 4:20:56 PM.652] Exception type: System.InvalidOperationException
[8/14/2022 4:20:56 PM.652] Exception message: Collection was modified; enumeration operation may not execute.

OJdoesIt

Members Author

On 8/13/2022 at 7:03 PM, JS92 said:

Anyone know why there is no spotlight whenever I call the HeliAssistance? I have already installed the Spotlight plugin. Any help please??

Make sure the Spotlight plugin is getting loaded. Make sure you also enable the spotlight in the Heli Assistance menu, under Features Settings.

On 8/14/2022 at 7:26 AM, BC9205 said:

Hello OJ, 

 

so here is my log file for the crash report...please i really don't know what the point is of my game crash....i didn't hade those crashes in the previous version. This is really something new.

 

 

RagePluginHook.log 281.16 kB · 1 download

I get it working when i use the heli response with your menu system (Air 1 is reponding). But as soon as is start a pursuit with immersive dispatch and i agree the heli support it crashes the game. It says:

 

 EXCEPTION DURING PLUGIN TERMINATION
[8/14/2022 4:20:56 PM.652] ------------------------------
[8/14/2022 4:20:56 PM.652] Origin: Plugin "LSPD First Response" (LSPD First Response.dll).
[8/14/2022 4:20:56 PM.652] ------------------------------
[8/14/2022 4:20:56 PM.652] Exception type: System.InvalidOperationException
[8/14/2022 4:20:56 PM.652] Exception message: Collection was modified; enumeration operation may not execute.

In the Rage settings, make sure Spotlight plugin auto-loads while the game is initialized. If you don't know how to do that, then just make sure you load the Spotlight plugin before loading LSPDFR. Then try testing again.

Kingisaac

Members

👍

Lsxxxxxx

Members

It would be cool if we could change the model in a future update from, say, POLMAV to whatever.

BC9205

Members

I have tried everything but i can only get the heli assistance when i use the heli assistance plugin but when i call in backup with immersive dispatch and i agree the assistance it just crashes.

RagePluginHook.log

BC9205

Members

i never had those problems with the heli assistance mod version 2.2.1. 

OJdoesIt

Members Author

2 hours ago, BC9205 said:

I have tried everything but i can only get the heli assistance when i use the heli assistance plugin but when i call in backup with immersive dispatch and i agree the assistance it just crashes.

RagePluginHook.log 125.18 kB · 0 downloads

Does it Heli assistance work outside of immersive dispatch?

BC9205

Members

When i call backup with ultimate backup at some point 'yes' but as soon as i start a pursuit with immersive dispatch and i agree for heli backup it crashes the game. I'm just surprised that the heli assistance mod version 2.2.1. works instead of the 2.4.2. version. And i also noticed that the crash started after the mod version 2.2.1. till then it worked very well.

That's why i'm still using the version 2.2.1. at this point because i have no other option to get the newest version working as i want it to. And i also wanted to say that when i call backup with the newest version 2.4.2. (with the heli assistance menu) it also works but that is unrealitic. The only problem seems to be with 'immersive dispatch'.

javier0911

Members

i dont see the en-US  to drop the  air.xml

OJdoesIt

Members Author

On 8/20/2022 at 1:26 AM, BC9205 said:

When i call backup with ultimate backup at some point 'yes' but as soon as i start a pursuit with immersive dispatch and i agree for heli backup it crashes the game. I'm just surprised that the heli assistance mod version 2.2.1. works instead of the 2.4.2. version. And i also noticed that the crash started after the mod version 2.2.1. till then it worked very well.

That's why i'm still using the version 2.2.1. at this point because i have no other option to get the newest version working as i want it to. And i also wanted to say that when i call backup with the newest version 2.4.2. (with the heli assistance menu) it also works but that is unrealitic. The only problem seems to be with 'immersive dispatch'.

So I think it's because immersive dispatch is using the old Heli Assistance API

SlimInAZ

Insiders

(edited)

Never mind, the units are indicated in the in-game menu. I was working in the ini file.

This has been one of my favorite add-ins for a while, thanks for doing it. Regarding the ini file (Specifically the Heli section): I'm assuming the height and distance values are in meters (please correct me if I'm wrong); what units of measurement are the speeds? Knots, MPH, meters/second, etc. I'm trying the match the top speed to match the model I'm using and slow down the orbit speed. Thanks.

Edited by SlimInAR

SlimInAZ

Insiders

Feature request: Use the vehicles specified in Ultimate Backup's DefaultRegions.xml LocalAir section when calling the helicopter. I have different helicopter models and liveries for LSPD, LSSD, and BCSO. It would be cool for those to show up based on the location of where the heli is called to. Or as an alternative, allow specifying models in your ini file based on jurisdiction.

BC9205

Members

So what can i do because of the API ??? Change values or what ?? Like i said i'm still using the heli assistance version 2.2.1. 

OJdoesIt

Members Author

8 hours ago, SlimInAR said:

Never mind, the units are indicated in the in-game menu. I was working in the ini file.

This has been one of my favorite add-ins for a while, thanks for doing it. Regarding the ini file (Specifically the Heli section): I'm assuming the height and distance values are in meters (please correct me if I'm wrong); what units of measurement are the speeds? Knots, MPH, meters/second, etc. I'm trying the match the top speed to match the model I'm using and slow down the orbit speed. Thanks.

Altitude and distance are in meters, GTA's default unit of measurement. The speed can either be mph or kmh; this can be changed in the menu.

3 hours ago, BC9205 said:

So what can i do because of the API ??? Change values or what ?? Like i said i'm still using the heli assistance version 2.2.1. 

There will be no backwards compatibility support. So you have to continue using that version, or use the latest version without immersive dispatch support.

BC9205

Members

Well it seams like that. But how are you calling for heli support backup ?? With ultimate backup ?? Or different ??

OJdoesIt

Members Author

5 hours ago, BC9205 said:

Well it seams like that. But how are you calling for heli support backup ?? With ultimate backup ?? Or different ??

When I use it, I do it through the menu. Or you can use the hotkeys (SHIFT and H) which would call the heli without needing the menu. The heli is internally created within the plugin; it doesn't use LSPDFR or UB.

Create an account or sign in to comment

Latest Mods

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.