Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

How to split license id fivem

function split(playerId)
	for k, v in ipairs(GetPlayerIdentifiers(playerId)) do
		if string.match(v, "license:") then
			local identifier = string.gsub(v, "license:", "");
			return identifier;
		end;
	end;
end;
 
PREVIOUS NEXT
Tagged: #How #split #license #id #fivem
ADD COMMENT
Topic
Name
5+3 =