Everything posted by LMS
-
LCPDFR 1.0 Wont start while in Game Error in Script Loader
He probably just forgot we use american dates here, please post your LCPDFR.log again after you have replaced the file.
-
LCPDFR 1.0 - Start chase on ped
What ped are you trying it on? Please try a random one in the streets.
-
LCPDFR 1.0 Wont start while in Game Error in Script Loader
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): >
-
LCPDFR 1.0 Wont start while in Game Error in Script Loader
I didn't refer to the creation date, but to the date the file was last changed.
-
LCPD:FR 1.0 ~ Traffic Stops Wont Work :/
It might take off for a pursuit when you leave the vehicle.
-
LCPDFR 1.0 Wont start while in Game Error in Script Loader
When was the ScriptHookDotNet.asi last changed? Should say 04/02/2013 if it's the right one.
-
lcpdfr 1.0 error loading lcpdfr_loader.loader
Please try the solution posted here: >
-
LCPDFR 1.0 - Start chase on ped
You have to hold down the StartChaseOnPed key (LControl by default I think) and then press E while targetting.
-
What's a good way to force a callout to spawn at predefined locations?
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); }
-
LCPDFR 1.0 - Not there? ALT + P Doesn't work?
Can you try the fix from here please: >
-
1.0 — why I'll never get back to 0.95
Thank you guys, that's exactly the reason why we work on this!
-
Issue with Advancedhook.dll
Yeah, typical GTA IV issue. Nothing you can do about it.
-
Issue with Advancedhook.dll
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.
-
LCPDFR 1.0 Critical Error
0.95 targets 4.0 though.
-
LCPDFR Tutorial?
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.
-
LCPDFR 1.0 Wont start while in Game Error in Script Loader
I'm sorry but it's still the same issue. Please post a picture of your game direcory with in detailed view.
-
Please exclude mission characters from pursuit involvement
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);
-
LCPDFR 1.0 Wont start while in Game Error in Script Loader
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.
-
Crashing after Using Computer
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.
-
Transport Car Disappearing
Do you use any traffic mods?
-
Crashing Consistently After 10-30 minutes
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?
-
LCPDFR 1.0 this is an issue i think wasn't addressed yet please help me (i have logs attached as well)
Please use the latest ScriptHookDotNet that comes with the manual installation archive. You have the one from 0.95.
-
Problem launching GTA IV with LCPDFR 1.0
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.
-
Problem launching GTA IV with LCPDFR 1.0
I'm afraid, I can't find anything wrong. Please wait for an update.
-
Crashing while arresting peds
Please use the search function next time: "Unable to cast object of type 'freval_77' to type 'freval_89'.". It's a known issue.