Getproperty
From SA-MP Wiki
getproperty
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[]="")
id | The virtual machine to use, you should keep this zero. |
name[] | The property's name, you should keep this "". |
value | The 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.
- Setproperty: Set a property.
- Deleteproperty: Delete a property.
- Existproperty: Check if a property exists.