Getproperty

From SA-MP Wiki

Jump to: navigation, search

getproperty

Image:Farm-Fresh text lowercase.png Note: This function name starts with a lowercase letter.


Description:

Get a specific property from the memory, the string is returned as a packed string!
Parameters:
(id=0, const name[]="", value=cellmin, string[]="")
idThe virtual machine to use, you should keep this zero.
name[]The property's name, you should keep this "".
valueThe property's unique ID, Use the hash-function to calculate it from a string.
string[]The variable to store the result in, passed by reference.


Return Values:

The value of a property when the name is passed in; fills in the string argument when the value is passed in. If the property does not exist, this function returns zero.


Example Usage:

new value[16];
 
getproperty(0, "", 123984334, value);
 
strunpack(value, value, sizeof(value));
 
print(value);


Related Functions

The following functions may be useful, as they are related to this function in one way or another.

Personal tools
Navigation
Toolbox