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.

ToastinYou

Members
  • Joined

  • Last visited

Everything posted by ToastinYou

  1. Oh wow, those are super useful. Thank you and thanks OP for asking about this, never knew about these natives :p
  2. Support - what to do if you encounter a bug or have problems: Watch the installation video for my modifications here. Use this tool: http://www.lcpdfr.com/files/file/9755-lspdfr-troubleshooter-by-albo1125/ Read the documentation file if you're having trouble getting a specific feature to work. Suggestions can be made here. If all else fails: Please leave a comment (not a review). Include your RAGEPluginHook.log file, located in your Grand Theft Auto V folder. Also, please provide an accurate description of what happened. This allows me to help you as fast as possible.
  3. ped.Tasks.FollowOffsetFromEntity or there is probably a native. Never really had a car chase another car so take what I say with a grain of salt, may be inaccurate.
  4. The thing here is it is very difficult to implement any sort of accurate clothing-description functions, but it is possible with some serious effort. Thanks for the suggestion and your contribution, maybe someone will make something like this! :)
  5. This is a global topic for people of the community to post callout idea's for callout developers to take into consideration when developing their plugins. Use this form to post callout idea's, in a reply to this topic, so it is easier for developers to gain information from:
  6. We are in the Grand Theft Auto V section. I code in C# and do not need any assistance, but thanks for the offer.
  7. Just want to update you guys, I am working on a Pepper Spray mod, but it's my second focus, my main focus is Toasty Callouts at the moment. Once Toasty Callouts is released I'll focus more on the Pepper Spray mod.
  8. You can do that yourself without plugin integration.
  9. Jesus Christ that is just a road distraction.
  10. //Set the strings to display as conversations and such. private readonly string[] _conversationLines = { "Blurb1.", "Blurb2.", "Blurb3." }; //Set our shit. private int _currentConversationLine, _conversationLineMax; private Ped _myPed1; private Ped Player = Game.LocalPlayer.Character; //Set our _currentConversationLine to 0, as arrays start at 0, not 1. _currentConversationLine = 0; //Get our max value from our string array so we don't go out of index (max). _conversationLineMax = _currentConversationLines.Length; //(put this in a loop) Check if player is at least 5 [cm?] away from _myPed1 and on foot and make sure that we aren't at the end of the string array and see if our ini files talk key is down. if (Player.Position.DistanceTo2D(_myPed1.Position) <= 5f && Player.IsOnFoot && _conversationLine != _conversationLineMax && (Game.IsKeyDownRightNow(Settings.TalkKeyModifier) || Settings.TalkKeyModifier == Keys.None) && Game.IsKeyDown(Settings.TalkKey)) { //Display the current string from the string array as a subtitle. Game.DisplaySubtitle(_conversationLines[_currentConversationLine]); //Add on to _currentConversationLine so the player does not get the same string over and over. _currentConversationLine++; } /* OUTPUT: Blurb1. Blurb2. Blurb3. */
  11. This is definitely doable with ELS, but may need to be coded in. Although, there may already be a way to do it through a vehicles ELS VCF files. I'd suggest you dig through some ELS VCF files and see if you can't come up with something.
  12. You could try this, I haven't really done any testing at all, but I don't recall if they drop the weapon on the ground or if it is just deleted. NativeFunction.Natives.SET_PED_DROPS_WEAPON(_ped);
  13. It was an april fools joke.
  14. Do some digging for a ped model with a ski mask on.. you aren't going to be spoon fed, do some research yourself. I gave you the list of ped models, find one with a ski mask.
  15. http://ragepluginhook.net/PedModels.aspx http://docs.ragepluginhook.net/html/DD2989FF.htm
  16. There is a mistake on a title under http://www.lcpdfr.com/notifications/options/ . "notifications__downloadsng_ReviewResponseNotification"
  17. http://ragepluginhook.net/Downloads.aspx
  18. LSPDFR and RPH do not support pirated versions of GTA V. I recommend you just update to the latest GTA V, as it is now fully supported by RPH and most, if not all, popular mods.
  19. More key binds = way more clutter.
  20. 1) Use BetterEMS. 2) Use KeepCalm. 3) No.
  21. Not giving you crap, but basically this does 2% of what Simple Trainer does?

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.