13 lines
198 B
Plaintext
Raw Permalink Normal View History

void main()
{
object oPC;
oPC = GetPCSpeaker();
int nLvl;
nLvl= GetHitDice(oPC);
int dGold;
dGold = nLvl * 1000;
TakeGoldFromCreature(dGold, oPC, TRUE);
AdjustAlignment(oPC, ALIGNMENT_GOOD, 50);
}