Rune_PRC8/_module/nss/jen_boatdoor.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

54 lines
1.4 KiB
Plaintext

/* Script generated by
Lilac Soul's NWN Script Generator, v. 2.3
For download info, please visit:
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */
//Put this script OnUsed
#include "x0_i0_secret"
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "UranHouseBoatKey1")== OBJECT_INVALID)
{
return;
}
if (!GetIsSecretItemOpen(OBJECT_SELF)) {
// play animation of user opening it
AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_GET_MID));
DelayCommand(1.0, ActionPlayAnimation(ANIMATION_PLACEABLE_OPEN));
SetIsSecretItemOpen(OBJECT_SELF, TRUE);
} else {
// it's open -- go through and then close
location lTarget;
object oTarget = GetWaypointByTag("WP_UranBoat1Enter");
lTarget = GetLocation(oTarget);
//only do the jump if the location is valid.
//though not flawless, we just check if it is in a valid area.
//the script will stop if the location isn't valid - meaning that
//nothing put after the teleport will fire either.
//the current location won't be stored, either
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
AssignCommand(oPC, ClearAllActions());
AssignCommand(oPC, ActionJumpToLocation(lTarget));
object oObject = GetObjectByTag("HouseBoatDoor");
ActionPlayAnimation(ANIMATION_PLACEABLE_CLOSE);
SetIsSecretItemOpen(OBJECT_SELF, FALSE);
}
}