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.

The Big House

Members
  • Joined

  • Last visited

Everything posted by The Big House

  1. Now I feel even dumber than before. I didn't realize that NativeUI was a different thing than RageNativeUI. So that worked, thank you very much!
  2. Hi there, I really want to use your menu plugin, but unfortunately I am stuck installing this thing. I have read every post that's responded to this and I still cannot get my menu to show up when I press "F5". I am beginning to feel pretty dumb but I've been trying for days to get this to work. I would rather get rid of my Simple Trainer for this because I use mainly 3 functions in Simple Trainer but I could use this menu more. Attached is showing you I have my Scripthook V.dll, ScripthookVDot.Net.dll in my Main Folder, and also attached is my scripts menu showing the simplepolicehelper.dll and .ini files, along with the SHP. Thanks for any advice!
  3. Pardon the bump, but I would like a little help on this, just to get the basics down.
  4. Hi folks, I am starting to learn to write scripts for Rage and am struggling as a beginner. It is a little bit intimidating just to print a Hello, World text. I mean, I have figured out how to use Game.DisplayNotification, Game.DisplayHelp, etc, but I am trying to figure out how to draw text to the screen. For my first script, I want to write a simple speedometer, with nothing fancy that just displays my player's current vehicle, with no other features. Here's my code: I am able to load the plugin into Rage, but my speedometer handle isn't being called at all. Attached is my code: public static void Main() { GameFiber.StartNew(delegate { if(Game.LocalPlayer.Character.IsInAnyVehicle(false)) { Game.FrameRender += Speedometer; } while (true) { GameFiber.Yield(); } }); } private static void Speedometer(object sender, GraphicsEventArgs e) { Ped playerPed = Game.LocalPlayer.Character; Game.LogTrivial("Speedometer is being called."); Vehicle vehicle = playerPed.CurrentVehicle; Rectangle drawRect = new Rectangle(1, 250, 230, 117); e.Graphics.DrawRectangle(drawRect, Color.FromArgb(200, Color.Black)); e.Graphics.DrawText(vehicle.Speed.ToString(), "Arial Bold", 20.0f, new PointF(0f, 0f), Color.White, drawRect); } I have looked at the Rage Plugin hook documentation, but it does not really explain much on Drawing text. I have watched Albo1125's videos on C#, and have also looked at his source code on git hub for days, but I still have no idea what I'm doing wrong. Any help is much appreciated. Also will appreciate better places to learn more about Rage development. Thanks!!
  5. Recently had to re-install GTA V because of some problems and now I'm having difficulty with the pre-launcher. I'm having issues with the "connection to server lost" problem. This happens pretty much every minute. It gets t around 1.5 MB per second and then the connection gets lost and gets slow again. Repeat. I've tried deleting the .rpf part files as suggested on the rockstar forums, but unfortunately it hasn't really had much effect. Anyone have any other suggestions for workarounds or solutions to this problem, besides stopping/starting/closing/starting again the launcher? Apologies if this has been discussed already here(would love to be pointed to some links that also talk about this issue), but I can't find anything that works for me, unless I just have to deal with it. Appreciate the help!
  6. ​Yup, GTA V updated to the latest patch. And for some reason the performance is worse than previous patches. Guess I'll have to wait a little bit.
  7. I'm sure that you guys have had problems with the updates... But, am I the only one who has had no problems using the Native trainer/scripthook lately? I am using offline mode. I ran GTA with the latest update yesterday and a couple days ago, but have had none of the problems that has been said. I must be missing something, right?
  8. Been playing GTA V for a while now, and here is one thought I can take away from playing GTA V vs GTA IV. I can't tell you whether they're "better" than GTA IV, but man they're sure fun as hell to try to get away from, it's by far my favorite gameplay part in GTA V. In GTA IV you simply had to get away from the wanted circle for a few seconds and then you are done. That really made getting away from 6-stars impossible unless you have really good skills. And even when you were in hiding, the cops always knew the area where you are hiding, so you can't lose them just by hiding, which made it insanely difficult to get away from 6 stars(only the very good few can do it) In GTA V though, each cop has a field of view new, and you must not be seen by the cop for a while. It takes longer to lose them, which means you have to hide somewhere fast, because they know where your area is, but you just have to stay out of the line of sight for a while(It sounds more difficult than it really is, tbh). It's definitely easier to lose them in hiding, as it's easier when the helicopters come to help, because they too have a field of view, and if you manage to stay away from the cops' view and the helicopter's view for a while, you're free. Be warned though, the cops do search the area and there is a small chance that they will find you in a corner, unless you are hiding like say, behind a large vehicle, like a van. By far my favorite part of the cops is driving away from them. in GTA IV their goal was to wreck you at any cost. In GTA V, their new goal is to ram you. You let them, and your tires will lock, making it insanely difficult to turn the vehicle. What makes this part fun is, right when they're about to ram you, you make a sharp turn and then watching them crash into another vehicle, repeat. Even if it's just changing lanes on the road when they're about to ram you they'll swerve and lose position. It's definitely more fun than GTA IV cops to try to lose them. Thee cop cars have a lot more horsepower in this game, and I mean a LOT more horsepower, which I just really enjoy watching them gain on me, only to get so close to ram me, I change lanes on my motorcycle(life support basically, if you are on a motorcycle, when they ram you it'll take a while for your character to gain conscious, and they will shoot you until you're dead, so don't let them ram you on a motocycle!) and watch them skid on the ground and crash into another cop car. That's all I have to say. What's your guys's thoughts?,
  9. Guess I'm fresh out of luck then, thanks for the help anyway.
  10. Argh! The issues are back! Well, not the issues I had before, but now the trainer is freezing my car by default, and now there's no way of getting it unfreezed. The "unfreeze car" option doesn't work because I never froze it. Edit: Hold on a sec Edit #2: I am having the same type of issues as before, except they are different. I haven't pushed any button and now there's text at the bottom of the screen that says "No previous object spawned". Another issue: When I select an option from the main menu, for instance, Car options, it always goes back to the first page. re-installing didn't help. Edit #3: Yep, they're all coming back now, one GTA re-start after another. the car in reverse now, etc. edit #4: Most of the issues are fixed now, but I still have the menu navigation problems. Any suggestions? I'm using the latest patch.
  11. I think that fixed my issues. Thanks all.
  12. Tried it last night and it fixed my problems I was having. I'll keep trying today. Thanks guys.
  13. Thanks, I'll try this now.
  14. The one for desktop. Is there any other difference besides the key change?
  15. Tried that a few times and unfortunately no luck. I think it's just cuz I'm running GTA on a laptop and it might be different vs the desktop.
  16. Nope, just tried it again, and unfortunately that didn't do the trick either. The annoying stuff came back. Just tried uninstalling LCPDFR and that didn't work. Thought that perhaps a configuration had been conflicted between the trainer and FR but no, sadly. So right now I just have to hope that I have good luck every time the game loads so that I can enjoy the SNT the way I want to. Oh, and for those wondering, I use the Speed Up key, my favorite in the trainer, but I cannot edit the code in the trainer unfortunately. One more edit: Any chance the SNT is different when ran via the launchGTA.exe vs GTAIV.exe?
  17. Tried that last night, and it stopped the annoying stuff I described earlier. I'll keep trying later today and tomorrow to see if that does solve the problem. Thank you!
  18. Sorry it took so long to get back. I tried reducing settings, but alas, it didn't work. Sometimes when I enable keys my car drives in reverse, hitting and crashing into everything in my path and will never let me drive normally unless I disable the keys. Any other ideas or am I stuck because of the crap port that GTA is?
  19. Just curious which aiming style you prefer. I like the basic single dot at the center of the screen, I have better accuracy rather than the other option that tells you how much life the other person has. What do you guys prefer?
  20. I've never really been interested in GTA Online. I enjoy GTA because of the single player mode, I always find ways to enjoy GTA single-player even more without dealing all the assholes online.
  21. So I changed the settings for menu keys. That has helped stop the spawning. I'll try your suggestions soon.
  22. Just figured out what's causing the problem of the delay in the keyboard responsiveness in the SNT menu: it's not the SNT, but the game itself. Sometimes when the game loads when I want to turn right or left in the game it takes several seconds for it to respond to my keyboard. Anybody here know how to solve this? I'm using the latest patch, 1.0.7.0
  23. This has already been said, but another favorite quote of mine: "Put your dancin shoes on buddy we about to tango baby"
  24. I have an Asus laptop, I bought it specifically for gaming - it can handle pretty high-end gaming very well, but here's my specs: Intel Core i5 -3230M CPU @ 2.60 GHz Installed Memory: 8.00 GB System type: 64-bit OS, 64 bit based operating processor I have tried re-installing SNT but that hasn't worked, as it can still spawn peds whenever I press SNT enter. Thanks for the advice, I will try it soon.
  25. Probably already mentioned, but one of my favorites: "I'm that badass media that your mom warned you about!"

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.