RATDOG/_module/nss/69_hench_heall.nss
Jaysyn904 0b86a6485c Updated scripts to use MyPRCGetRacialType
Updated scripts to use MyPRCGetRacialType.  Full compile.
2022-09-28 21:36:29 -04:00

53 lines
1.5 KiB
Plaintext

//69_hench_heall
//Henchman will attempt to heal the most injured in party
//Created by: 69MEH69
#include "nw_i0_generic"
#include "prc_inc_racial"
void main()
{
ResetHenchmenState();
SetCommandable(TRUE, OBJECT_SELF);
object oTarget = GetFactionMostDamagedMember(OBJECT_SELF);
talent tUse;
if(GetIsObjectValid(oTarget))
{
int nCurrent = GetCurrentHitPoints(oTarget);
int nBase = GetMaxHitPoints(oTarget);
if(MyPRCGetRacialType(oTarget) == RACIAL_TYPE_UNDEAD)
{
if(nCurrent < nBase && !GetIsDead(oTarget))
{
tUse = GetCreatureTalentBest(TALENT_CATEGORY_HARMFUL_TOUCH, TALENT_ANY);
if(GetIsTalentValid(tUse))
{
ClearAllActions();
ActionUseTalentOnObject(tUse, oTarget);
}
}
}
else if(MyPRCGetRacialType(oTarget) != RACIAL_TYPE_UNDEAD)
{
if(nCurrent < nBase && !GetIsDead(oTarget))
{
tUse = GetCreatureTalentBest(TALENT_CATEGORY_BENEFICIAL_HEALING_TOUCH, TALENT_ANY);
if(GetIsTalentValid(tUse))
{
ClearAllActions();
ActionUseTalentOnObject(tUse, oTarget);
}
else
{
ActionSpeakString("I'm out of healing spells.", TALKVOLUME_TALK);
}
}
}
}
else
ActionSpeakString("Everyone seems to be in good health.", TALKVOLUME_TALK);
}