- Joined
- Aug 21, 2010
- Messages
- 17
Is it possible to use a variable index when using the set array function to assign a value to an array cell? For example:
JASS:
local integer i = 0
loop
exitwhen(i == 10)
set element[i] = //something
endloop