Mostly npc script adjusments

and placeable tag changes
This commit is contained in:
EpicValor
2023-09-04 21:06:50 -05:00
parent 430f3102d9
commit a896bdd164
62 changed files with 9383 additions and 293 deletions

View File

@@ -53,10 +53,10 @@ void main()
int nChair = 1;
string sMyTagName = GetTag(OBJECT_SELF);
string sSittableTagName = "Woodenbench";
object oChair = GetRandomObjectByTag(sSittableTagName, 99.0);
object oChair = GetRandomObjectByTag(sSittableTagName, 110.0);
ActionMoveToObject (oChair, FALSE);
ActionSit(oChair);
}
DelayCommand(GetRandomDelay(180.0, 240.0), ExecuteScript("npc_sit_woodenbe", OBJECT_SELF));
DelayCommand(GetRandomDelay(200.0, 280.0), ExecuteScript("npc_sit_woodenbe", OBJECT_SELF));
}