Search found 4 matches
- Sat Nov 30, 2013 10:41 pm
- Forum: Contributing
- Topic: fix for Wyvern Healing Breath not targeting party members
- Replies: 4
- Views: 3429
Re: fix for Wyvern Healing Breath not targeting party member
It looks like CAIPetDummy::ActionAbilityFinish() queues up the targets for AoE based upon the SQL entry for the skill, so changing the code structure a bit so that CAIPetDummy::preparePetAbility doesn't have a pointless parameter seems to work fine. My new attached patch doesn't seem to break anythi...
- Sat Nov 30, 2013 9:27 pm
- Forum: Contributing
- Topic: fix for Wyvern Healing Breath not targeting party members
- Replies: 4
- Views: 3429
Re: fix for Wyvern Healing Breath not targeting party member
That makes sense. I am by no means an expert on PUP/SMN/BST, I really only know how DRG's wyvern is supposed to work. That said, looking at the code, this is the SMN avatar pet code in CAIPetDummy::ActionAbilityStart() else if(m_PPet->getPetType()==PETTYPE_AVATAR){ for(int i=0; i<m_PPet->PetSkills.s...
- Sat Nov 30, 2013 6:13 pm
- Forum: Contributing
- Topic: fix for Wyvern Healing Breath not targeting party members
- Replies: 4
- Views: 3429
fix for Wyvern Healing Breath not targeting party members
Changes: Added future support for Vishap Armet increasing healing breath trigger point. Cleaned up some code in hp threshold checking Additions: Added a party member HP check to heal them instead. The master always is healed before party members. This should close a relatively old ticket : http://bu...
- Sat Nov 30, 2013 4:14 pm
- Forum: Scripting
- Topic: Wyvern Healing Breath minor fix
- Replies: 0
- Views: 1600
Wyvern Healing Breath minor fix
The current LUA uses wyvern current hp instead of maximum HP to determine healing breath potency. This change would make Wyvern HP+ gear useful again, as well as making healing breath more retail-like and not losing healing potency from AoE damage. This will allow the closure of the bug I reported o...