crpl:docs:setwall

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
crpl:docs:setwall [2014/10/01 19:02] – external edit 127.0.0.1crpl:docs:setwall [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-~~DISCUSSION~~+
 <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#terrain_and_wall_commands|Terrain and Wall Commands]] <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#terrain_and_wall_commands|Terrain and Wall Commands]]
 =====  SetWall  ===== =====  SetWall  =====
Line 11: Line 11:
 The amount must be in the range of 0 to 1 where 0 means no wall, and 1 means a full health wall. The amount must be in the range of 0 to 1 where 0 means no wall, and 1 means a full health wall.
 === Examples === === Examples ===
 +Create a rectangle of permanent walls that can't ever be destroyed by Creeper, by repairing them every 9 seconds.
 +
 +This example will create a square of walls, with the first corner being at X1,Y1(32,32) and the second corner at X2,Y2(64, 64). As these values are [[crpl:docs:define|Input Variables]], you can change them in the editor.
 <code> <code>
-#Lets you make a wall at x,y coords you can define on the CORE with full hp +$wallX1:32 
-$wallX:0 +$wallY1:32 
-$wallY:0 +$wallX2:64 
-SetWall(<-wallX <-wallY 1)+$wallY2:64 
 + 
 +GetTimer0 eq0 if 
 + 270 SetTimer0 
 + 
 + <-wallY2 <-wallY1 do 
 + <-wallX2 <-wallX1 do 
 + I J 1 SetWall 
 + loop 
 + loop 
 +endif 
 +</code> 
 + 
 +Spawn walls under this unit based on its cell width and cell height. Repair these walls every 9 seconds, effectively making them Crazonium (invincible) walls. 
 +<code> 
 +GetTimer0 eq0 if 
 + 270 SetTimer0 
 + 
 + CurrentX ->x 
 + CurrentY ->y 
 + 
 + Self CONST_CELLWIDTH GetUnitAttribute ->cellWidth 
 + Self CONST_CELLHEIGHT GetUnitAttribute ->cellHeight 
 + 
 + <-cellWidth 2 div ->cellWidthRadius 
 + <-cellHeight 2 div ->cellHeightRadius 
 + 
 + <-y <-cellHeightRadius add add <-y <-cellHeightRadius sub do 
 + <-x <-cellWidthRadius add 1 add <-x <-cellWidthRadius sub do 
 + I J 1 SetWall 
 + loop 
 + loop 
 +endif
 </code>  </code> 
  
crpl/docs/setwall.1412190170.txt.gz · Last modified: 2025/02/14 14:56 (external edit)