HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

for loop and regions

07-27-2004, 07:22 AM#1
TheXenocide
Is there a way to cycle through regions using a for loop using only the GUI triggers?
07-27-2004, 08:49 AM#2
Xinlitik
Map init:

set Someregion = variableregion[1]
set someotherregion = variable region[2]

Your trigger:

For each integer a from 1 to 2 do
Something to variable region[integer a]
07-27-2004, 09:10 AM#3
TheXenocide
hey that worked well. Thank you. ^_^