ChardScript For Loops
ChardScript For Loops
for i=0 to 5 then
echo(i)
endCustom increment For Loops
for i=0 to 5 step 2.5 then
echo(i)
endLast updated
for i=0 to 5 then
echo(i)
endfor i=0 to 5 step 2.5 then
echo(i)
endLast updated