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.

jitsuin666

Members
  • Joined

  • Last visited

  1. two angels now! xoxoxo im sorry im a pathetic lazy bastard but i have no more patience, i was searching, even i tried a million ways to attach ptfx, even copying the logic from game scripts and it would not work!! gta iv seemed more cooperative 😞
  2. you see those are exactly what i want to use, thank you kind sir... now about that police hat and glasses... is that like advanced hook stuff... lspdfr use only xD someone? help me i cant patrol streets without hat and glasses 😞 oh and thank you for the ptfx code, going to be testing that very soon 😉 you are an angel sent from heaven 😘 i dont have much to offer you but i do know how to summon the jew fairy do you see how sad my police woman looks with no hat 😞
  3. How, put code here? i give you sukky sukky if you tell me
  4. i just wanted to do it the safes way possible, im not sure if i can give a weapon when i already have one and it just screws with gta's memory... just trying to play it safe and point at the weapon itself that already exists and set the ammo on it...it would be nice if we had something like ped.Inventory.GetWeapon(weaponHash).Ammo 😉 rph is calling the game natives and maybe the game natives are supposed to be used a certain way, unless you know for a fact otherwise... i use to code for iv with scripthook.net and you could mess up gta if you werent using natives right and get access violations left and right... rockstar doesnt program their native functions to check to make sure dev is using at correct time, they know how to use them, i dont, we all guess and look to decompiled scripts for example
  5. oh im on the discord channel right now, they all are yelling at me right now and harassing me and bla bla bla... yeah but thank you for your response kind sir... i wasnt waiting just an hour but days and yes coders on here constantly, no one cares unless they need something what is eup menu? im just making my own mod i dont plan to use anyone else's stuff... i prefer to make my own mods, the only mod i have downloaded is lspdfr
  6. well i try to help people but i notice nobody helps me, this isnt my first thread asking how to spawn a police hat. The other day I showed someone how to make a menu, i wasted like 10-15 minutes explaining and even made example code for them and not even a thanks. Do you know how to spawn the pllice hat and glasses... i think they look so very very cool and geee wouldnt it be nice if i can spawn them too 😄 but nah nobody cares about me, no one wants to help me, why do you care if i curse... let me curse at the clouds if it makes me feel better, nobody was ever going to come here and read it, nobody cares, it made me feel better typing it 😛 you see my avatar... that's an actual photo of me
  7. ugh im too lazy, the modders need to do that stuff... like if my mod is listed on essential mods i will make sure it works 😉
  8. ah yes ignored like always, nobody ever answers my coding questions haha why do i bother, i have helped people so much over the years showing them how to do fucking everything, make menus you name it... you all act like gta is some top secret shit and sharing information might mean another modder makes something better i dont know, is it a competitive thing... im just making a personal mod that i will not upload... just want to know some simple answers and you fuckers been coding gta for past 10 years and act like little snob fucks, guess what i knw what it takes to code, i know you are just a monkey that can make some garbage code, i know you fool all the little fucking kooks that think you are a hacker or someshit but i know you are an idiot, i know any monkey can learn... im too fucking lazy to go through lists of natives that all you lazy fucks havent organized into a library properly... if you made a proper sdk i wouldnt have to ask these questions... I guess you are trash oh well... i spit on you and your code patooie! LOL (and here come the responses to my thread toi simply talk shit... but when i was talking coding nobody would reply lol) go ahead come talk shit to me i welcome it, i know this post is going to rub sand in all your vaginas. Well I say good, fuck you! i want a lspdfr dev to get in this fucking thread and tell me how to spawn the god damn police hat and glasses and i want to know NOW!!!!
  9. I have the weapon hash and want to add ammo to the weapon, i made this code but seems like a lot of extra work to do something so simple weapon is a WeaponHash and pi is Game.LocalPlayer.Character.Inventory
  10. Hello fellow officers... i need some help if anyone has a moment, i am not new to coding gta so if you want to explain quickly, that is fine... 1. how do you attach ptfx smoke to an object? 2. how do you add ammo to a weapon in the ped inventory? 3. How do you spawn a police hat and sunglasses like they do in lspdfr?? (it is not a character variation I guess) I am using the RagePluginHook but all I need to know is which native functions can do this or someone can give an example of the code? thanks
  11. i meant relatively bug free 🙂 thanks for the reply, i will look at those so all those mods on that page could be installed? will there be any conflict?
  12.    jitsuin666 reacted to a post in a topic: Stuttering with lspdfr
  13.    jitsuin666 reacted to a post in a topic: LSPDFR Feels Like A Demo WIth No Purpose
  14.    jitsuin666 reacted to a post in a topic: LSPDFR Feels Like A Demo WIth No Purpose
  15. any mods you can recommend? preferably bug free ones lol
  16. anything for military preferably replacing gang models since the game is designed to make those guys fight and would be perfect for military textured peds
  17. Hello, long time modder, so you can talk to me with that in mind... not asking to be spoon fed but can someone spoon feed me some code to spawn the hat and sunglasses... i already know about setting character variations but that does not appear to set those removeable items... can anyone share the native function i need to use... I figured I asked instead of testing stuff for hours to find it... thank you! Im sure someone here knows how to do it. I am Using RagePluginHook if that has code to do it but if you know the native, that works... thank you!
  18. in case you guys want code to help controller people... i made these classes to detect double taps and long presses of buttons... i think in your mod for any key there should also be a contoller button check and many functions can be implemented by double tapping A button or D pad down or by doing long presses of those buttons... please take this code if you want to implement controller functionality for loser controller people like me :3 implemented... declare in class private LongPress lp = new LongPress(ControllerButtons.A); Tick if (Game.IsKeyPressed(Keys.E) || lp.Check()) { ArrestSuspect(); } Spoiler class LongPress { private const uint LONG_PRESS_TIME = 1000u; private bool startedPress; private uint pressTime; private ControllerButtons button; internal LongPress(ControllerButtons b) { button = b; } internal bool Check() { bool yep = Game.IsControllerButtonDownRightNow(button); if (!yep) { startedPress = false; return false; } uint gt = Game.GameTime; if (startedPress) { if (gt - pressTime > LONG_PRESS_TIME) { startedPress = false; return true; } } else { startedPress = true; pressTime = gt; } return false; } } class DoublePress { private const uint DOUBLE_PRESS_TIME = 500u; private uint pressTime; private int pressCount; private ControllerButtons button; internal DoublePress(ControllerButtons b) { button = b; } internal bool Check() { bool yep = Game.IsControllerButtonDown(button); if (yep) { uint gt = Game.GameTime; pressCount++; if (pressCount == 1) { pressTime = gt; return false; } else if (gt - pressTime < DOUBLE_PRESS_TIME) { pressCount = 0; return true; } else { pressTime = gt; pressCount = 1; return false; } } else { pressCount = 0; return false; } } } Also that is great you guys are already way ahead of me thinking about replayability 😉 i will check out that article, looks promising... i have been out the loop of gta 5 for a couple years (or more) THERE IS A BUG IN THIS CODE BUT IF YOU WANT TO USE YOU CAN FIGURE IT OUT xD

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.