Setproperty
From SA-MP Wiki
(Redirected from Function:setproperty)
setproperty
Note: This function name starts with a lowercase letter. |
Description:
Add a new property or change an existing property.
(id=0, const name[]="", value=cellmin, const string[]="")
id | The virtual machine to use, you should keep this zero. |
name[] | Used in combination with value when storing integers; don't use this if you want to store a string. |
value | The integer value to store or the property's unique ID if storing a string. Use the hash-function to calculate it from a string. |
string[] | The value of the property, as a string. Don't use this if you want to store an integer. |
Return Values:
This function does not return any specific values.
Storing Integers
setproperty(.name = "MyInteger", .value = 42); new value = getproperty(.name = "MyInteger"); printf("Value that was stored is: %d", value);
Storing Strings
setproperty(0, "", 123984334, ":)"); new value[4]; getproperty(0, "", 123984334, value); strunpack(value, value, sizeof(value)); // we need to unpack the string first print(value); //should print :)
Or... seeing as all the parameters are optional, a piece of code like this similar:
setproperty(.value = 123984334, .string = ":)"); // The rest is the same as above.
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- Getproperty: Get the value of a property.
- Deleteproperty: Delete a property.
- Existproperty: Check if a property exists.