Spawn (New Players)
Customize your Spawn events after a new character is created
Starting Apartments
If your server uses starting apartments:
config.Starting_Apartments = true -- requires an apartment resource that supports this feature
Insert your spawn events in the following events located in config.lua
:
When a new player is created:
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
When a new player is created:
RegisterNetEvent('solos-multicharacter:client:New-SpawnEvent', function(data)
INSERT EVENT OR LOGIC TO SPAWN NEW CHARACTER AND BEGIN CHARACTER CREATION
end)
Last updated