Create Character
This endpoint allows you to create a character.
Last updated
This endpoint allows you to create a character.
Last updated
exports["ImperialCAD"]:NewCharacter({
users_discordID = "123456789012345678",
Fname = "John",
Mname = "T",
Lname = "Doe",
Birthdate = "1995-03-21",
gender = "Male",
race = "White",
hairC = "Black",
eyeC = "Brown",
height = "6'1",
weight = "190",
postal = "202",
address = "124 Grove St",
city = "Los Santos",
county = "Los Santos",
phonenum = "5553331234",
dlstatus = "Valid",
citizenid = "JD321"
}, function(success, res)
if success then print("Civilian created!") else print("Failed:", res) end
end){
"status": "success",
"response": {
"ssn": 684699354,
"DLN": "D78239341",
"age": 30,
"name": "John T Doe"
}
}2