What I mean is, I want this ability to give +5 ERD and a chance to cast a spell on dodge but I doesn't seem to work for me. I am absolutely baffled right now and any help would be much appreciated. Here is the script in question: <ability name="Ghillie Suit" icon="skills/spells/ghilliesuit64.png" skill="2828" level="0"> <description text="You're a bush!."/> <primarybuff id="2" amount="50" /> </ability>
<ability name="Ghillie Suit" icon="skills/spells/ghilliesuit64.png" skill="2828" level="0"> <description text="You're a bush!."/> <primarybuff id="2" amount="50" /> <secondarybuff id="9" amount="5"> <!-- ERD --> <triggerondodge percent="100" spell="SPELLNAMEHERE"/> </ability>
So <!-- ERD --> is necessary!? I thought <!--ERD--> was just a note for the author that the engine ignored. Aww crap, I gotta go back and redo so many abilities now... Also, thanks!
Hmm, I also wanted to experiment with passive buffs for a poison skill tree as a sort of test run of how these things work, but I can't get passive stat boosts like acidic or putrifying damage resistences to work, or the primary and secondary id buffs either. in the code there were <!-- --> comments as well. So... so those are definitely necessary? They aren't just the normal variety of comments?
Okay so I've got it to work...sorta. The stats appear on the ability when you hover over it but they aren't being applied to the character. Once again: <ability name="Ghillie Suit" icon="skills/spells/ghilliesuit64.png" skill="2828" level="0"> <description text="You're a bush!."/> <primarybuff id="2" amount="5" /> <!-- Nimbleness --> <secondarybuff id="9" amount="5" /> <!-- EDR --> <primarybuff id="5" amount="5" /> <!-- Savvy --> </ability> EDIT: Hm, so perhaps we can't add stats to abilities just yet? This would explain why I also can't get damagebuff to work either..
The secondary stats should work. The primary stats are, once again, bugged. Same thing with the official skills - taking the last level of magic training is worthless right now.
Yeah that's what I'm getting. On the skills page hovering over everything shows the skills and the stats they're supposed to apply but they don't show up on the character menu nor are they being calculated during combat. I played with different stats and it seems to be the case for any sort of stat buff.