PWE_PRC8/_module/nss/ttopgwyn_2_grnd.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

84 lines
2.5 KiB
Plaintext

/* Use the trap door. This allows for locks and traps to be
* placed on the door and plays an animation of the user opening
* the hatch before opening the door.
*
* Works for both standard and secret trap doors. For standard, the tag
* of the waypoint destination must be set to LOC_<tag of door>.
* For secret, the waypoint should be set to LOC_<tag of detect trigger>.
*
* This goes in the OnUsed event handler of the actual
* trap door object.
*/
#include "x0_i0_secret"
void main()
{
object oUser = GetLastUsedBy();
// Allow for traps and locks
if (GetIsTrapped(OBJECT_SELF)) {return;}
if (GetLocked(OBJECT_SELF)) {
// See if we have the key and unlock if so
string sKey = GetTrapKeyTag(OBJECT_SELF);
object oKey = GetItemPossessedBy(oUser, sKey);
if (sKey != "" && GetIsObjectValid(oKey)) {
SendMessageToPC(oUser, GetStringByStrRef(7945));
SetLocked(OBJECT_SELF, FALSE);
} else {
// Print '*locked*' message and play sound
DelayCommand(0.1, PlaySound("as_dr_locked2"));
FloatingTextStringOnCreature("*"
+ GetStringByStrRef(8307)
+ "*",
oUser);
SendMessageToPC(oUser, GetStringByStrRef(8296));
return;
}
}
// Handle opening/closing
if (!GetIsSecretItemOpen(OBJECT_SELF)) {
// play animation of user opening it
AssignCommand(oUser, ActionPlayAnimation(ANIMATION_LOOPING_GET_LOW));
DelayCommand(1.0, ActionPlayAnimation(ANIMATION_PLACEABLE_OPEN));
SetIsSecretItemOpen(OBJECT_SELF, TRUE);
} else {
// it's open -- go through and then close
UseSecretTransport(GetLastUsedBy());
ActionPlayAnimation(ANIMATION_PLACEABLE_CLOSE);
SetIsSecretItemOpen(OBJECT_SELF, FALSE);
}
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
AssignCommand(oPC, ClearAllActions());
object oTarget;
location lTarget;
oTarget = GetWaypointByTag("NW_GwynBottom");
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, ActionJumpToLocation(lTarget));
}
}