I need a way to store the information about who is in my party, which gear they have, their level, etc.
Can someone point me to the right tutorial or template I can learn from? Dunno if I should create some form of database or such. Any help is appreciated.
save the informations inside a structure or array.
you can retreive the informations dynamically by using this syntax:
parentVariable[childVariable]
where childVariable is a string (for structures) or a number (for an array)
childVariable can be another variable or a whole expression (meaning that if the variable change, the the event block will call another child)
you need to do this if you cannot save the informations inside object variables.