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

29 lines
657 B
Plaintext

void main()
{
object oPC;
int iGold;
int iGoldNow;
int iGoldTake;
oPC = GetPCSpeaker();
ClearAllActions();
RemoveHenchman(oPC, OBJECT_SELF);
SetLocalString(oPC,"Henchman","");
iGold = GetLocalInt(oPC,"RestGold");
iGoldNow = GetGold(oPC);
SetLocalInt(oPC,"RestGold",iGoldNow);
if (iGoldNow>iGold)
{
iGoldTake = (iGoldNow-iGold)/10;
if (iGoldTake>0)
{
SendMessageToPC(oPC,"Your henchman takes " + IntToString(iGoldTake) + " gold pieces as his share of the spoils.");
//DelayCommand(0.1f,TakeGold(iGoldTake,oPC));
DelayCommand(0.1f,AssignCommand(oPC,TakeGoldFromCreature(iGoldTake,oPC,TRUE)));
}
}
}