18 lines
600 B
Plaintext
18 lines
600 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName s_setconverseonc
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/11/2004 4:06:02 PM
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
// Set the variables
|
|
object NPC = OBJECT_SELF;
|
|
SetLocalInt(GetPCSpeaker(), "CO" + GetTag(NPC), 1);
|
|
object oPC = GetPCSpeaker();
|
|
//mae it so that the PC can't talk the save for another 2 mins
|
|
DelayCommand(120.0, SetLocalInt(oPC, "CO" + GetTag(NPC), 0));
|
|
|
|
}
|