well, i have some troubles with hashtable. this code doesnt work:
what's the matter?
and another question: if i want to save abilcodes in hashtable, i should use SaveInteger or SaveHandle?
JASS:
local integer c=0
local integer j=0
local integer p=0
set udg_hash=InitHashtable()
loop
exitwhen c>7
loop
exitwhen j>11
call SaveInteger(udg_hash,c,j,c)
set p=LoadInteger(udg_hash,c,j)
call DisplayTextToPlayer(Player(0),0,0,I2S(p))
//p is always equal to 0
set j=j+1
endloop
set c=c+1
endloop
and another question: if i want to save abilcodes in hashtable, i should use SaveInteger or SaveHandle?