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

33 lines
720 B
Plaintext

void main()
{
object oPC;
int iGold;
int iSelfish;
int iDifficulty;
oPC=GetPCSpeaker();
iDifficulty = 13 + GetLocalInt(GetArea(OBJECT_SELF),"MinLevel");
if (GetIsSkillSuccessful(oPC,SKILL_INTIMIDATE,iDifficulty))
{
iGold = GetLocalInt(OBJECT_SELF,"QuestGold");
iGold = iGold * 3 / 2;
SetLocalInt(OBJECT_SELF,"QuestGold",iGold);
}
if (GetGoodEvilValue(oPC)>30)
{
iSelfish = GetLocalInt(oPC,"Selfish");
iSelfish++;
SetLocalInt(oPC,"Selfish",iSelfish);
if (iSelfish % 5 == 0 && GetGoodEvilValue(oPC)>60)
{
AdjustAlignment(oPC,ALIGNMENT_GOOD,-1);
}
else if (iSelfish % 10 == 0)
{
AdjustAlignment(oPC,ALIGNMENT_EVIL,1);
}
}
}