This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:docs:getvoid [2014/10/01 19:02] – external edit 127.0.0.1 | crpl:docs:getvoid [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ~~DISCUSSION~~ | + | |
<- [[crpl: | <- [[crpl: | ||
===== GetVoid | ===== GetVoid | ||
Line 8: | Line 8: | ||
=== Description === | === Description === | ||
- | If the terrain cell is void space a 1 is pushed to the stack, 0 otherwise. | + | If the terrain cell is void space or out of bounds, |
=== Examples === | === Examples === | ||
- | < | + | Every 2 seconds, find a random non-void coordinate on the map and add 8 creeper on it: |
+ | < | ||
+ | GetTimer0 eq0 if | ||
+ | 60 SetTimer0 | ||
+ | |||
+ | 1 -> | ||
+ | |||
+ | while <-isVoid repeat | ||
+ | RandCoords ->y ->x | ||
+ | <-x <-y GetVoid -> | ||
+ | |||
+ | < | ||
+ | <-x <-y 8 AddCreeper | ||
+ | endif | ||
+ | endwhile | ||
+ | endif | ||
+ | </ | ||