Rup-Peds Resource


Support: https://discord.gg/shy3Y5TJS2
Overview
Rup-Peds is a FiveM resource designed to spawn NPCs (Non-Player Characters) or peds at specified locations within the game world. These NPCs can perform various actions or serve as ambient elements within the game environment.
Features
- Spawns NPCs at predetermined locations.
- Allows customization of NPC models, positions, scenarios, and blip configurations.
- Provides a comprehensive setup for creating a lively game environment.
Usage
1. Ensure the resource is properly installed in your FiveM server's resources folder.
2. Configure the `Config.peds` table in the Lua file to define NPC models, positions, scenarios, and blip preferences.
3. Start the resource in your FiveM server.
## Configuration (Config.lua)
- Defines the NPC configurations including model, coordinates, scenarios, and blip settings.
Example Config:
```lua
Config = {
peds = {
[1] = {
model = 'u_m_m_bankman',
coords = vector4(253.18, 216.46, 106.28, 339.39),
scenario = 'PROP_HUMAN_STAND_IMPATIENT',
blip = false,
scale = '0.8',
sprite = '1',
color = '1',
shortrange = true,
compstrings = 'Peds'
},
[2] = {
model = 'ig_barry',
coords = vector4(313.84, -280.58, 54.16, 338.31),
scenario = 'PROP_HUMAN_STAND_IMPATIENT',
blip = false,
scale = '0.8',
sprite = '1',
color = '1',
shortrange = true,
compstrings = 'Peds'
},
[3] = {
-- Include additional ped configurations...
},
}
}