Ok, so i'm trying to work on some spellbooks. (I'm aware not many people like them )
I try to add spells, and its not working. I've followed this guide:
http://world-editor-tutorials.thehelper.net/cat_usersubmit.php?view=34530
and got the FIRST spell to show up, when i went to add another spell... It just didn't work... all spellbooks use the same 'Data - Base Order ID'
Since trying a couple things to make it work.. Its turned worse.. The first spell doesn't even show up now. When i open the spellbook ingame, its just blank.
To test the spellbooks, i had the following CUSTOM options:
Spellbook
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : (blank)
Stats - Item Ability: False
Text - Editor Suffix: (Level 1 Burrower)
dummy (level1)
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : Envenomed Weapons (level1)
Stats - Item Ability: False
Text - Editor Suffix: (Level 1 Burrower)
Text - Name: dummy
dummy (level3)
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : Envenomed Weapons (level1), Bloodlust
Stats - Item Ability: False
Text - Editor Suffix: (Level 3 Burrower)
Text - Name: dummy
dummy (level10)
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : Envenomed Weapons (level10), Bloodlust
Stats - Item Ability: False
Text - Editor Suffix: (Level 10 Burrower)
Text - Name: dummy
Here's my triggers
I try to add spells, and its not working. I've followed this guide:
http://world-editor-tutorials.thehelper.net/cat_usersubmit.php?view=34530
and got the FIRST spell to show up, when i went to add another spell... It just didn't work... all spellbooks use the same 'Data - Base Order ID'
Since trying a couple things to make it work.. Its turned worse.. The first spell doesn't even show up now. When i open the spellbook ingame, its just blank.
To test the spellbooks, i had the following CUSTOM options:
Spellbook
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : (blank)
Stats - Item Ability: False
Text - Editor Suffix: (Level 1 Burrower)
dummy (level1)
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : Envenomed Weapons (level1)
Stats - Item Ability: False
Text - Editor Suffix: (Level 1 Burrower)
Text - Name: dummy
dummy (level3)
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : Envenomed Weapons (level1), Bloodlust
Stats - Item Ability: False
Text - Editor Suffix: (Level 3 Burrower)
Text - Name: dummy
dummy (level10)
Data - Maximum Spells: 11
Data - Minimum Spells: 1
Data - Shared Spell Cooldown: False
Data - Spell List : Envenomed Weapons (level10), Bloodlust
Stats - Item Ability: False
Text - Editor Suffix: (Level 10 Burrower)
Text - Name: dummy
Here's my triggers
-
Hero Spawn
-
Events
- Unit - A unit enters Burrower <gen>
- Conditions
-
Actions
- Unit - Create 1 Burrower for (Owner of (Entering unit)) at (Center of Hero Spawn <gen>) facing Default building facing degrees
- Player - Disable dummy (Level 3 Burrower) for (Owner of (Entering unit))
- Player - Disable dummy (Level 10 Burrower) for (Owner of (Entering unit))
- Unit - Remove (Entering unit) from the game
- Camera - Pan camera for (Owner of (Entering unit)) to (Center of Hero Spawn <gen>) over 1.00 seconds
-
Events
-
Level 3
-
Events
- Unit - A unit Gains a level
-
Conditions
- ((Unit-type of (Leveling Hero)) Equal to Burrower) and ((Level of (Leveling Hero)) Equal to 3)
-
Actions
- Player - Disable dummy (Level 1 Burrower) for (Owner of (Leveling Hero))
- Player - Enable dummy (Level 3 Burrower) for (Owner of (Leveling Hero))
-
Events
-
Level 10
-
Events
- Unit - A unit Gains a level
-
Conditions
- ((Unit-type of (Leveling Hero)) Equal to Burrower) and ((Level of (Leveling Hero)) Equal to 10)
-
Actions
- Player - Disable dummy (Level 3 Burrower) for (Owner of (Leveling Hero))
- Player - Enable dummy (Level 10 Burrower) for (Owner of (Leveling Hero))
-
Events