Ifrnd

From EDukeWiki
Revision as of 13:38, 6 June 2012 by Helixhorned (talk | contribs) (ifrnd: correct probabilities)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ifrnd <value> { do something } else { do something else }

An if condition stating the probability of it 'doin somethin!' in this case.

A <value> greater or equal to 255 corresponds to a 100% probability that the first block is taken. With a <value> of -1, the "else" block is taken every time. (A <value> of 0 means taking the "if" block once out of 256 on average).

This command must only be used in synchronised code or you will cause desyncs. for display code use displayrand instead.