Lankhmar_PRC8/_module/nss/ent_cnv_sl_outsk.nss

24 lines
385 B
Plaintext
Raw Permalink Normal View History

2025-04-03 12:54:47 -04:00
void main()
{
object oPC = GetEnteringObject();
object oSelf = OBJECT_SELF;
SetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF), TRUE);
object oTarget;
ClearAllActions();
oTarget = GetObjectByTag("sl_outskrts");
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
// Destroy an object (not fully effective until this script ends).
DelayCommand(3.0, DestroyObject(oSelf));
}