diff options
Diffstat (limited to 'npc/027-3/general_krukan_door.txt')
-rwxr-xr-x | npc/027-3/general_krukan_door.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/npc/027-3/general_krukan_door.txt b/npc/027-3/general_krukan_door.txt new file mode 100755 index 00000000..7a86e971 --- /dev/null +++ b/npc/027-3/general_krukan_door.txt @@ -0,0 +1,16 @@ + +027-3,82,88,0 script #GeneralDoor1 NPC45,1,0,{ + if ( (countitem("CryptKey") < 10) && ($@CRYPT_FIGHT1 != 0) ) + goto L_NoKeys; + + delitem "CryptKey", 10; + warp "027-6",39,60; + goto L_close; + +L_NoKeys: + message strcharinfo(0), "This door is locked."; + end; + +L_close: + close; +} |