Hi. Is there a way to create a struct ingame which has a extended array (anywhere from 9216 to 196608) for the variables?
Example:
-Game starts.

JASS:
function CreateArray takes nothing returns nothing
local test t
local integer ArraySize = GetRandomInt(9216, 196608)
set t = test.create()
endfunction
struct test
integer a[ArraySize]
integer b[ArraySize]
endstruct