Exports
Server
exports.lvs_idmanager:create
exports.lvs_idmanager:create
Syntax
Parameters
playerId (number): The player's server ID.
typeId (string): One of the types defined in
Config.CardType
(located inconfig.lua
).extra (table | nil): Optional parameter used when
typeId
is'driver'
. It should contain the keyclass
, indicating the driver's license class.
Return Value
If
typeId
does not exist inConfig.CardType
, the function returnsnil
.On success, the function grants the player an item with the following metadata:
Example Usage
Notes
If
typeId
is not defined inConfig.CardType
, the function returnsnil
and does not execute any actions.If
typeId
is'driver'
, it is recommended to always provide a validextra.class
.Best Practice: Before granting the item, it is advisable to check whether the player can carry it to avoid inventory issues.
exports.lvs_idmanager:createFake
exports.lvs_idmanager:createFake
Syntax
Parameters
playerId (number): The player's server ID.
typeId (string): One of the types defined in
Config.CardType
(located inconfig.lua
).data (table): A table containing the following information:
Return Value
If
typeId
does not exist inConfig.CardType
, the function returnsnil
.On success, the function grants the player an item with the same metadata structure as
create
.
Example Usage
Notes
If
typeId
is not defined inConfig.CardType
, the function returnsnil
and does not execute any actions.If
typeId
is'driver'
, it is recommended to always provide a validextra.class
.Best Practice: Before granting the item, it is advisable to check whether the player can carry it to avoid inventory issues.
exports.lvs_idmanager:isFake
exports.lvs_idmanager:isFake
Syntax
Parameters
typeId (string): The type of document to check.
Return Value
Returns
true
if the document type is illegal (fake), otherwisefalse
.
Example Usage
exports.lvs_idmanager:isOwner
exports.lvs_idmanager:isOwner
Syntax
Parameters
playerId (number): The player's server ID.
metadata (table): The data of the identification item metadata.
Return Value
Returns
true
if the identification belongs to the specifiedplayerId
, otherwisefalse
.
Example Usage
Last updated