diff options
author | Wushin <pasekei@gmail.com> | 2014-07-11 10:35:37 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2014-07-11 10:35:37 -0500 |
commit | b4b41e43278f2130dad0cb9c8cd0805c56ed2530 (patch) | |
tree | 121009e49ad9a4234bdd8fada5e53b29b7009263 | |
parent | 825c46190b231111a282a0258d1387851e9eb027 (diff) | |
parent | f2f2efe2322376ef11f12fccc3886dbf5547de70 (diff) | |
download | serverdata-b4b41e43278f2130dad0cb9c8cd0805c56ed2530.tar.gz serverdata-b4b41e43278f2130dad0cb9c8cd0805c56ed2530.tar.bz2 serverdata-b4b41e43278f2130dad0cb9c8cd0805c56ed2530.tar.xz serverdata-b4b41e43278f2130dad0cb9c8cd0805c56ed2530.zip |
Merge pull request #136 from wushin/lag-fix-ruining-everyones-fun
Fixes Mob Pathing Bug Expolit
-rw-r--r-- | world/map/data/027-3.wlk | bin | 18754 -> 18754 bytes | |||
-rw-r--r-- | world/map/data/027-4.wlk | bin | 18754 -> 18754 bytes | |||
-rw-r--r-- | world/map/npc/027-3/_import.txt | 1 | ||||
-rw-r--r-- | world/map/npc/027-3/locked_doors.txt | 128 |
4 files changed, 0 insertions, 129 deletions
diff --git a/world/map/data/027-3.wlk b/world/map/data/027-3.wlk Binary files differindex 8191729c..84328e51 100644 --- a/world/map/data/027-3.wlk +++ b/world/map/data/027-3.wlk diff --git a/world/map/data/027-4.wlk b/world/map/data/027-4.wlk Binary files differindex 524e28a6..4d561765 100644 --- a/world/map/data/027-4.wlk +++ b/world/map/data/027-4.wlk diff --git a/world/map/npc/027-3/_import.txt b/world/map/npc/027-3/_import.txt index d8f11879..00a7ad99 100644 --- a/world/map/npc/027-3/_import.txt +++ b/world/map/npc/027-3/_import.txt @@ -5,6 +5,5 @@ npc: npc/027-3/_mobs.txt npc: npc/027-3/_warps.txt npc: npc/027-3/casket_traps.txt npc: npc/027-3/general_krukan_door.txt -npc: npc/027-3/locked_doors.txt npc: npc/027-3/mapflags.txt npc: npc/027-3/monsters.txt diff --git a/world/map/npc/027-3/locked_doors.txt b/world/map/npc/027-3/locked_doors.txt deleted file mode 100644 index b2ec8779..00000000 --- a/world/map/npc/027-3/locked_doors.txt +++ /dev/null @@ -1,128 +0,0 @@ -// Locked Doors - -027-3.gat,22,29,0|script|#CLockDoor1|35,0,0 -{ - if (countitem("CryptKey") < 5) - goto L_NoKeys; - mes "Open the Locked Door?"; - menu - "Yes.", L_Open, - "No.", L_Close; - -L_Open: - delitem "CryptKey", 5; - warp "027-3.gat",22,26; - goto L_Close; - -L_NoKeys: - message strcharinfo(0), "This door is locked."; - end; - -L_Close: - close; -} - -027-3.gat,22,27,0|script|#CInsideDoor1|35,0,0 -{ - mes "Open the Door?"; - menu - "Yes.", L_Open, - "No.", L_Close; - -L_Open: - warp "027-3.gat",22,30; - message strcharinfo(0), "This door slams shut and locks itself behind you."; - goto L_Close; - -L_Close: - close; -} - -027-3.gat,37,29,0|script|#CLockDoor2|35,0,0 -{ - if (countitem("CryptKey") < 5) - goto L_NoKeys; - mes "Open the Locked Door?"; - menu - "Yes.", L_Open, - "No.", L_Close; - -L_Open: - delitem "CryptKey", 5; - warp "027-3.gat",37,26; - goto L_Close; - -L_NoKeys: - message strcharinfo(0), "This door is locked."; - end; - -L_Close: - close; -} - -027-3.gat,37,27,0|script|#CInsideDoor2|35,0,0 -{ - mes "Open the Door?"; - menu - "Yes.", L_Open, - "No.", L_Close; - -L_Open: - warp "027-3.gat",37,30; - message strcharinfo(0), "This door slams shut and locks itself behind you."; - goto L_Close; - -L_Close: - close; -} - -027-3.gat,128,29,0|script|#CLockDoor3|35,0,0 -{ - if (countitem("CryptKey") < 5) - goto L_NoKeys; - mes "Open the Locked Door?"; - menu - "Yes.", L_Open, - "No.", L_Close; - -L_Open: - delitem "CryptKey", 5; - warp "027-3.gat",128,26; - goto L_Close; - -L_NoKeys: - message strcharinfo(0), "This door is locked."; - end; - -L_Close: - close; -} - -027-3.gat,128,27,0|script|#CInsideDoor3|35,0,0 -{ - mes "Open the Door?"; - menu - "Yes.", L_Open, - "No.", L_Close; - -L_Open: - warp "027-3.gat",128,30; - message strcharinfo(0), "This door slams shut and locks itself behind you."; - goto L_Close; - -L_Close: - close; -} - -027-3.gat,22,22,0|script|Crypt#1|35,0,0 -{ - // Coords X: 117,104,110,118; - // Coords Y: 53, 87, 53,87; - end; -} -027-3.gat,35,22,0|script|Crypt#2|35,0,0 -{ - // Coords X: 105,118,118,122; - // Coords Y: 58, 77, 72, 58 - end; -} |