Ancordia_PRC8/_module/nss/col_prepare.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

37 lines
827 B
Plaintext

#include "nw_i0_plot"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int nLevel = GetHitDice(oPC);
string sMinorItem;
string sMajorItem;
int nMinorGold;
int nMajorGold;
int nMinorNum;
int nMajorNum;
int nGold;
int nXP;
if (nLevel <= 3)
{
sMinorItem = "anc_it_slimeball";
sMajorItem = "anc_it_cubeskull";
nMinorGold = 75;
nMajorGold = 200;
}
else //if (nLevel <= 7)
{
sMinorItem = "anc_it_colhidew";
sMajorItem = "anc_it_colhideb";
nMinorGold = 100;
nMajorGold = 250;
}
nMinorNum = GetNumItems(oPC, sMinorItem);
nMajorNum = GetNumItems(oPC, sMajorItem);
nGold = nMinorGold * nMinorNum + nMajorGold * nMajorNum;
SetCustomToken(923, IntToString(nGold));
return TRUE;
}