Hello. So i want to have about three different classes for my game. The usual ones like Warrior,Archer and Wizard. How exactly should i approach the creation of the stat presets?I mean what i want is when you enter the game you will have this “Create Character” button and when you press it three more buttons will appear, each one for each of the classes. And of course there should be three different stat presets for each button/class. For example:
Warrior(Strength:12,Vitality:12,Dexterity:10,Intelligence:8)
Archer(Strength:10,Vitality:11,Dexterity:12,Intelligence:9)
Should i just create three simple scripts with the variables i want and attach them to the different buttons so that when the Warrior button is pressed, the Warrior script is enabled and then create a whole Statistics system for the game OR something simpler/harder?
Thanks!