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.

LMS

Management Team
  • Joined

Everything posted by LMS

  1. He probably just forgot we use american dates here, please post your LCPDFR.log again after you have replaced the file.
  2. What ped are you trying it on? Please try a random one in the streets.
  3. Well it still says you are using the wrong version, I'm not sure what you are doing wrong. Download this and extract the ScritpHookDotNet.asi in your game folder (make sure to replace the existing one): >
  4. I didn't refer to the creation date, but to the date the file was last changed.
  5. It might take off for a pursuit when you leave the vehicle.
  6. When was the ScriptHookDotNet.asi last changed? Should say 04/02/2013 if it's the right one.
  7. Please try the solution posted here: >
  8. You have to hold down the StartChaseOnPed key (LControl by default I think) and then press E while targetting.
  9. Presuming your dictionary looks like this: <SpawnPoint, string roomName>, I'd do something like this. Note that I did not test this. private static Dictionary<SpawnPoint, string> barPositions = new Dictionary<SpawnPoint, string>() { { new SpawnPoint(0.0f, Vector3.Zero), "ROOM_STRING" } }; // Get closest bar var closestBar = (from element in barPositions.Keys orderby element.Position.DistanceTo2D(LPlayer.LocalPlayer.Ped.Position) select element).First(); // Get room name string roomName = barPositions[closestBar]; // Spawn ped LPed barPed = new LPed(closestBar.Position, CModel.GetRandomModel(EModelFlags.IsPed | EModelFlags.IsCivilian).ModelInfo.Name, LPed.EPedGroup.MissionPed); if (barPed.Exists()) { barPed.CurrentRoom = Room.FromString(roomName); }
  10. Can you try the fix from here please: >
  11. Thank you guys, that's exactly the reason why we work on this!
  12. Yeah, typical GTA IV issue. Nothing you can do about it.
  13. It's not the fault of AdvancedHook. AdvancedHook attaches an unhandled exception handler to GTA IV/EFLC in order to log all exceptions that occur. So it just logs crashes that occur within GTA IV to help me fix bugs by R* in the original GTA IV code.
  14. 0.95 targets 4.0 though.
  15. Either edit the .INI to set FirstStart to True again or in the PD, go to the room where your partner is. There is a checkpoint in the right corner. Pressing E in there should start the tutorial again.
  16. I'm sorry but it's still the same issue. Please post a picture of your game direcory with in detailed view.
  17. Moved to Development. You can use our API to do just that. Make sure your class inherits from GameScript, then you can do something like this: if (Functions.IsKeyDown(Keys.B)) { LPed ped = new LPed(LPlayer.LocalPlayer.Ped.Position, "M_Y_COP"); if (ped.Exists()) { // This will block all other scripts from accessing this officer Functions.SetPedIsOwnedByScript(ped, this, true); ped.AttachBlip(); } } Also, explicitly stating the ped is not a cop might help when spawning: LPed ped = new LPed(LPlayer.LocalPlayer.Ped.Position, "M_Y_COP", LPed.EPedGroup.MissionPed);
  18. You did something wrong then. It clearly says it's the old version, not the one from LCPDFR 1.0. Please copy ScriptHookDotNet.asi from the manual archive to your game folder.
  19. It's not a LCPDFR issue. From what the internal logs reveal, GTA crashes when adding a reference to a full pool. Try lowering your settings or removing any vehicle or ped mods. Also a hardware upgrade might help.
  20. Do you use any traffic mods?
  21. Arresting suspects from pullovers is currently not working properly. Please avoid doing that. Your other crashes seem to come from vehicles disappearing. Are you using a traffic mod?
  22. Please use the latest ScriptHookDotNet that comes with the manual installation archive. You have the one from 0.95.
  23. Hello, none of us developers, nor one of the tester (20+ people) ever had any problems with the game like that. That's why we also don't really know what's going on there. I, personally, can play for hours without having a single crash, so finding the issues is really hard since I can't reproduce them.
  24. I'm afraid, I can't find anything wrong. Please wait for an update.
  25. Please use the search function next time: "Unable to cast object of type 'freval_77' to type 'freval_89'.". It's a known issue.

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.