RoT2_PRC8/_module/nss/council_on_enter.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

11 lines
287 B
Plaintext

void main()
{
object oPC = GetEnteringObject();
object oNPC = GetObjectByTag("councilgold");
if ( GetIsPC(oPC) && !GetLocalInt(oPC,"council") )
{
SetLocalInt(oPC,"council",TRUE);
DelayCommand(2.0,AssignCommand(oNPC,ActionStartConversation(oPC)));
}
}