13 lines
198 B
Plaintext
13 lines
198 B
Plaintext
|
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);
|
||
|
}
|