Rup Ped-Spawner

Rup Ped-Spawner

$2.00

Add to Basket

Rup-Peds Resource
a11fb55f0bd9ec4f60a5dbcc46f5999341e0c2a6.pngfd199ae003ee49e9b5d7e14eb2e7256517603c4b.pngedba806437250a621a37d7086aa1b3c7deafcac0.png

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...

        },

    }

}