UW2_PRC8/_module/nss/sfcs_start_conv.nss

12 lines
352 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
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);
}