WoR_PRC8/_module/nss/s_setconverseonc.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

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));
}