EN4_PRC8/_module/nss/cm_hired_hench.nss
Jaysyn904 b464d8da05 Initial Commit
Initial Commit [v1.32PRC8]
2025-04-03 13:38:45 -04:00

16 lines
384 B
Plaintext

#include "x0_i0_henchman"
int StartingConditional()
{
// this checks to see if the henchman is considered currently
if (GetIsHired() && GetWorkingForPlayer(GetPCSpeaker()) &&
GetLocalInt(OBJECT_SELF, "X0_L_BUSY_SPEAKING_ONE_LINER") == 0)
{
SetLocalInt(OBJECT_SELF, "X0_L_BUSY_SPEAKING_ONE_LINER", 0);
return TRUE;
}
return FALSE;
}