Tynopia_Identity - a unique way of registering
Create character outside the game
Tynopia_Identity provides a never seen registering experience for you and your playerbase.
- You can enter all needed details before even joining the server!
- No Performance impact (0.00ms resmon)!
- No requirements!
- Works flawless with QB/ESX/Standalone!
- Config is accessible and offers many options!
- Asset is secured by cfx-escrow!
- No Client-Side!
- Secured (no chance for cheaters via modemenu)!
- No NUI / Menu needed!
- Save performance by replacing your old identity script!
- Multiple language support (locales can be changed)
Preview Config - / - config.lua:
Config = {}
Config["Language"] = "en-EN"
Config["image"] = "https://cdn.discordapp.com/attachments/887756491468206080/1013622312119042178/logo.gif"
Config["firstname"] = {
visible = true,
required = true,
minLength = 2,
maxLength = 50
}
Config["lastname"] = {
visible = true,
required = true,
minLength = 2,
maxLength = 50
}
Config["day"] = {
visible = true,
required = true
}
Config["month"] = {
visible = true,
required = true
}
Config["year"] = {
visible = true,
required = true,
min = 1960
}
Config["height"] = {
visible = true,
required = true,
min = 180,
max = 200
}
Config["GetIdentifier"] = function (source, identifiers, callback)
callback(identifiers.license:gsub("license:", ""))
end
Config["SelectFromDatabase"] = function(source, identifiers, identifier, callback)
MySQL.single('SELECT * FROM users WHERE identifier = ?', {
identifier
}, function(result)
callback(result)
end)
end
Config["InsertIntoDatabase"] = function (identifier)
MySQL.prepare("INSERT INTO `users` SET `accounts` = ?, `group` = ?, `identifier` = ?", {
json.encode({
bank = 50000
}),
"user",
identifier
})
end
Config["UpdateIdentifier"] = function (data, identifier)
MySQL.update.await('UPDATE users SET firstname = ?, lastname = ?, dateofbirth = ?, height = ?, sex = ? WHERE identifier = ?', {
data.firstname,
data.lastname,
data.year .. "/" .. data.month .. "/" .. data.day,
data.height,
data.sex,
identifier
})
end
If you are happy with our product, please leave a feedback, if not, dont hesitate to ask for support and we will find a solution together.
Product will be updated if needed or suggested.
Buy: Click here
Store: Click here
| Code is accessible | No |
| Subscription-based | No |
| Lines (approximately) | ~800 |
| Requirements | Standalone |
| Support | Yes |
