diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-04 18:48:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-04 18:48:31 -0300 |
commit | e00b1450e871b2579b403e21eb44441566a3ab98 (patch) | |
tree | 6f80d7b45cd0f71afffa9fe769057df10efe28d7 /npc/functions | |
parent | 90543da98ee7aefd54bb1b4c8b227927b22227f4 (diff) | |
download | serverdata-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')
-rw-r--r-- | npc/functions/maze.txt | 4 |
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); |