User Tools

Site Tools


crpl:docs:else

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:else [2015/03/19 18:41] – [else] Example wasn't correct + extra explenation TheDutchercrpl:docs:else [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-~~DISCUSSION~~ 
 <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#flow_control|Flow Control]] <- [[crpl:crplreference| CRPL reference]] <- [[crpl:crplreference#flow_control|Flow Control]]
 =====  else  ===== =====  else  =====
Line 11: Line 10:
 === Examples === === Examples ===
 <code> <code>
-# Pick a random number between 0(inclusive) and 100(exclusive). If the random number is less than 95 emit  +# Pick a random integer between 0(inclusive) and 100(exclusive). 
-10 Creeper, otherwise emit 100 Creeper +If the random number is less than 95 emit 10 Creeper, 
 +otherwise emit 100 Creeper.
 0 100 RandInt 95 lt if  0 100 RandInt 95 lt if 
- CurrentCoords 10 SetCreeper + CurrentCoords 10 AddCreeper 
  else   else 
- CurrentCoords 100 SetCreeper + CurrentCoords 100 AddCreeper 
  endif  endif
 </code>  </code> 
  
crpl/docs/else.1426790476.txt.gz · Last modified: 2025/02/14 14:56 (external edit)