Types work with Arrays, they help organise them. In classic, an array can only hold one kind of data. For instance, an array must hold a string, float or integer...etc. This makes organising very hard. You would have to do something like this in classic.
Dim CharacterIntegers#(5)
CharacterIntegers#(1) = 10
etc.
In Pro you can do this
Type CharacterInformation
Name AS String
HP AS Integer
MP AS Integer
Class AS String
End Type
Dim CharInfo(1) as CharacterInformation
CharInfo(1).Name = "RPGamer"
CharInfo(1).HP = 10
CharInfo(1).MP = 3
CharInfo(1).Class = "Programmer"
As you can see, with types arrays are much more neat and easier to read, and much easier to handle!
BTW - Inventory system should be fully complete this week, and Ill be working on adding it into the battle system on Tuesday. Big props to Pet Rat for the inventory system work he has done, giving me a much better understanding of data commands
Pretty soon Ill have those guys using items in battle
Thanks for your interest guys
RPGamer
We need help! Email us! join@eternaldestinyonline.com