setRuleValue | Multi Theft Auto: Wiki Skip to content

setRuleValue

Client-side
Server-side
Shared

Pair: getRuleValue

This function sets a rule value that can be viewed by server browsers.

Syntax

bool setRuleValue ( string key, string value )
Required Arguments
  • key: The name of the rule (Max 200 characters).
  • value: The value you wish to set for the rule (Max 200 characters).

Returns

  • bool: result

Returns true if the rule value was set, false if invalid arguments were specified.

Code Examples

server

This example shows how you could set a rule that shows that your script is running on the server.

setRuleValue("myScriptRunning", "yes")