Character
Server events that are in some way related to the character aspects.
On character creation
This event is triggered when a user has created a new character.
The server id of the user who is connecting to the server.
The character data of the new character the user has created. The table layout is the following...
.GET_FIRSTNAME.GET_MIDDLENAME.GET_LASTNAME.GET_DAY.GET_MONTH.GET_YEAR.GET_GENDER.GET_PHONE_NUMBER.GET_CHARACTER_TABLE.GET_INVENTORY_TABLE
AddEventHandler('__WOSA:CHARACTER_CREATED', function(playerID, characterData)
end)On character load
This event is triggered when a user is loading in a character.
The server id of the user who is connecting to the server.
The character data of the new character the user has created. The table layout is the following...
.GET_FIRSTNAME.GET_MIDDLENAME.GET_LASTNAME.GET_DAY.GET_MONTH.GET_YEAR.GET_GENDER.GET_PHONE_NUMBER.GET_CHARACTER_TABLE.GET_INVENTORY_TABLE
AddEventHandler('__WOSA:CHARACTER_LOADED', function(playerID, characterData)
end)On character removal
This event is triggered when a user is removing a character.
The server id of the user who is connecting to the server.
The character data of the new character the user has created. The table layout is the following...
.GET_FIRSTNAME.GET_MIDDLENAME.GET_LASTNAME.GET_DAY.GET_MONTH.GET_YEAR.GET_GENDER.GET_PHONE_NUMBER.GET_CHARACTER_TABLE.GET_INVENTORY_TABLE
Last updated
Was this helpful?