The WaitMilliseconds
function waits (blocks) for the given number of milliseconds. The function returns false
if no arguments are passed.
bool: WaitMilliseconds(int milliseconds)
var result = WaitMilliseconds(); // result: false var result = WaitMilliseconds(2000); // waits for 2000 milliseconds (=2 seconds)