Create Advanced Character
This endpoint allows you to create a character with miscellaneous information.
Last updated
This endpoint allows you to create a character with miscellaneous information.
Last updated
exports["ImperialCAD"]:NewCharacterAdvanced({
Fname = "Jane",
Mname = "A",
Lname = "Smith",
Birthdate = "1990-07-15",
gender = "Female",
race = "Hispanic",
hairC = "Blonde",
eyeC = "Green",
height = "5'7",
weight = "145",
postal = "404",
address = "555 Clinton Ave",
city = "Los Santos",
county = "Blaine",
state = "San Andreas",
phonenum = "5558881212",
licensedetails = {
hasBoatLic = false,
hasCDL = true,
CDLNumber = "CDL5678",
CDLStatus = "Valid",
hasDL = true,
DLNumber = "D7894561",
DLStatus = "Valid",
hasFirearmsCertification = true,
hasFishLic = true,
hasHuntLic = true
},
misc = {
missing = false
}
}, function(success, res)
if success then print("Advanced character created!") else print("Failed:", res) end
end){
"status": "success",
"response": {
"ssn": 684699354,
"DLN": "D7894561",
"age": 35,
"name": "Jane A Smith"
}
}