summaryrefslogtreecommitdiff
path: root/npc/functions/maze.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-05-04 18:48:31 -0300
committerJesusaves <cpntb1@ymail.com>2022-05-04 18:48:31 -0300
commite00b1450e871b2579b403e21eb44441566a3ab98 (patch)
tree6f80d7b45cd0f71afffa9fe769057df10efe28d7 /npc/functions/maze.txt
parent90543da98ee7aefd54bb1b4c8b227927b22227f4 (diff)
downloadserverdata-e00b1450e871b2579b403e21eb44441566a3ab98.tar.gz
serverdata-e00b1450e871b2579b403e21eb44441566a3ab98.tar.bz2
serverdata-e00b1450e871b2579b403e21eb44441566a3ab98.tar.xz
serverdata-e00b1450e871b2579b403e21eb44441566a3ab98.zip
In theory, you can now escape from the trap.
Escaping yields the 10k xp from the door and a strange coin per survivor. Defeating the Wumpus grants you great rewards, though.
Diffstat (limited to 'npc/functions/maze.txt')
-rw-r--r--npc/functions/maze.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/maze.txt b/npc/functions/maze.txt
index aafb153a8..23caede37 100644
--- a/npc/functions/maze.txt
+++ b/npc/functions/maze.txt
@@ -89,8 +89,8 @@ function script InitMaze {
.@mx=getmapinfo(MAPINFO_SIZE_X, MAZE_MAP$)-20;
.@my=getmapinfo(MAPINFO_SIZE_Y, MAZE_MAP$)-20;
} else {
- .@mx=50; // Wouldn't (30,30) be safer?
- .@my=50;
+ .@mx=40; // Wouldn't (30,30) be safer?
+ .@my=40;
}
do {
.@x = rand2(20, .@mx);