diff options
author | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-13 20:24:08 +0000 |
---|---|---|
committer | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-13 20:24:08 +0000 |
commit | ed39bb7197c749c28f1de75a4219329465b0fa08 (patch) | |
tree | f0b59d7408c3725da780acc84f8e00e55311a786 /src/common/mapindex.h | |
parent | 6f11fef3afc1a235628ff21aa2f2348abab4a97f (diff) | |
download | hercules-ed39bb7197c749c28f1de75a4219329465b0fa08.tar.gz hercules-ed39bb7197c749c28f1de75a4219329465b0fa08.tar.bz2 hercules-ed39bb7197c749c28f1de75a4219329465b0fa08.tar.xz hercules-ed39bb7197c749c28f1de75a4219329465b0fa08.zip |
Mapcache update, should polish off remaining bugs
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10003 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/mapindex.h')
-rw-r--r-- | src/common/mapindex.h | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/src/common/mapindex.h b/src/common/mapindex.h index a4aabbc7b..dfcb150e2 100644 --- a/src/common/mapindex.h +++ b/src/common/mapindex.h @@ -12,31 +12,32 @@ extern char mapindex_cfgfile[80]; //#define MAPINDEX_AUTOADD //Some definitions for the mayor city maps. -#define MAP_PRONTERA "prontera.gat" -#define MAP_GEFFEN "geffen.gat" -#define MAP_MORROC "morocc.gat" -#define MAP_ALBERTA "alberta.gat" -#define MAP_PAYON "payon.gat" -#define MAP_IZLUDE "izlude.gat" -#define MAP_ALDEBARAN "aldebaran.gat" -#define MAP_LUTIE "xmas.gat" -#define MAP_COMODO "comodo.gat" -#define MAP_YUNO "yuno.gat" -#define MAP_AMATSU "amatsu.gat" -#define MAP_GONRYUN "gonryun.gat" -#define MAP_UMBALA "umbala.gat" -#define MAP_NIFLHEIM "niflheim.gat" -#define MAP_LOUYANG "louyang.gat" -#define MAP_JAWAII "jawaii.gat" -#define MAP_AYOTHAYA "ayothaya.gat" -#define MAP_EINBROCH "einbroch.gat" -#define MAP_LIGHTHALZEN "lighthalzen.gat" -#define MAP_EINBECH "einbech.gat" -#define MAP_HUGEL "hugel.gat" -#define MAP_RACHEL "rachel.gat" -#define MAP_VEINS "veins.gat" -#define MAP_JAIL "sec_pri.gat" -#define MAP_NOVICE "new_zone01.gat" +#define MAP_PRONTERA "prontera" +#define MAP_GEFFEN "geffen" +#define MAP_MORROC "morocc" +#define MAP_ALBERTA "alberta" +#define MAP_PAYON "payon" +#define MAP_IZLUDE "izlude" +#define MAP_ALDEBARAN "aldebaran" +#define MAP_LUTIE "xmas" +#define MAP_COMODO "comodo" +#define MAP_YUNO "yuno" +#define MAP_AMATSU "amatsu" +#define MAP_GONRYUN "gonryun" +#define MAP_UMBALA "umbala" +#define MAP_NIFLHEIM "niflheim" +#define MAP_LOUYANG "louyang" +#define MAP_JAWAII "jawaii" +#define MAP_AYOTHAYA "ayothaya" +#define MAP_EINBROCH "einbroch" +#define MAP_LIGHTHALZEN "lighthalzen" +#define MAP_EINBECH "einbech" +#define MAP_HUGEL "hugel" +#define MAP_RACHEL "rachel" +#define MAP_VEINS "veins" +#define MAP_JAIL "sec_pri" +#define MAP_NOVICE "new_zone01" +int mapindex_addmap(int index, const char *name); unsigned short mapindex_name2id(const char*); const char* mapindex_id2name(unsigned short); void mapindex_init(void); |