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.

epicmrjuan

Members
  • Joined

  • Last visited

Everything posted by epicmrjuan

  1. Hey! I see that you only check if fighters 3 or 4 exists, but fighters 1 and 2 might not be available right away when process starts or they got despawned. So every logic with any entities in game should use the Exists() function. Also if you add your pdb file together with your dll file you'll get more detailed error messages, you will also see on what line the exception was thrown and a little stack trace.
  2. Without seeings any code it's hard to determine what went wrong. But is does look like a loop.
  3. About Epic events is a plugin that spawn random events during your patrol around los Santos. In this topic I will announce new features, add teasers and gather more ideas. Plans for v0.2 Since v0.1 was a bit buggy I hope to change that in v0.2. I’m also adding new features in v0.2, like a new event, closer interaction with peds, more possibilities with existing events, expanding existing events all over the map, a settings file and better communication in game on where an event is happening. Changes so far (v0.2) major - Using rage native UI for interaction, and event menu. - Code rewrite. - Settings file. - NEW EVENT: Shooting. (global event, no set posistion) - Menu in game. Minor - Expanded locations of events. Bugs Did you encounter any bugs while playing? report them here: https://forms.gle/3GDMRAP9Lzmqijvh6 Download
  4. Random rand = new Random(); Vector3[] spawnpoints = new Vector3[] { new Vector3(0,0,0), new Vector3(0,1,0), new Vector3(1,0,1) }; Vector3 spawnpoint = spawnpoints[rand.Next(0, spawnpoints.Length)]; Where spawnpoint becomes a random vecter3 from the array.
  5. Could you use the bug report when it crashes? that way i can fix them. https://forms.gle/3GDMRAP9Lzmqijvh6
  6. Hey! As there are only two event right now it can either be some homeless guys that have broken windows of cars. The alarm of the cars will go off, so you can listen for those. The other event is a drug deal, there will be a suspicious car with it lights on. Depending on the sitiuation the peds can shoot at each other, run away, shoot at you or stay. Then you can investigate more using stop the ped.
  7. The settings file will be added in the next update.
  8. Yes, i'm planning locations for the rest of the world. All the locations need to be hand picked to prevent weird things, so it takes a bit longer to do.
    • 26,108 downloads
    • Version 0.1.7.20
    Epic events v0.1.7.20 alpha (The current version might not reflect the final version) Note When recording please note that epic events is in a public alpha stage. The public alpha is meant to discover bugs in the core of the event engine. New events will be added periodically, however the core event engine is the priority right now. Requirements Stop the ped. (download) Ultimate backup. (download) Installation Read the readme. Drag the plugins folder in your gta main directory. Features: Random events will hapen all around the city. Homeless people can disturb an area. A drug deal can take place. A small blip shows a place of interest. Every event has a couple of ways it can end! Forum post, for updates and support:
  9. Hey, I just jused photoshop to get coords, then just added the values that i used for posistioning the background, however this method wil not scale well. So use what nonameset said!
  10. As NoNameSet said, when you draw somthing last it will come on top. On the second part of the question, i would suggest make textures for every number, there are most likley better options. In the picture below i used textures for the numbers. Also note that this is usings wraithRS textures, so these can not be used ofcourse!
  11. Images added to a gallery album owned by epicmrjuan in GTA V Galleries
    Album for my upcomming plugin.
  12. epicmrjuan posted a gallery image in GTA V Galleries
  13. Good luck! Btw if you didn't know here are the rage api docs https://docs.ragepluginhook.net/ and at the bottom of albos guide there are most of LSPDFR's functions https://www.lcpdfr.com/applications/core/interface/file/attachment.php?id=48435
  14. Not knowing what your call is about, i have to assume that you want to tell the player where the suspect is when there is no pursuit. So when you create your persuit you could call SuspectBlip.Delete(); to remove it. When you start a pursuit with lspdfr, it will create a red blip, then when you lose sight it will make it blink and after x seconds it will dispear and you have to search for the ped. Also i might not me understanding you fully, but you can blame that on me. Please let me know if there are any other problems!
  15. I think he creates a blip on a suspect, then we he goes into pursuit and loses sight of the ped the blip doesn't go away, and he wants to know how to get the var in the lspdfr api that says that suspect is lost and that they are searching. I don't know why you would want to keep a blip on a suspect when he goes into pursuit, why don't just delete it when the pursuit is created and let lspdfr manage it.
  16. Uhmm, do this when you want to spawn it at your posistion, use the code you wrote when you want to change a posistion from a spawned ped. You clould store the vector and heading together by using a struct. Vector3 spawnpoint = new vector3(541,5461,215); Ped p = new Ped(spawnpoint, 8); Bye!
  17. Hey, when you spawn a ped you can use: public Ped( Vector3 position, float heading ) Example: Ped p = new Ped(new vector3(1,1,1),7) //This will spawn a ped at 1,1,1 and with a heading of 7 When you have already spawned it and want to change it's location use: Ped.Posistion I hope this helps! let me know if there is anything else i can do! Used pages: Rage docs, ped constructor
  18. Hey, I think if you create some fancy textures in photoshop or somthing, you can call: public void DrawTexture( Texture texture, RectangleF rectangle ) To draw your texture. Then add some text using Graphics.DrawText. I hope this helps, let me know if you need any further assistance. sources: Draw text Draw texture The graphics class

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.