|
Usage: |
|
/Set userid variable [+/-]amount |
|
Description: |
| |
You can use the set comamnd to set various flags on a player. If you
specify a plus or minus sign before the amount the flag will be adjusted
by that amount instead of being set.
|
|
|
Variable
Options: |
|
| Option |
Range |
Default |
Description |
| health |
0-255 |
|
The current health of the player |
| armor |
0-255 |
|
The current armor of the player |
|
|
Example: |
|
| /set example |
# This will create an admin command to increase their health by 1 and set # their armor to 0
on acmd_monkey cmd { /set $(pz) health +1; /set $(pz) armor 0; };
|
|