diff options
Diffstat (limited to 'world/map')
-rw-r--r-- | world/map/data/005-3.wlk | bin | 13924 -> 13924 bytes | |||
-rw-r--r-- | world/map/data/045-1.wlk | bin | 40004 -> 40004 bytes | |||
-rw-r--r-- | world/map/npc/026-1/munro.txt | 3 | ||||
-rw-r--r-- | world/map/npc/027-1/golbenez.txt | 3 | ||||
-rw-r--r-- | world/map/npc/functions/game_rules.txt | 2 |
5 files changed, 5 insertions, 3 deletions
diff --git a/world/map/data/005-3.wlk b/world/map/data/005-3.wlk Binary files differindex 1455f659..818b5cd4 100644 --- a/world/map/data/005-3.wlk +++ b/world/map/data/005-3.wlk diff --git a/world/map/data/045-1.wlk b/world/map/data/045-1.wlk Binary files differindex 9fe0d480..3786dc34 100644 --- a/world/map/data/045-1.wlk +++ b/world/map/data/045-1.wlk diff --git a/world/map/npc/026-1/munro.txt b/world/map/npc/026-1/munro.txt index ab304091..9522102c 100644 --- a/world/map/npc/026-1/munro.txt +++ b/world/map/npc/026-1/munro.txt @@ -44,6 +44,7 @@ L_Exit: end; OnInit: + if (debug >= 2) end; initnpctimer; end; @@ -79,7 +80,7 @@ function|script|CheckMunro|, if ((gettime(6) == 10 && gettime(5) >= 27) || (gettime(6) == 11 && gettime(5) <= 5)) goto L_Return; - if ((gettime(6) == 12 && gettime(5) >= 23) || (gettime(6) == 12 && gettime(5) <= 26)) + if (gettime(6) == 12 && gettime(5) >= 23 && gettime(5) <= 26) goto L_Return; callfunc "UnequipLater"; diff --git a/world/map/npc/027-1/golbenez.txt b/world/map/npc/027-1/golbenez.txt index 34885a34..f8fe4a70 100644 --- a/world/map/npc/027-1/golbenez.txt +++ b/world/map/npc/027-1/golbenez.txt @@ -38,11 +38,12 @@ L_Weak: // Golbenez resets the graveyard monsters when no players are present // He's such an evil guy! OnInit: + if (debug >= 2) end; initnpctimer; end; OnTimer10000: - if (getareausers("027-1.gat", 21, 30, 112, 105) == 0) + if (getmapusers("027-1.gat") == 0) killmonsterall "027-1.gat"; setnpctimer 0; diff --git a/world/map/npc/functions/game_rules.txt b/world/map/npc/functions/game_rules.txt index bbcb5732..7ede18ea 100644 --- a/world/map/npc/functions/game_rules.txt +++ b/world/map/npc/functions/game_rules.txt @@ -93,7 +93,7 @@ L_Spanish: mes "2. No utilizar programas automáticos (incluyendo CUALQUIER actividad con el usuario lejos del teclado o el seguimiento automático)"; mes "3. No envíe mensajes publicitarios o inunde el chat de mensajes (incluyendo los mensajes de intercambio)"; mes "4. No mendigar."; - mes "5. Escriba únicamente en Inglés en el chat publico"; + mes "5. Escriba únicamente en Inglés en el chat público"; mes "6. Trate a los demás de la misma forma que le gustaría ser tratado"; next; mes "El uso de programas automáticos para jugar sin estar frente al teclado se determinará hablando con los jugadores que estén moviéndose y/o atacando."; |