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

17 lines
384 B
Plaintext

void main()
{
object oClicker = GetClickingObject();
object oTarget = GetTransitionTarget(OBJECT_SELF);
location lLoc = GetLocation(oTarget);
if(GetItemPossessedBy(oClicker,"cotsh_door_NOD") != OBJECT_INVALID)
{
AssignCommand(oClicker,JumpToLocation(lLoc));
}
else
{
SpeakString("Powerfull magics guard this entrance, you may not pass.");
}
}