Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/sfoyston/public_html/TextStorm/Wiki/inc/init.php on line 560

Warning: Cannot modify header information - headers already sent by (output started at /home/sfoyston/public_html/TextStorm/Wiki/inc/init.php:560) in /home/sfoyston/public_html/TextStorm/Wiki/inc/auth.php on line 495

Warning: Cannot modify header information - headers already sent by (output started at /home/sfoyston/public_html/TextStorm/Wiki/inc/init.php:560) in /home/sfoyston/public_html/TextStorm/Wiki/inc/common.php on line 1992

Warning: Cannot modify header information - headers already sent by (output started at /home/sfoyston/public_html/TextStorm/Wiki/inc/init.php:560) in /home/sfoyston/public_html/TextStorm/Wiki/inc/actions.php on line 210
constants - TextStorm Wiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
constants [2016/12/05 22:29]
textstorm [TextStorm Constants]
constants [2016/12/05 22:38]
textstorm
Line 5: Line 5:
 ===== Booleans ===== ===== Booleans =====
 ==== ADMIN ==== ==== ADMIN ====
 +You can use the following to determine whether a user is an Administrator or not:
 +
 +<code php>
 +if (ADMIN) {}
 +</​code>​
 ==== CHESTSON ==== ==== CHESTSON ====
 +You can use the following to determine if the game has chests enabled:
 +<code php>
 +if (CHESTSON) {}
 +</​code>​
 ==== HASWEAPON ==== ==== HASWEAPON ====
 +You can use the following to determine if the player has a weapon equipped:
 +<code php>
 +if (HASWEAPON) {}
 +</​code>​
 ==== INVEHICLE ==== ==== INVEHICLE ====
 +You can use the following to determine if the player is in a vehicle:
 +<code php>
 +if (INVEHICLE) {}
 +</​code>​
 ==== VEHICLESON ==== ==== VEHICLESON ====
-==== VEHICLEDAMAGEON ​==== +You can use the following to determine if the game has vehicles enabled: 
-==== VEHICLESPEEDON ====+<code php> 
 +if (VEHICLESON) {} 
 +</​code>​ 
 +=== VEHICLEDAMAGEON === 
 +You can use the following to determine if the game uses vehicle damage attributes:​ 
 +<code php> 
 +if (VEHICLEDAMAGEON) {} 
 +</​code>​ 
 +=== VEHICLESPEEDON === 
 +You can use the following to determine if the game uses the vehicle speed attribute:​ 
 +<code php> 
 +if (VEHICLESPEEDON) {} 
 +</​code>​
 ==== WEAPONSON ==== ==== WEAPONSON ====
 +You can use the following to determine if the game has weapons enabled: 
 +<code php> 
 +if (WEAPONSON) {} 
 +</​code>​
 ===== Values ===== ===== Values =====
 ==== CHESTTITLE ==== ==== CHESTTITLE ====

QR Code
QR Code constants (generated for current page)