Skip to content

Releases: fivepunch/gtao-multicharacter

v1.2.0

22 Apr 18:55
Compare
Choose a tag to compare
  • 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

27 Mar 19:30
Compare
Choose a tag to compare

QB-Core

v1.0.1

23 Mar 17:23
Compare
Choose a tag to compare

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

21 Mar 12:44
Compare
Choose a tag to compare
tweak: more ESX creation adjusts