Initial commit

Initial commit [v9.7]
This commit is contained in:
Jaysyn904
2025-04-03 12:54:47 -04:00
parent ff5835fcc7
commit ebc0c6a9b2
11298 changed files with 9432842 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
void main()
{
object oPC = GetPCSpeaker();
object oTarget;
oTarget = GetObjectByTag("nobletoduk");
AssignCommand(GetObjectByTag("dukgrd1"), SetFacingPoint(GetPosition(oTarget)));
oTarget = GetObjectByTag("dukgrd1");
AssignCommand(oTarget, ActionPlayAnimation(ANIMATION_LOOPING_GET_MID, 1.0f, 2.0f));
oTarget = GetObjectByTag("nobletoduk");
SetLocked(oTarget, FALSE);
AssignCommand(oTarget, ActionOpenDoor(oTarget));
object oItem;
oItem = GetItemPossessedBy(oPC, "paintedshell");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
oItem = GetItemPossessedBy(oPC, "paintedshell");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
}