How to Create & Customize Own Wizard Paths

< . . . Spells; configurable parameters and effects. . . . >


  • For people who still don't understand how to CREATE/CUSTOMIZE a Wizard Path even reading the config file here's a super explained tutorial.

  • Let's pick one of the default Wizard Paths "Storm_Wizard", so we have the wizard path entries and the "Available_Wizard_Paths" list:

    • Storm_Wizard:
      • Description: '&eTesla would be Proud!'
      • Max_Level: 70
      • Starting_Mana: 40
      • Mana_per_Level: 8
      • Base_Leveling: 6
      • Spells:
        • Level_0:
        • - Bolt:1
        • Level_4:
        • - Bolt:2
        • Level_8:
        • - Thunder:1
        • Level_12:
        • - Bolt:3
        • Bla bla bla rest of the skills and levels...

    • Available_Wizard_Paths:
      • - Fire_Wizard
      • - Ice_Wizard
      • - Storm_Wizard (Here is!)
      • - Psychic_Wizard
      • - White_Wizard
      • - Admin_Wizard

  • So let's make some examples for your needs:

    • Case 1: we want to change any base attribute, description, max level... that's ultra easy just need to change the values, descriptions are compatible with bukkit color/format codes.



    • Case 2: we want to change the name to "Lightning_Wizard", so, we change the "Storm_Wizard" name for the desired one, AND ALSO in the "Available_Wizard_Paths" list, then in game, there's no "Storm_Wizard" any more cause we've renamed it, like:

      • Lightning_Wizard: (Instead of "Storm_Wizard ")
        • Description: '&eTesla would be Proud!'
        • Bla bla bla...

          ...and

      • Available_Wizard_Paths:
        • - Fire_Wizard
        • - Ice_Wizard
        • - Lightning_Wizard (Instead of "Storm_Wizard ", get it?)
        • - Psychic_Wizard
        • - White_Wizard
        • - Admin_Wizard



    • Case 3: we want the wizard to learn the skill "StaticAura" in level 5, instead of level 32, so we just write:

      • Level_4:
      • - Bolt:2
      • Level_5: (we add here the desired level to learn spells)
      • - StaticAura:1 (and here we write the skill and the level like SPELL:LEVEL)
      • Level_8:
      • - Thunder:1



    • Case 4: we want the wizard to learn various spells in the same level, for example, in level 5, learn "StaticAura" level 1 AND "ThunderBolt" level 2:

      • Level_4:
      • - Bolt:2
      • Level_5: (again in the level 5...)
      • - StaticAura:1 (here's the level 1 StaticAura)
      • - ThunderBolt:2 (and here we add a new line with the same format with the name and level for the new skill)
      • Level_8:
      • - Thunder:1

Comments

Posts Quoted:
Reply
Clear All Quotes