Everything posted by Abraxas
-
Anyone know what this is/does?
Macromedia was original developer of Flash, but it was bought by Adobe many years ago. I suggest some virus/trojan scan as it looks suspicious. Also try to find that exe and check in what directory is it, maybe that will tell you something more.
-
VDH Police Helper Error
I will reveal it when I have all pieces working together, but there is only one piece left to make ;)
-
VDH Police Helper Error
Yeah, I'm sorry it's not fixed yet, but I had a lot of real life work. Also PoliceHelper is now kinda broken into pieces as I'm adding one bigger feature that isn't finished. But I want to release fix as soon as possible.
-
vdH PoliceHelper
Are you sure that PoliceHelper is causing that? Try to remove it and see if it helps. PoliceHelper is script mod which doesn't modify any content files so it can't "break" your game. Do you have any errors listed in Scripthookdotnet.log or vdh_errors.log?
- 316 comments
- 152 reviews
-
Newer license check script
In PoliceHelper you can check papers of people in car when it's stationary. Just stop cars using barriers or Braveheart's features and check license. PH will return info not only if licence is valid/expired/revoked but also type of licence and info if there is no insurance on vehicle.
-
Off-Duty Cop Mod?
ALT+P starts LCPDFR, then CTRL+P to force duty This way you won;t change to cop, but will have access to all LCPDFR features.
-
The road ahead: 2013 and beyond (LCPDFR, ELS.Net and more)
All I can say is that API is coming and it's crucial in expanding mods like Braveheart's and mine. API certainly will be game changer for us scripters. I can't wait to try it, but even I don't know when it comes. LCPDFR devs work really hard to give stable and good experience and to give scripters framework to create mods on the whole new level. Examples why API is so important: With API it will be possible to have all ped data the same in every mod. Policemen on roadblock will shoot only suspect and only when he tries to ram them, not when he is surrendering after ramming into roadblock. Forcing pursuit will be possible. Yes, you can get that now but without backup etc. With this one burglaries, bank robberies, officer assistance on traffic stops starts will be possible. These are only few things that will help us add more to the whole LCPDFR experience.
- vdH PoliceHelper 1.2.0 beta
- vdH PoliceHelper 1.2.0 beta
-
vdH PoliceHelper 1.2.0 beta
I think you may like future updates of PoliceHelper ;) Sometimes game just isn't able to spawn certain car or ped. It is caused by many different things like small amount of memory, lots of other models currently loaded and other issues. FDLC assistance is in fact broken in current PoliceHelper and it will be fixed next week.
-
Ped & Vehicle Functions?
Closest vehicle should work out of the box but closest ped function is totally unreliable. Try something like this (may contain errors): float dist = 1000f; Ped pedToFind = null; foreach (Ped p in World.GetPeds(Game.LocalPlayer.Character.Position, 30f)) { if (p.Exists()) { float distCalculated = p.Position.DistanceTo(Game.LocalPlayer.Character.Position); if (distCalculated < dist) { pedToFind = p; dist = distCalculated; } } } if (pedToFind.Exists()) { // do something with closest ped }
-
game crash
No, problem IS in PoliceHelper. I'll release fix next week. Please use LCPDFR computer instead. I'm sorry for problems. I wasn't aware that many people use this feature and thought that this fix can wait for next bigger release. Looks like I need to release fix earlier ;)
-
VDH Police Helper Not Working
Yes, I'm aware of this bug. I had other plans but I may release fixed version next week. Don't expect any new features in this one, only fixes.
-
vdH PoliceHelper
Thank you for the report. I've fixed it already, but you will have to wait for new version as there is one BIG new feature that I'd need to turn off to release the fix. as you can imagine it's not that easy. FDLC crashes when they finish their job. For now please you LCPDFR computer to call for FDLC. I'm sorry for problems.
- 316 comments
- 152 reviews
- vdH METT/Coroner Mod v.1.0.0 [REL]
-
vdH PoliceHelper
1. There is fire extinguisher and as it is police mod I don't plan to add more 2. There should be policemen at roadblock, one per car 3. Spike strip on roadblock may be added in future. For now I can't check if lethal force is authorised, as there is no API for LCPDFR 4. There is only one fire truck in vanilla GTA so I won't mess with that, also see #1
- 316 comments
- 152 reviews
- vdH METT/Coroner Mod v.1.0.0 [REL]
-
Evidence?
I may add that in future. I'm now focused on bigger feature that I should reveal quite soon :)
-
vdH PoliceHelper
PoliceHelper works in multiplayer but usually is not as stable as in single player. I saw videos of stable MP gameplays and I saw totally fucked up ones. I saw that most problems are caused by barriers in cones in multi, other parts of script work better. Also remember to make bigger intervals for events as with few users they can be awfully too common.
- 316 comments
- 152 reviews
-
vdH PoliceHelper 1.2.0 beta
You have to be a bit more specific. Callouts - I plan to write callouts myself. It's second goal on my roadmap right now. I started to write few callouts already. Of course they will be displayed by PoliceHelper ALPR - there is an ALPR mod already, Harper works on his ALPR mod and I saw that Sniper296 is making his version too, so I don't think that I should add it.
- Modified Default Vehicles Pack 1 (ELS)
-
Police horse (Rideable)
You overestimate my modding abilities :) Horse script would require new animations for both horse and player. Problem is horse would need to be ped to be animated, but you cant attach ped to ped or precisely "steer" another ped. If horse would be vehicle then it could not be animated, so I doubt that such mod will ever be created. But I may be wrong.
-
Game Freezes?
Change your mouse sensitivity and if that won't help, change your ENB. Some ENBs are not compatible with mods using forms like PH or LCPDFR police computer.
-
Game Freezes?
First of all, can you use policehelper? I mean does your mouse work and can you use PH? If yes everything is fine. By default PoliceHelper pauses the game. In the latest version you can choose if you want Policehelper to pause the game or nor or pause only when you are in moving vehicle.
-
Body's in the trunk
I have basically script that works like that. It's part of K-9 script, where dog can find dead body in trunk. It works quite well, but of course would need to be reworked to work on demand not randomly during car search.