11 lines
287 B
Plaintext
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)));
|
|
}
|
|
}
|