Initial commit

Initial commit.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-13 15:08:33 -04:00
parent c0bd67a6a7
commit a6f6db7303
5236 changed files with 4203994 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
void main()
{
object oNPC;
object oChair;
if (GetLocalInt(OBJECT_SELF,"DoOnce") > 0)
return;
if (GetIsPC(GetEnteringObject()))
{
SetLocalInt(OBJECT_SELF,"DoOnce",1);
oNPC = GetFirstObjectInArea();
while (GetIsObjectValid(oNPC))
{
if (GetObjectType(oNPC) == OBJECT_TYPE_CREATURE)
{
oChair = GetObjectByTag(GetTag(oNPC) + "_chair");
if (GetIsObjectValid(oChair))
{
SetLocalInt(oNPC,"Sit",1);
DelayCommand(0.1f,AssignCommand(oNPC,ActionSit(oChair)));
//SendMessageToPC(GetFirstPC(),GetName(oNPC) + " run to " + GetTag(GetArea(oChair)));
}
}
oNPC = GetNextObjectInArea();
}
ExecuteScript("en5_ae",OBJECT_SELF);
DelayCommand(3.0,ExecuteScript("en5_ae",OBJECT_SELF));
}
}