Thread: command?
View Single Post
  #2  
Old 01-05-2004, 09:46 PM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
for (a; b; c) d;
First executes a; then, until b is false, executes d and c.
for (i = 0; i < 5; i ++) { playerx = i; sleep 0.5; }
Reply With Quote