Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
16 lines
438 B
Plaintext
16 lines
438 B
Plaintext
/*
|
|
Recover all maneuvers through EvalPRCFeats
|
|
*/
|
|
#include "tob_inc_recovery"
|
|
|
|
void main()
|
|
{
|
|
object oInitiator = OBJECT_SELF;
|
|
if(GetIsBladeMagicUser(oInitiator))
|
|
{
|
|
RecoverExpendedManeuvers(oInitiator, MANEUVER_LIST_CRUSADER);
|
|
RecoverExpendedManeuvers(oInitiator, MANEUVER_LIST_SWORDSAGE);
|
|
RecoverExpendedManeuvers(oInitiator, MANEUVER_LIST_WARBLADE);
|
|
RecoverPrCAbilities(oInitiator);
|
|
}
|
|
} |