How do I put types into arrays?
Can DBPro put types into arrays too?
Can't we just make an array with 2 dimensions for example, the first dimension being monster numbers, and the seconds dimension being the attributes?
DIM MonsterAttribute[100,4]
MonsterAttribute[1,1] = attack power
MonsterAttribute[1,2] = defence
MonsterAttribute[1,3] = energy
MonsterAttribute[1,4] = speed
So far I've preferred to use arrays instead of type, because it can be saved and all.
What would the advantage of types be, other than it's convenient naming?