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.

khorio

Members
  • Joined

  • Last visited

Files posted by khorio

  1. AGS: Accurate Gauge System
    The end of arcade driving.

    Most GTA V vehicles feel like indestructible slot cars. You floor the gas, the car goes, and the gauges are just static decorations. AGS changes the fundamental relationship between you and your patrol vehicle. By simulating the hidden stresses of mechanical driving, from wind resistance to alternator load, AGS turns every pursuit into a test of man and machine.

    A Dashboard That Lives

    Forget the static mini-map HUD. AGS introduces a professional-grade instrumentation suite that reacts to the physics of the world.

    Mechanical Needle Fidelity: Experience the "wobble" of an aging engine and the violent bounce of the needle when you hit the rev limiter.
    Fluid Physics: Your fuel gauge isn't a progress bar; it’s a tank of liquid. Watch the needle "slosh" as you dive into hard corners or slam on the brakes.
    The Interior Experience: Small details matter. The system provides high-fidelity (is this an ai word again?) feedback for turbo boost, oil pressure, and engine temperature.
    Automatic RPM Range: Vehicles with a higher RPM range will automatically swap to a texture supporting the rev limiter.
    Measurement Unit Support: AGS will automatically detect your measurement unit (Miles|Gallons|F|$, KM|L|C|EUR), you can override these units to your preference from within the menu.

    The "Live Design" Suite

    You shouldn't have to be a coder to have a beautiful HUD. AGS includes a powerful, drag-and-drop Live Editor.
    Total Creative Freedom: Open the menu and literally grab your gauges with your mouse (you can't actually grab them individually, but this sets up the paragraph). Scale them or tuck a digital speedometer inside an analog dial.
    Visual Inspector: Change colors and toggle sub-components in real-time. Whether you want a minimalist modern look or a cluttered "old-school" cruiser vibe, you can build it in seconds without ever leaving the game.
    Skin & Palette presets: Create, load & save your own (or others) skin and color palettes.
    AGS comes with 2 Texture packs, 5 skins and 31 color palette presets.

    True-to-Life Simulation

    AGS tracks the variables that modern games usually ignore. Every mile driven is a calculation of efficiency and wear.
    Beyond the Fuel Tank: Consumption is dictated by reality. If you’re towing a heavy vehicle, running your sirens/lightbars (electrical load), or driving a cruiser with the doors ripped off (aerodynamic drag), you will watch your fuel disappear faster.
    Terrain & Surface Logic: Driving through mud or sand creates rolling resistance, while steep hills force the engine to work harder. Even the "quality" of the gas station you choose matters—low-grade fuel can lead to stutters and misfires during high-speed chases.
    The "Cold Start" Reality: Engines don't perform perfectly the moment you turn the key. AGS simulates thermal curves; your car needs to reach its optimal temperature for peak performance, and it can suffer from "Heat Soak" if pushed too hard in the Los Santos heat.

    Professional Driver Assists

    For the long-shift patrol officer, AGS provides the tools to make driving feel like a profession.
    Precision Cruise & Limiting: Use the PID-based Cruise Control to maintain an exact speed over hilly terrain, or set a hard Speed Limiter to stay in perfect formation with your partners.
    Intelligent Initialization: Every car you enter has a history. Based on the neighborhood and the vehicle, the fuel level is intelligently randomized. You might jump into a luxury car with a full tank, or a beat-up sedan that’s running on fumes and a prayer.

    THE TACTICAL SYMBOL CLUSTER
    The AGS Symbol Cluster is a dedicated, real-time diagnostic suite that brings your vehicle’s dashboard to life. Unlike basic HUDs that only show a speed number, this system monitors the internal health and electrical state of your cruiser, displaying icons exactly when you need to see them.
    Real-Time Mechanical Diagnostics
    The cluster is directly tethered to the vehicle’s physics engine. You aren't just seeing lights; you’re seeing the live status of your machine:
    Critical Alerts (Red): Immediate warnings for Oil Pressure, Battery Voltage, Engine Temperature, and Brake System failures.
    Mechanical Safety (Amber): Stay informed on ABS activation, Tire Pressure fluctuations, and Check Engine status.
    Lighting & Signals: Visual confirmation for High Beams, Fog Lights, Daytime Running Lights, and synchronized Turn Signal indicators.
    Tactical Sync (Cruise & Limiter)
    The cluster includes a dedicated icon that illuminates whenever the Cruise Control or Speed Limiter is active. This provides an instant visual cue that the internal PID-controller is managing your throttle, allowing you to focus on the road and your surroundings during a pursuit or a long highway patrol.
    Customizing Your Layout
    The Symbol Cluster is a fully modular widget. Using the In-Game Live Editor, you can treat the symbols as their own standalone element:
    Positioning: Drag the entire cluster to a location that fits your screen layout—place it between your main gauges, at the top of your dashboard, or as a minimalist bar at the bottom of the screen.
    Scaling: Adjust the size of the icons to ensure they are readable at a glance without obstructing your view.


    Installation
    AGS requires a dlc to be loaded, the download includes both the LML package and manual installation.
    Instructions can be found in the download.

    DEFAULT KEYS
    All keybinds can be changed within the menu (Under system settings).
    If the default menu keybind is conflicting with another plugin you can change it through the console (F4->SetAGSMenuKey)

    Menu: F11
    Move Gauges: F12 (Hold while dragging)
    Refuel: N (Hold down for manual or Double tap to auto refuel)
    Cruise Control: T
    Speed Limiter: Shift+T
    Modify Cruise Control\Speed Limiter target: PageUp\PageDown


    CUSTOM SKIN DESIGN: THE RIGID SPECIFICATIONS

    AGS uses a high-performance, stack-based rendering engine. Unlike generic HUD mods, AGS does not handle per-layer offsets. To ensure your skin renders correctly, you must adhere to the following hardcoded architectural rules.

    1. The Square Canvas Rule

    Dimensions: All textures must be designed on a perfectly square canvas (e.g., 512x512).

    The Center-Point: The engine draws every layer at the exact same coordinates and rotates the needle around the absolute center of the square (256, 256).
    Centering: You must center your gauge face and the "pin" of your needle perfectly in your image editor. The code will not reposition them for you.

    2. Hardcoded Texture Naming
    The TextureResolver assembles names based on the Gauge Type, Layer Name, and optional Suffixes (Unit/Time). Inside your .ytd, your textures must match these Base Names:




    Layer Key
    Texture Base Name
    Purpose
    TX_UNDERLAY
    UNDERLAY
    The primary static background/face of the gauge.
    TX_FILL
    FILL
    The background layer for digital displays or secondary solid fills.
    TX_NEEDLE
    NEEDLE
    The rotating element.
    TX_NUMBERS
    NUMBERS
    The numerical dial (supports Metric/Imperial variants).
    TX_LABEL
    LABEL
    Text indicators (e.g., "MPH", "RPM").
    TX_LED_ON/OFF
    LED_ON / LED_OFF
    Status and warning lights.
    TX_REDLINE
    REDLINE
    High-RPM limit markings.
    TX_LMAJOR / LMINOR
    LINES_MAJOR / LINES_MINOR
    Primary and secondary tick marks.
    TX_GLASS
    GLASS
    Glass overlay.

    3. Naming Assembly & Fallbacks

    The TextureResolver generates names using a PREFIX_BASENAME_SUFFIX pattern.
    Prefixes: Automatically added based on the gauge (SPEEDO_, FUEL_, TURBO_, OIL_, TEMP_).
    Suffixes: * _KMH or _MPH are appended for NUMBERS and LABEL layers based on user settings.
    _NIGHT is appended to all primary layers when the headlights are on.
    Logic: If SPEEDO_NUMBERS_KMH_NIGHT is missing, the resolver falls back to SPEEDO_NUMBERS_KMH, then to the base SPEEDO_NUMBERS.


    4. Speedometer Calibration
    Linear: Standard rotation (e.g., 1 degree per 1 MPH).
    Non-Linear: For realistic police cruisers, you can define degree-per-unit SpeedMaps in the configuration. This allows the needle to point accurately even if the spacing between your elements on the NUMBERS/LINES are uneven.

    5. Technical Design Tips
    Resizing Artifacts: Stick to 512x512. Using larger textures causes the engine to downsample the image, creating a "shimmering" or blurry effect on the dashboard.
    Color Tinting: Design your NEEDLE, FILL, and LED layers in Grayscale/White. This allows the AGS in-game menu to apply the user's chosen RGB tint to the texture at runtime.
    Layer Toggling (Flags): Use the flags in the config to disable any layer you aren't using (e.g., if your skin doesn't need a REDLINE layer).


    This description was brought to you by Gemini because I am too lazy to write descriptions.
    The code however, was not.



    • 3,762 Downloads
    • 36 Comments
    Updated
  2. XScanner is an LSPDFR Scanner replacement/addon.
     
    Features:
     
    Full XAudio2 support. Multiple output device support, play background scanner on one device and police scanner on another. Multiple audio emitters to choose from; player, player vehicle, police vehicles. Customizable distortion effects for the police scanner. LSPDFR relay. Broadcast quick selection. Broadcast presets; Top50, Newest Streams, Official Streams, Manual stream input, search for streams. Supports all known audio formats, and then some. Police Scanner playback (frontend and 3d). Background Scanner playback (frontend and 3d) (local files or stream). Preferred audio folder; for dispatch replacements. Audio redirects; for dispatch replacements. The prettiest animated menu around with theming support.

      There is the possibility of editing the ini manually, but I do not recommend it due to the complexity of this plugin.
    Everything can be changed through the menu (default: F8)
    If you already have something bound to F8 you can either:
     
    change the menu key through the consolecommand SetXScannerMenuKey manually open the menu through the consolecommand and change the menu key from within the menu. OpenXScannerMenu  
     
    Installation: Place files from the "Grand Theft Auto V" folder into your game installation folder.
     
     
     
    ⚠️  Known Issues ⚠️ 
    None


     
     
     
     
    ⚠️ DISCLAIMER ⚠️
    Not providing support in the comments anymore.
    Support can be found on my Discord or on the ULSS Discord.
     
     
     
     
     

     
     
    • 192,378 Downloads
    • 637 Comments
    Updated
  3. If you like this content, please consider donating to support further development
    or inquire about the upcoming Early Access which will get you early preview builds
    of upcoming releases and first-line support. Thank you.
     

     
    XScanner  
     

     
    XScanner Pursuit Updates (XPU) adds immersive radio chatter to your pursuits featuring over 3200 remastered audio lines,
    including, but not limited to:
     
    Air support feedback Vehicle actions 180 turns Dangerous road conditions Weather updates Vehicle damage Traffic collisions Driving against traffic Vehicle crashes Vehicle direction, speed, location Extensive vehicle descriptions Air updates for almost all of the above  
     

     
    Just drop the contents from "Grand Theft Auto V" in your Grand Theft Auto V folder.
     
     
     
    Showcase from Most Wanted using XPU (audio not related to racers comes from XPU):
     


    • 42,109 Downloads
    • 33 Comments
    Updated
  4. StickyWheels is a RagePluginHook plugin that keeps the wheels turned the way you left them when stationary.
    When you leave the vehicle the wheels will retain their angle,
    entering the vehicle will not straighten them out again.
    Requirements: RagePluginHook v0.41+
    Usage:
    Turn the wheel left or right when stationary  
    • 311,853 Downloads
    • 51 Comments
    Updated
  5. Do not spread without my permission or I will TP your house.

    KTFDO is a RagePluginHook plugin that stops the door from closing every time you leave your vehicle.
    Requirements: a recent copy of RagePluginHook (0.41+)
    Usage:
    Open and close door normally: Tap the leave vehicle key once Open door and leave open: Hold down the leave vehicle key
    • 265,706 Downloads
    • 55 Comments
    Updated
  6. For people who are still getting sick from being ran over by drivers freaking out because of gunshots, StopShittingbricks® might be the answer.
    StopShittingBricks® stops peds in cars from, well, shitting bricks / freaking out and running you over.
    StopShittingBricks® is not a plugin but a file modification, so performance drops are non-existent.
    StopShittingBricks® will stop most peds in vehicles from freaking out when shots are fired, they will still react when being shot at.
    Peds on foot are unchanged.
    Please note that this is an alpha version, and it is not perfect yet, some cars might still freak out.
    Place the included events.meta in update/update.rpf/common/data using OpenIV.
    A backup file is also provided.
    • 35,666 Downloads
    • 29 Comments
    Updated

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.