9 lines
213 B
Plaintext
9 lines
213 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int hd = GetHitDice(oPC) *(GetHitDice(oPC)/2);
|
|
int cost = hd * 150;
|
|
TakeGoldFromCreature(cost, oPC, TRUE);
|
|
AdjustAlignment(oPC, ALIGNMENT_GOOD, 50);
|
|
}
|