🎉 Character is released. Read more →
Paid Scripts
Character
Configuration
Shared

Character Shared Configuration

Character Slots

Defines how many character slots a player has.

slot = 5,

Spawn Selector

Set to false if you are using a spawn selector script.

useSpawn = true,

Starter Apartment

Controls whether new players start with an apartment.

  • Set useStarterApartement = true to give new players a starter apartment.
  • Set useStarterApartement = false to disable it.
useStarterApartement = false,

To force new players to pick a starter apartment, enable:

starterApartmentRequired = true,

Starter Configuration

Controls the initial items and spawn settings for new players.

  • items: List of items a new player starts with.
  • firstSpawn: If true, the player will receive the starter items on their first spawn.
  • spawnPed: If true, a ped model will be spawned.
  • coords: Ped Location (x, y, z, heading).
  • model: Ped model
starter = {
    items = {
        { name = 'water',  count = 10 },
        { name = 'burger', count = 10 },
        { name = 'phone',  count = 1 },
    },
 
    firstSpawn = true, 
    spawnPed = false,  
    coords = vec4(-1040.3226, -2731.0544, 19.2144, 150.2547), 
    model = 'a_m_m_hasjew_01',
},
Last updated on