Releases: fivepunch/gtao-multicharacter
Releases · fivepunch/gtao-multicharacter
v1.2.0
- Use native HTML input for unsupported input types in the character creation form.
For those asking for date of birth input you can now do the following:
function QBClient:getCreateCharacterFormStructure()
return {
{
type = 'text',
name = 'firstname',
label = 'First name',
},
{
type = 'text',
name = 'lastname',
label = 'Last name',
},
{
type = 'select',
name = 'gender',
label = 'Gender',
options = {
{ value = 0, label = 'Male' },
{ value = 1, label = 'Female' },
},
},
{
type = 'date',
name = 'birthdate',
label = 'Date of birth',
},
}
end
v1.1.0
QB-Core
- Added
fivem-appearance
https://github.com/pedr0fontoura/fivem-appearance support. You should use the default QB-Core database schema.
v1.0.1
QB-Core
- Prevents triggering the logout event if the player isn't logged in. This fixes errors in
qb-vehicleshop
,ps-mdt
and other resources that don't verify if the character actually exists before executing the relevant logout code.
Thanks to Mobius1#3708 for pointing it out!
v1.0.0
tweak: more ESX creation adjusts