Skip to main content

setproperty

warning

This function starts with lowercase letter.

คำอธิบาย

Add a new property or change an existing property.

NameDescription
idThe 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.
valueThe 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.

ส่งคืน

This function does not return any specific values.

ตัวอย่าง

setproperty(.name = "MyInteger", .value = 42);

new value = getproperty(.name = "MyInteger");
printf("Value that was stored is: %d", value);
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 :)
setproperty(.value = 123984334, .string = ":)");

// The rest is the same as above.

ฟังก์ชั่นที่เกี่ยวข้องกัน

  • Getproperty: Get the value of a property.
  • Deleteproperty: Delete a property.
  • Existproperty: Check if a property exists.