--  LUA  StartFindExternalKvp

0x8F2EECC3

-- START_FIND_EXTERNAL_KVP
local retval --[[ integer ]] =
	StartFindExternalKvp(
		resourceName --[[ string ]], 
		prefix --[[ string ]]
	)

Parameters:

    resourceName:

    The resource to try finding the key/values for
    prefix:

    A prefix match

Returns:

A KVP find handle to use with FIND_KVP and close with END_FIND_KVP

Equivalent of START_FIND_KVP, but for another resource than the current one.

Examples:

    Lua

local kvpHandle = StartFindExternalKvp('drugs', 'mollis:')



if kvpHandle ~= -1 then 

	local key

	

	repeat

		key = FindKvp(kvpHandle)



		if key then

			print(('%s: %s'):format(key, GetResourceKvpString(key)))

		end

	until key



	EndFindKvp(kvpHandle)

end
 
 

Parameters:

header:

sentence.

header:

sentence.

header:

sentence.

Returns:

sentence.

Summary

sentence.

Example

---  
    


Additional natives used in this example, or natives commonly used with this native.

NATIVE, NATIVE

Common Errors or Problems

Problem: sentence.

Problem: sentence.

Problem: sentence.

Credits and Disclaimers

The base of this data was taken from the redm/cfx fivem/rdr docs, and vespura. We have been saving and making notes for two years now, and are now adding them to our site for everyone to use. We will be modifying the notes as needed, and building tutorials around the data so these pages will change as we work on it. This is a manual process, not an automated one, so updates will occur as we have time, the priority is releasing resources. Thanks for your patience.

Was the documentation useful?

Related Examples and Posts

By MK

Dragon Codes