Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

This is an old revision of the document!


RND()

Syntax:

rnd!() | rnd() | rnd%()

The RND() function returns a pseudo-random number. Depending on the requested type, the return value can be:

  • a byte between 0 and 255
  • an integer between -32768 and +32767
  • a float between 0 and 1

Example:

print "we'll flip a coin"
if rnd() < 0 then print "heads" else print "tails"