Spawn (New Players)

Customize your Spawn events after a new character is created

Starting Apartments

If your server uses starting apartments:

config.lua:

config.Starting_Apartments = true -- requires an apartment resource that supports this feature

Insert your spawn events in the following events located in config.lua:

  1. When a new player is created:

Triggers on the client
RegisterNetEvent('solos-multicharacter:client:Starting-Apartment-Event', function(newData)
    
    INSERT SPAWN EVENT THAT ALLOWS PLAYERS TO CHOOSE OR SPAWN IN THEIR APARTMENT

end)

No Starting Apartments

  1. When a new player is created:

Triggers on the client
RegisterNetEvent('solos-multicharacter:client:New-SpawnEvent', function(data)

    INSERT EVENT OR LOGIC TO SPAWN NEW CHARACTER AND BEGIN CHARACTER CREATION
    
end)

Last updated