12 lines
352 B
Plaintext
12 lines
352 B
Plaintext
|
void main()
|
||
|
{
|
||
|
ActionPauseConversation();
|
||
|
DelayCommand(0.5, ActionResumeConversation());
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int iPCLevel = GetHitDice(oPC),
|
||
|
iPCGold = GetGold(oPC);
|
||
|
SetLocalInt(OBJECT_SELF, "PC_LEVEL", iPCLevel);
|
||
|
SetLocalInt(OBJECT_SELF, "PC_GOLD", iPCGold);
|
||
|
SetLocalInt(OBJECT_SELF, "NOT_ABORTED", TRUE);
|
||
|
}
|