summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-04 18:33:53 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-01-04 18:33:53 +0000
commit9d26e6b5088c10b1f565e31b9a273e6ed48cad38 (patch)
treec3b4d05273c3364d6ffe685f0bcf811606a2b4dc /src/map/atcommand.c
parenta13a8fdba0ca940376259413f5f48f8ed6e6d354 (diff)
downloadhercules-9d26e6b5088c10b1f565e31b9a273e6ed48cad38.tar.gz
hercules-9d26e6b5088c10b1f565e31b9a273e6ed48cad38.tar.bz2
hercules-9d26e6b5088c10b1f565e31b9a273e6ed48cad38.tar.xz
hercules-9d26e6b5088c10b1f565e31b9a273e6ed48cad38.zip
- Updated /doc from jAthena
- Completed adding of the new cities to @go > that function is ugly and needs a complete rewrite, asap - Updated thor volcano warps git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9615 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 0784dc571..b6895af08 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -3316,7 +3316,7 @@ int atcommand_go(
{ MAP_UMBALA, 89, 157 }, // 12=Umbala
{ MAP_NIFLHEIM, 21, 153 }, // 13=Niflheim
{ MAP_LOUYANG, 217, 40 }, // 14=Lou Yang
- { "new_zone01.gat", 53, 111 }, // 15=Training Grounds
+ { MAP_NOVICE, 53, 111 }, // 15=Training Grounds
{ MAP_JAIL, 23, 61 }, // 16=Prison
{ MAP_JAWAII, 249, 127 }, // 17=Jawaii
{ MAP_AYOTHAYA, 151, 117 }, // 18=Ayothaya
@@ -3352,7 +3352,8 @@ int atcommand_go(
clif_displaymessage(fd, " 12=Umbala 13=Niflheim 14=Lou Yang");
clif_displaymessage(fd, " 15=Novice Grounds 16=Prison 17=Jawaii");
clif_displaymessage(fd, " 18=Ayothaya 19=Einbroch 20=Lighthalzen");
- clif_displaymessage(fd, " 21=Einbech 22=Hugel");
+ clif_displaymessage(fd, " 21=Einbech 22=Hugel 23=Rachel");
+ clif_displaymessage(fd, " 24=Veins");
return -1;
} else {
// get possible name of the city and add .gat if not in the name
@@ -3423,6 +3424,10 @@ int atcommand_go(
town = 21;
} else if (strncmp(map_name, "hugel.gat", 3) == 0) { // 3 first characters
town = 22;
+ } else if (strncmp(map_name, "rachel.gat", 3) == 0) { // 3 first characters
+ town = 23;
+ } else if (strncmp(map_name, "veins.gat", 3) == 0) { // 3 first characters
+ town = 24;
}
if (town >= -3 && town <= -1) {