hi i bought this script
i use qb core
the installation is
------ EXPORTS ------
– Exports for the OTEXOUniqueID resource
exports.OTEXOUniqueID:getPermIdFromId() – Get permid from player id
exports.OTEXOUniqueID:getIdFromPermId() – Get player id from permid
– Example of usage:
RegisterCommand(“fetchTempId”, function(source, args)
local id = exports.OTEXOUniqueID:getIdFromPermId(tonumber(args[1]))
if id then
print((“id temp : %s”):format(id))
else
print((“[^1ERROR^0] ^4%i^0 n’est pas en ligne”):format(args[1]))
end
end)
RegisterCommand(“fetchPermId”, function(source, args)
local permid = exports.OTEXOUniqueID:getPermIdFromId(tonumber(args[1]))
if permid then
print((“permid : %s”):format(permid))
else
print((“[^1ERROR^0] ^4%i^0 n’est pas en ligne”):format(args[1]))
end
end)
how th install it?