Workshop.codes
Create

Modify Player Variable Last updated November 26, 2024

Description

Modifies the value of a player variable, which is a variable that belongs to a specific player.

Snippet

Modify Player Variable(Event Player, variableName, Add, 0);

Properties

Returns: Void
Parameters: Player, Variable, Operation, Value

Player
Type: Player | Array (Player), Default: Event Player
The player whose variable will be modified. If multiple players are provided, each of their variables will be set.

Variable
Type: Player Variable, Default: A
Specifies which of the player's variables to modify.

Operation
Type: Operation, Default: Add
The way in which the variable's value will be changed. Options include standard arithmetic operations as well as array operations for appending and removing values.

Value
Type: Object | Array, Default: Number
The value used for the modification. For arithmetic operations, this is the second of the two operands, with the other being the variable's existing value. For array operations, this is the value to append or remove.

Workshop.codes