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.

Abel Gaming

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Abel Gaming got a reaction from tankdestroyer2134 in ELS.asi & Updated AdvancedHookV.dll Issue   
    Make sure you have everything up to date:

    ScriptHook V
    ScriptHook V Dot Net (I use by Nightly)
    And of course RAGE with LSPDFR release
  2. Love
    Abel Gaming got a reaction from JoshPC in ELS.asi & Updated AdvancedHookV.dll Issue   
    Glad you got it working!
  3. Like
    Abel Gaming reacted to JoshPC in ELS.asi & Updated AdvancedHookV.dll Issue   
    Solved!
     
    For some reason, the 2016 version wasn't even working a few days ago when I last tried, decided to try again today with a fresh ELS download and it worked.
     
    Thanks guys!
  4. Love
    Abel Gaming got a reaction from JoshPC in ELS.asi & Updated AdvancedHookV.dll Issue   
    Make sure you have everything up to date:

    ScriptHook V
    ScriptHook V Dot Net (I use by Nightly)
    And of course RAGE with LSPDFR release
  5. Like
    Abel Gaming got a reaction from GTA 5 Jedi Master in ELS.asi & Updated AdvancedHookV.dll Issue   
    Just got done dealing with this - use the AdvancedHook that comes in the ELS download. Do not use the AdvancedHook fix file. Solved the problem for me!
  6. Thanks
    Abel Gaming got a reaction from RU.Beats in ELS.asi & Updated AdvancedHookV.dll Issue   
    Just got done dealing with this - use the AdvancedHook that comes in the ELS download. Do not use the AdvancedHook fix file. Solved the problem for me!
  7. Like
    Abel Gaming got a reaction from JoshPC in ELS.asi & Updated AdvancedHookV.dll Issue   
    Just got done dealing with this - use the AdvancedHook that comes in the ELS download. Do not use the AdvancedHook fix file. Solved the problem for me!
  8. Like
    Abel Gaming reacted to JoshPC in ELS.asi & Updated AdvancedHookV.dll Issue   
    Hi All,
     
    I decided to do a fresh install of LSPDFR after the recent GTAV update, however, when I installed ELS along with the new AdvancedHookV.dll file, I keep getting an error message (attached) when I launch RAGEPluginHook. If I close the error message, the game and LSPDFR will still load but without ELS. I've reinstalled everything including ScriptHookV (also up to date) and I'm having no luck. Any help is appreciated. ELS.logAdvancedHookV.log
     
    This is also the first time I've ever posted on this site so if this is the wrong place to post, please let me know: I'm still learning.
     
    Thanks,
    Josh

  9. Love
    I'm seeing a new trend of plugins including ini parser to manage their config files. Thing is, RPH has it's own system to handle this. Using ini parser is absolutely not needed.
    If you are one of those devs reading this, I will show how you can use RPH's system instead.

    First, make a simple static file such as Settings.cs in your project. In this settings file you will manage everything to do with the config, and it's pretty darn simple.
    I personally suggest making it static because in my own personal use case I find it better to never be instantiated. Inside this class:
     
     
    Simply make a bunch of public/internal declarations for the values you want. Create a LoadSettings() and optionally a SaveSettings() method. Initialize the ini file. You want to use its path. Most common is in the same path as the dll. (This requires the Rage import!) Example: 
    Assign the values and set the defaults. You can use IntelliSense to see what is what in the ini.* Example:


    First string is the section name, and the second is the key name. You can have multiple keys per section. Example:


    The third option is the default value. This is important because if the file is missing, or broken it will use the default value.  
    That's it for reading an ini file. All you do now is run the LoadSettings() in your main class when the plugin is loaded and it will set all of the variables to their corresponding ini value. Since the class is static, and the values are internal or public you can access them anywhere in your plugin and the value will always be correct.

    You can optionally edit an ini file. It's pretty much the same. You initialize the file, then you write instead of read. Here is how it can look:


    In this case, you can actually set those values you made in the Settings.cs and when you run the method, it will save them to the ini file. It's the exact same as reading the ini except in reverse.

    Here is how the important parts of my settings file look:


    That's it! Now we load the ini at startup by running your new load method. My example:


    And now those settings are loaded! Keep in mind you can run this method at anytime, so if you have a button or console command to reload the config, you can! It works live.
    Here is how you can access the setting in your code:

     
  10. Like
    Abel Gaming got a reaction from Isaa in LSPDFR Callout Plugin Creator [WIP]   
    **Please move if located in the wrong topic area**
    Hello everyone! I have been gone from LCPDFR.com for quite some time now! I desperately needed to take a break for my own personal mental health and step away from coding and development for a while! With that being said, I am refreshed and ready to get back into things! I currently have a new project I am working on for people who are interested in developing callout plugins for LSPDFR! This creator will assist you through the process. It has only recently started development, therefore, release will not be for a few more weeks! Let me know any features you definitely want to see in this and any suggestions you might have!
     
    3-3-2020 Update: This is still in the works but had to slightly change a few things! I ran into some bumps, but I expect the initial release to be this coming Friday or maybe even sooner! Stay tuned!
     
     
     
  11. Like
    Abel Gaming got a reaction from Pazzi in LSPDFR Callout Plugin Creator [WIP]   
    **Please move if located in the wrong topic area**
    Hello everyone! I have been gone from LCPDFR.com for quite some time now! I desperately needed to take a break for my own personal mental health and step away from coding and development for a while! With that being said, I am refreshed and ready to get back into things! I currently have a new project I am working on for people who are interested in developing callout plugins for LSPDFR! This creator will assist you through the process. It has only recently started development, therefore, release will not be for a few more weeks! Let me know any features you definitely want to see in this and any suggestions you might have!
     
    3-3-2020 Update: This is still in the works but had to slightly change a few things! I ran into some bumps, but I expect the initial release to be this coming Friday or maybe even sooner! Stay tuned!
     
     
     
  12. Like
    Abel Gaming got a reaction from KnightHawkOne in LSPDFR Callout Plugin Creator [WIP]   
    **Please move if located in the wrong topic area**
    Hello everyone! I have been gone from LCPDFR.com for quite some time now! I desperately needed to take a break for my own personal mental health and step away from coding and development for a while! With that being said, I am refreshed and ready to get back into things! I currently have a new project I am working on for people who are interested in developing callout plugins for LSPDFR! This creator will assist you through the process. It has only recently started development, therefore, release will not be for a few more weeks! Let me know any features you definitely want to see in this and any suggestions you might have!
     
    3-3-2020 Update: This is still in the works but had to slightly change a few things! I ran into some bumps, but I expect the initial release to be this coming Friday or maybe even sooner! Stay tuned!
     
     
     
  13. Like
    Abel Gaming reacted to Jetty Bot in Suggestions for GamePlay   
    You can also try the "PoliceMenu V" mod. It's what I use and is specifically tuned to police things there is also a quick repair key.
     
    For the weapons you could use "Easy Loadout Continued". It doesn't make it so you can't pick weapons up but it adds a hotkey so you can give yourself the loadout that you made in the .ini
     
     
  14. Like
    Abel Gaming got a reaction from Reddington in [W.I.P] LS D.O.T Menu   
    Done! And added some in game screenshots! Release should be within the next few days!
  15. Like
    Abel Gaming reacted to Reddington in [W.I.P] LS D.O.T Menu   
    I love it, especially shutting down roads to simulate closed roads.  I suggest adding the Bison as a DOT/construction vehicle since it's a pickup truck.
  16. Like
    Abel Gaming got a reaction from Reddington in [W.I.P] LS D.O.T Menu   
    Hello everyone! As many of you know, I am a script developer who caters mainly to role-play. With my mods, typically Native UI menus, I tend to focus on one department or branch of something. As seen with my PoliceMenu V, and FDLS menu. However, I have recently been testing out a new menu idea, Los Santos Department of Transportation!
     
    This mod will feature simple DOT and road construction vehicles such as the following
    Utility Pick Up Trucks Tow Trucks Bucket Trucks Dump Trucks (Small, Medium, and Large Size) Concrete Trucks Los Santos Department of Works vans Flatbed Bulldozer Forklift Tunnel Boring Cutter Tractor  
    Also in the mod, the user will have the ability to shut down a small section of any road to role-play "road construction". Props such as road cones, road barriers, and arrow boards will be available for spawning! Leave your feedback and maybe any suggestions you might have below!
     

     
     
  17. Like
    Abel Gaming reacted to gamepro552 in External Program for Ped Database Search   
    I've been thinking, it would be really awesome to be able to look up a name/vehicle plate from LSPDFR on a different device, such as another computer or a phone. I think it would be really cool. I just don't like doing it on the same PC because keybindings mess up, and the name vanishes quickly.
    Something else that would be equally useful, is to turn on lazy mode, and every time you get a suspects name, it will automatically search the database, or when you go to search the database, their name is already there and you just press enter.
  18. Like
    Abel Gaming reacted to Troy1996 in GTA IV Windows 10 LCPDFR Issue   
    hello i just installed lcpdfr and note my game was working fine before i installed the ELS and LSPCFR  And the Trainer with that being said now everytime i try launching gta it just won't load at all any ideas why this is happening i installed everything correctly.. [did it more then 3 times]  sorry for my grammer 
     
    LSPDFR VER 1.1 ELS V8.51 i have them both installed
  19. Like
    Abel Gaming reacted to BlueLine Vibes in Things You Want To See   
    I guess I am not understanding what you are asking.  Are  you suggesting Plugins, scripts etc.  Or an EXE tool to launch various things? 
  20. Like
    Abel Gaming reacted to CowTheory in Things You Want To See   
    A lot of people have questions on how to download plugins and scripts, it would be really cool if someone could make an EXE file that would incorporate many popular plugins and scripts (including ragehook, scripthook V, and native trainer) and do all the "hard work" for them. 
  21. Like
    Abel Gaming reacted to bemadd in New PC help   
    I bought GTA V download from amazon to play LSPDFR. I hope that I'll be able to, every video I've seen has been from steam. But, that shouldn't make a difference... right?
    My problem is my computer can not handle GTA V. Everyone says to build... The issue is I really have no idea what I need or how to build a PC. Can anyone give me some tips? I would like to stay under $600. Better yet if anyone has suggestions on prebuilt that would be great!
  22. Like
    Abel Gaming reacted to Stripe in New PC help   
    Building a PC is much more simple than people make it out to be; however, it's not easy. I would say it would be best to go with a mediocre pre-built and then add components later on down the line once you've got an idea of PC hardware. 
    I'm afraid I don't know a huge amount of pre-built PC providers in the US, but newegg tends to be a pretty safe bet. Some pretty good entry level kit on there for very acceptable prices.
  23. Like
    Abel Gaming got a reaction from Albo1125 in GTA V CAD (Computer-Aided Dispatch)   
    Thanks!
    Adding pictures now!
    Pictures are up! The "Cars" tab says "Select Location" but that will be fixed on the actual file release!
  24. Like
    Abel Gaming got a reaction from OfficerL6 in GTA V CAD (Computer-Aided Dispatch)   
    Thanks!
    Adding pictures now!
    Pictures are up! The "Cars" tab says "Select Location" but that will be fixed on the actual file release!
  25. Like
    Abel Gaming reacted to OfficerL6 in GTA V CAD (Computer-Aided Dispatch)   
    Pictures please, not downloading it until I see it first.

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.