- Joined
- Jul 17, 2011
- Messages
- 1,863
JASS:
struct cool
integer c
endstruct
//===============================
function d takes nothing returns nothing
local cool array A
local integer v
set A[22].c = 40
set v = A[22].c
can i just reuse this as many times as i want or do i have to allocate it?
for example i wanted to assign the old array a new value
JASS:
A[22].c = 66