Everything posted by Darkmyre
-
Guide to Creating a Callouts Plugin [LSPDFR+RPH]
Might be worth adding a mention of the PDB file, which makes debugging when things go wrong a whole lot easier.
-
Better EMS
A great, highly polished plugin that finally gives us proper EMS! Love the customization options, and the fact that EMT's can react when things happen while they're onscene. Definitely a "must-have" plugin for any LSPDFR patrol.
- 781 comments
- 85 reviews
-
Getting the trunk VehicleDoor
^ And this is why SearchWarrant just opens all the bloody doors at once lol. Clearly whoever had the task of writing the door logic for GTA was on some interesting substances
-
Coastal Callouts is now in active development!
-
[Vehicle Request] NSW Ambo Sprinter w/ proper lights
Is there a way to see if a model is unlocked without zModeler? More than happy to invest the time hunting one down if there is
-
[Vehicle Request] NSW Ambo Sprinter w/ proper lights
FWIW, that skin does work on other sprinters. I haven't managed to find a Sprinter with a non-shit lightbar yet though, so really hoping someone can take this on.
-
Updated ScriptHookV is out
If its your game crashing, Rockstar normally makes changes to update/update.rpf so you might need to put a fresh copy of that file into your mods folder and re-mod it.
-
Looking for Mentor?
If you right-click on the project itself (the second line in Solution Explorer) and select properties, then go to the Build tab you can see and change the output path. I've set mine to my GTA installation's plugins directory, so I just have to build the project, alt-tab into the game and reload LSPD First Response to re-test
-
LSPDFR: Australia by Darkmyre Gaming
Back in the ambulance for another paramedic patrol tonight.
-
LSPDFR: Australia by Darkmyre Gaming
Risking life and limb, I let my crazy partner plugin do the driving on today's patrol:
-
[SOLVED] Adding a property to an object
If you just need to store extra data about the ped, it might be simpler to just stuff it in the Metadata. Eg: if (somethingBadHappened) { //imaginary bool for demo purposes :P myPed.Metadata.ReallyDead=1; } // other code if (myPed.Exists() && myPed.Metadata.ReallyDead == 1) { Game.DisplayNotification("~b~" + myOfficer.OfficerName + "~w~: Patient is DOA, notifying coroner."); End(); }
-
.ini
Make sure you're actually calling Settings.LoadSettings() at some point. I put mine in the Initialize() override, which seems to get triggered when the user goes on duty.
-
Setting Ped as Drunk? [SOLVED]
I could be wrong, but I think you might just need to add a using ToastyCallouts; to your callout script so that it can see the function from Main.cs
-
Stop peds from trying to shoot through walls
I guess you could periodically check the native HAS_ENTITY_CLEAR_LOS_TO_ENTITY and cancel/change the peds task if it returns false? Or perhaps set SET_PED_CAN_BE_TARGETED_WITHOUT_LOS to false for your peds? I havent personally used these natives, just remembered seeing a few natives dealing with LoS
-
update v757 can't roll back to v617
Not sure, worst case with steam you should be able to verify local game files and have it restore everything.
-
Download Center API
Awesome addition, thank you! Is there any more information available regarding the beta system? Do we need to setup authorized users, or can it be used to somehow highlight that a plugin is still in beta?
-
Best Resolution/Aspect Ratio For YouTube Uploads
I'll add in addition to the above great advise, if you cant get a 1080p monitor, you'd probably be better off downgrading your resolution to whateverx720 (I don't know the matching width, you'd probably have to google that to make sure its still in 16x9 resolution... I guess you could probably also Math it). It won't look as good as 1080 but it'll be in the right resolution so wont have the black borders.
-
update v757 can't roll back to v617
I'm not sure, but I think it should. I don't remember getting this social club error in the last few updates, so I *think* the social club version was the same for a while. If it doesn't work, you might just need to do some googling to find out what version of social club came before that one. I just went into Control Panel -> Uninstall A Program... from memory it had the full name, ie "Rockstar Games Social Club".
-
update v757 can't roll back to v617
If you've successfully reverted to GTA v678 and are getting Error Code 16 from Social Club, you just need to uninstall Social Club, and install the version for GTA 678 that can be downloaded from Rockstar here: http://patches.rockstargames.com/prod/socialclub/Social-Club-v1.1.7.8-Setup.exe
-
LSPDFR: Australia by Darkmyre Gaming
It was wet and wild on the streets of Los Santos today as a nasty storm front rolled in from the west and brought out all the weirdos.
- Search index broken
-
RAGE Plugin Hook (Game Patch Not Supported)
From memory, when you first run Rage it should ask if you want Rage to make a backup of your game files, just click Yes and it should do the hard lifting for you. When steam downloads the new version tomorrow, you'll get the same "game version not supported" message again. To fix that, when you launch Rage you should see a little cog wheel icon in the very first splash screen, click that and when it loads the setttings panel, go to the right-most tab and click restore. If that doesn't make sense, both myself and Albo1125 have video tutorials showing how to go about it
-
RAGE Plugin Hook (Game Patch Not Supported)
It's not too late to backup your game version until Steam has downloaded the new version. Make sure you're running Rage from the directory where GTA V is installed.
-
Search index broken
It seems like the search index is broken or perhaps missing or something, it is not possible to search for older topics anymore. There are some topics/posts I refer to regularly, and have been searching for keywords that I knew bring them up (for example a search for 'sirenSettings' used to bring up a great thread about installing new police cars, which included a breakdown of the different sirenSettings values). Another example is searching the API forum for 'PlayAnimation' - you'll get one very recent post, yet I know there are at least 2 or 3 older threads with more detailed information and examples that used to be returned. Not only does this make it harder to find things we know are there, but it's probably contributing to the increase of posts/threads asking basic questions, as even if people find the search button it's not going to help them at the moment. Is there any way for the search index to be rebuilt so searching can find those older threads again?
-
Civilian Traffic Control
Personally I just try and roleplay around it. In most parts of the map its fairly easy to find a spot where you can get the suspect and your car clear of the traffic flow. Combine that with traffic control's limit speed feature and you can get some pretty decent traffic stops. Worst case, the citizens of Los Santos are absolute d-bags, so I treat them as such lol.