Testing Tags

This commit is contained in:
2026-06-26 19:12:03 +10:00
parent 4c6ccf2cb1
commit 4a71ad45c0
17 changed files with 1455 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
Author: Bryan "Tonic" Boardwine
Description:
Updates the players terraingrid when called.
*/
private "_type";
_type = param [0,"",[""]];
if(_type == "") exitWith {};
switch (_type) do {
case "none": {if(isNil "tawvd_disablenone") then {setTerrainGrid 50;};};
case "low": {setTerrainGrid 30;};
case "norm": {setTerrainGrid 12.5;};
case "high": {setTerrainGrid 3.125;};
};