View Single Post
  #11  
Old 09-29-2003, 12:25 AM
protagonist protagonist is offline
Banned
protagonist's Avatar
Join Date: May 2003
Location: CAW
Posts: 5,586
protagonist is on a distinguished road
Send a message via AIM to protagonist Send a message via MSN to protagonist
Quote:
Originally posted by zs0
Stupid advanced scripting :/..
It's not very advanced.
It works like this:

for(a;b;c){ stuff (optional); }


a. The variable, and what you want it to start as (for example a = 0)
b. The condition that has to happen when you want c to happen.
c. The change to a variable that you want to happen (NOTE: Doesn't have to be the same variable as a, but be careful not to infinite for loop. In other words, where the optional place is you have to make it catch the variable at some point and stop the for loop. Otherwise you will crash your graal).
Reply With Quote