summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-07-05 16:40:43 -0300
committerJesusaves <cpntb1@ymail.com>2021-07-05 16:40:43 -0300
commit67f02bef162af9812c833075441fd9cd722727cd (patch)
tree339012077a6ce40ff078c0817ad52ec4cf189dd1
parent029bb8a7ef733748108b616e5156a06d231ecc3a (diff)
downloadserverdata-67f02bef162af9812c833075441fd9cd722727cd.tar.gz
serverdata-67f02bef162af9812c833075441fd9cd722727cd.tar.bz2
serverdata-67f02bef162af9812c833075441fd9cd722727cd.tar.xz
serverdata-67f02bef162af9812c833075441fd9cd722727cd.zip
NOBYPASS - Prevent players from intruding on the fights EVEN if they have crypt keys
-rw-r--r--npc/018-1/mike.txt1
-rw-r--r--npc/027-3/general_krukan_door.txt5
-rw-r--r--npc/027-4/general_razha_door.txt5
-rw-r--r--npc/027-5/general_terogan_door.txt5
4 files changed, 6 insertions, 10 deletions
diff --git a/npc/018-1/mike.txt b/npc/018-1/mike.txt
index 0515b0c0..c95e258f 100644
--- a/npc/018-1/mike.txt
+++ b/npc/018-1/mike.txt
@@ -22,6 +22,5 @@
/*
Cronos - Boss Point Validation & Exchanger? Possibly in Keshlam Swamps?
-Reapercry + Evil Obelisk (Maybe you can enable the obelisk warp from Swamps)
*/
diff --git a/npc/027-3/general_krukan_door.txt b/npc/027-3/general_krukan_door.txt
index 9f7c632d..77eab35a 100644
--- a/npc/027-3/general_krukan_door.txt
+++ b/npc/027-3/general_krukan_door.txt
@@ -1,9 +1,8 @@
027-3,92,88,0 script #GeneralDoor1 NPC45,1,0,{
- //if ( (countitem("CryptKey") < 10) && ($@CRYPT_FIGHT1 != 0) )
- // goto L_NoKeys;
+ if ( $@CRYPT_FIGHT1 != 0 )
+ goto L_NoKeys;
- //delitem "CryptKey", 10;
warp "027-6",39,60;
goto L_close;
diff --git a/npc/027-4/general_razha_door.txt b/npc/027-4/general_razha_door.txt
index 2225c2a6..4e06b93b 100644
--- a/npc/027-4/general_razha_door.txt
+++ b/npc/027-4/general_razha_door.txt
@@ -1,9 +1,8 @@
027-4,73,76,0 script #GeneralDoor2 NPC45,1,0,{
- //if ( (countitem("CryptKey") < 10) && ($@CRYPT_FIGHT2 != 0) )
- // goto L_NoKeys;
+ if ( $@CRYPT_FIGHT2 != 0 )
+ goto L_NoKeys;
- //delitem "CryptKey", 10;
warp "027-7",39,60;
goto L_close;
diff --git a/npc/027-5/general_terogan_door.txt b/npc/027-5/general_terogan_door.txt
index 3929685a..19a564b5 100644
--- a/npc/027-5/general_terogan_door.txt
+++ b/npc/027-5/general_terogan_door.txt
@@ -1,9 +1,8 @@
027-5,70,25,0 script #GeneralDoor3 NPC45,1,0,{
- //if ( (countitem("CryptKey") < 10) && ($@CRYPT_FIGHT3 != 0) )
- // goto L_NoKeys;
+ if ( $@CRYPT_FIGHT3 != 0 )
+ goto L_NoKeys;
- //delitem "CryptKey", 10;
warp "027-8",39,60;
goto L_close;