HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Integers A and B?

06-26-2005, 04:42 AM#1
Ignitedstar
How do you use these? Are they just temporary variables or something? How does one determine what they stand for?
06-26-2005, 05:39 AM#2
Panto
They're used in the For A and For B loops available in GUI. I don't use 'em anymore, but they're available for convenience's sake, I guess.

Moved to trigger forum.
06-26-2005, 09:26 AM#3
Guest
Here's an example of using Integer A
Code:
For each (Integer A) from 1 to 10, do (Actions)
    Loop - Actions
        Game - Display to (All players) the text: (String((Integer A)))
This would display:
1
2
3
4
5
6
7
8
9
10

Integer B is identical except it can be used at the same time as Integer A, instead of running two identical for loops at the same time.