Namespace: CFXAPI set: shared
GET_RESOURCE_KVP_STRING
// GetResourceKvpString
char* GET_RESOURCE_KVP_STRING(char* key);
Returns: The string value stored under the specified key, or nil/null if not found.
A getter for SET_RESOURCE_KVP.
Examples:
local kvpValue = GetResourceKvpString('codfish')
if kvpValue then
-- do something!
end