EN6_PRC8/_module/nss/en5_hire_hench.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

15 lines
389 B
Plaintext

#include "en5_misc"
void main()
{
object oPC;
oPC=GetPCSpeaker();
if ((GetHitDice(OBJECT_SELF) - 1) < GetHitDice(oPC))
LevelHenchman(OBJECT_SELF,GetHitDice(oPC)-GetHitDice(OBJECT_SELF)+1);
AddHenchman(oPC, OBJECT_SELF);
DelayCommand(1.0, AssignCommand(OBJECT_SELF,ActionForceFollowObject(oPC,5.0)));
SetLocalInt(OBJECT_SELF,"Henchman",1);
SetLocalInt(oPC,"RestGold",GetGold(oPC));
}