PoA_PRC8/_module/nss/culttakegold1.nss

9 lines
216 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
void main()
{
object oPC = GetPCSpeaker();
int hd = GetHitDice(oPC) *(GetHitDice(oPC)/2);
int cost = hd * 150;
TakeGoldFromCreature(cost, oPC, TRUE);
AdjustAlignment(oPC, ALIGNMENT_CHAOTIC, 50);
}