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.

AlexBraun

Members
  • Joined

  • Last visited

  1.    AlexBraun reacted to a post in a topic: LSPDFR Crash
  2.    AlexBraun reacted to a post in a topic: How to do alcohol test?
  3.    AlexBraun reacted to a post in a topic: How To Use Mods
  4.    AlexBraun reacted to a post in a topic: Game Crash
  5.    AlexBraun reacted to a post in a topic: game crashing, again
  6.    AlexBraun reacted to a post in a topic: Just small inconvenient random crashes.
  7.    AlexBraun reacted to a post in a topic: LSPDFR Crashes when picking up guns
  8. Williskid2194 started following AlexBraun
  9.    D0WN70AD reacted to a comment on a file: [OUTDATED] Pursuit Pack by D0WN70AD
  10.    Mrsuperx13 reacted to a comment on a file: [OUTDATED] Pursuit Pack by D0WN70AD
  11. Tip for next time you update this plugin: Instead of using ScriptSettings from SHVDN, you can use the InitializationFile class from RAGE Plugin Hook, this minimizes dependencies and allows it to be used even when ScriptHookV isn't updated. I've already taken the liberty of converting your code for you: var iniFile = new InitializationFile("PursuitPack.ini"); var flag1 = iniFile.ReadBoolean("Options", "Stolen Stockade", true); var flag2 = iniFile.ReadBoolean("Options", "Stolen Vehicle", true); var flag3 = iniFile.ReadBoolean("Options", "Drive By", true); var flag4 = iniFile.ReadBoolean("Options", "Motorcycle Pursuit", true); var flag5 = iniFile.ReadBoolean("Options", "High Speed Car Chase", true); var flag6 = iniFile.ReadBoolean("Options", "Wanted Criminal In Car", true); var flag7 = iniFile.ReadBoolean("Options", "Foot Pursuit", true); var flag8 = iniFile.ReadBoolean("Options", "Bicycle Pursuit", true); var flag9 = iniFile.ReadBoolean("Options", "Faggio Pursuit", true); var flag10 = iniFile.ReadBoolean("Options", "Armed Faggio Pursuit", true); var flag11 = iniFile.ReadBoolean("Options", "Police Car Stolen", true); var flag12 = iniFile.ReadBoolean("Options", "Ambulance Stolen", true); var flag13 = iniFile.ReadBoolean("Options", "Stolen Fire Truck", true); var flag14 = iniFile.ReadBoolean("Options", "Low Value Car Stolen", true); var flag15 = iniFile.ReadBoolean("Options", "Racing Car", true); var flag16 = iniFile.ReadBoolean("Options", "Truck Pursuit", true); var flag17 = iniFile.ReadBoolean("Options", "Garbage Truck Pursuit", true); var flag18 = iniFile.ReadBoolean("Options", "Tank Pursuit", true); var flag19 = iniFile.ReadBoolean("Options", "Stolen Bus", true); var flag20 = iniFile.ReadBoolean("Options", "Stolen Taxi", true); var flag21 = iniFile.ReadBoolean("Options", "Stolen Dump", true); var flag22 = iniFile.ReadBoolean("Options", "Monster Truck Rampage", true); var flag23 = iniFile.ReadBoolean("Options", "Stolen Military Insurgent", true); var flag24 = iniFile.ReadBoolean("Options", "Stolen Police Bike", true); var flag25 = iniFile.ReadBoolean("Options", "Stolen Tractor", true); You're welcome.
  12. Michael Conlan started following AlexBraun
  13. romytiondog started following AlexBraun
  14. officer cartier started following AlexBraun
  15. Rey015 started following AlexBraun
  16. tworagg started following AlexBraun
  17. AlexBraun started following Deactivated Member
  18. you_cat_heel started following AlexBraun
  19. Deactivated Member started following AlexBraun
  20. RoyceTheFox started following AlexBraun
  21. Once again, that would interfere with the .NET script if that one's enabled as well. The DAU (dumbest assumable user [Yes, we actually use that term in programming]) wouldn't know about that interference and that would probably confuse Discord since there are 2 apps with the same ID communicating with it at the same time but with different information.
    • 1,472 downloads
    • Version 1.1.1
    Rage Presence RagePresence allows players to share their actions from Grand Theft Auto V to everyone on Discord using Discord's new Rich Presence feature. Installation: Drag discord-rpc.dll into your GTA 5 installation folder where the .exe files are, and put RagePresence.dll in the scripts folder. Requirements: Grand Theft Auto V - v1180+ ScriptHookV.Net 2.10+ Latest Discord Client for Windows Check out our Discord if you need any support.
  22.    rukrim reacted to a review on a file: [WIP] Enhanced LSPD Cop
    First mod I know of that uses a custom YMT file, great job! :)
  23. Exactly, the game sees Michael as a safe point which it can revert to if all other options of recovering from the error (death as NPC which is not the current player characters model) If you want to prevent this error from happening, enable god mode.
  24. There are 12 numbers, from left to right they go by the component Ids. A number under 11 means the n-th <Item> element (n being the number that was given)
  25. The parts of the players (lowr, jbib, accs) are called components. These components have different models, also known as drawables, and identifiable by the number after the component name. And they can have different texture variations, which can be identified by the letter at the end. (a = texture id 0, b = texture id 1, c = texture id 2, ...)
  26. The features are working fine, it's most likely due to your low graphics settings that they are non-functional for you. Try setting the graphics settings a bit higher and also please post logs next time.
  27. AlexBraun changed their profile photo
  28. The <Item> elements within <hash_E2489C4F> correspond to the individual components, and each of the <Item> elements within the <hash_68AC8351> element of each component <Item> element, are responsible for the drawable variations. Edit for clarification: I used the s_m_y_hwaycop_01 ymt file in these pictures.
  29. I have found a new way to add in clothing to peds without having to replace any of the existing drawables or textures! This will possibly lead to a lot of additional clothing mods.
  30. Images added to a gallery album owned by AlexBraun in GTA V Galleries
    Just a place for me to share my scripts that I've made when I got bored or started working on a new project. (Warning: Some images and/or scripts could make no sense)
  31. Check their individual readme files or mod pages to find out.
  32. That means that they are not Plugins, but callouts. They have to be placed inside of /Plugins/LSPDFR otherwise they won't run. To load them in, use LSPD First Response.

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.