Q.)What is this system?
A.)This is a skill/talent tree system, similar to the one can be found in World of Warcraft or Diablo 2-but a slightly
more primitive.
Q.)Why do dependancies not work correctly?
A.)Check your variable again, if you used a format like: 12213, then you left there a 1-digit number, so rewrite it to
120213 or 122103 - the digits number to be an even number!
Q.)Why do I have to use 2-digit format in the case of 1-digit numbers?
A.)Because the system checks the string for every 2 letters ;)
Q.)How can I add more columns/rows?
A.)Yes! Now you can set it by setting TalentRows/TalentColumns (be careful, this will change the numbering of the
abilities)
Q.)Is it MUI?
A.)No, but it is MPI, you only see your class's icons and dependancies
Q.)What are the numbers of the talent positions?
A.)The numbering of the talent buttons goes as the following:
##################################################
# 01 # 02 # 03 ### 19 # 20 # 21 ### 37 # 38 # 39 #
# 04 # 05 # 06 ### 22 # 23 # 24 ### 40 # 41 # 42 #
# 07 # 08 # 09 ### 25 # 26 # 27 ### 43 # 44 # 45 #
# 10 # 11 # 12 ### 28 # 29 # 30 ### 46 # 47 # 48 #
# 13 # 14 # 15 ### 31 # 32 # 33 ### 49 # 50 # 51 #
# 16 # 17 # 18 ### 34 # 35 # 36 ### 52 # 53 # 54 #
##################################################
If you modify the number of rows to 5, it will change to:
##################################################
# 01 # 02 # 03 ### 16 # 17 # 18 ### 31 # 32 # 33 #
# 04 # 05 # 06 ### 19 # 20 # 21 ### 34 # 35 # 36 #
# 0 # 08 # 09 ### 22 # 23 # 24 ### 37 # 38 # 39 #
# 10 # 11 # 12 ### 25 # 26 # 27 ### 40 # 41 # 42 #
# 13 # 14 # 15 ### 28 # 29 # 30 ### 43 # 44 # 45 #
##################################################
If you modify the number of culumns to 4, it will change to:
TalentColumns = 4, TalentRows = 6
##################################################################
# 01 # 02 # 03 # 4 ### 21 # 22 # 23 # 24 ### 41 # 42 # 43 # 44 #
# 05 # 06 # 07 # 8 ### 25 # 26 # 27 # 28 ### 45 # 46 # 47 # 48 #
# 09 # 10 # 11 # 12 ### 29 # 30 # 31 # 32 ### 49 # 50 # 51 # 52 #
# 13 # 14 # 15 # 16 ### 33 # 34 # 35 # 36 ### 53 # 54 # 55 # 56 #
# 17 # 18 # 19 # 20 ### 37 # 38 # 39 # 40 ### 57 # 58 # 59 # 60 #
##################################################################
Q.)How to add new skills?
A.)To add new skills:
1. Copy one of the custom icon destructibles already included
2. Give them the icon as texture
3. Copy the format of Classes
Q.)How to add a new class?
A.)Add the new class and its skills to Classes
Q.)Why does a player not see his talents?
A.)You have to set PlayerClass[] to the specific class's name
Q.)Can I give a hero bonus ability points too?
A.)Yes, by the usage of the Hashtable SkillBonuses - save the total bonus value as (Ability number of Player Number
in SkillBonuses)
Take a look at Map/Init!! You have to set those values for every hero/player!