From 90eefa03faff925a3d91e6041c63965a6b39c1b3 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Wed, 6 Feb 2013 00:08:48 -0200 Subject: Fixed Bug #7056 atoll was introduced in a 2011 lib and vc9 and 10 dont have that, dropping to atol since we dont need the int64 and using a tricky conversion to get it to unsigned http://hercules.ws/board/tracker/issue-7056-compiling-error/ Signed-off-by: shennetsind --- src/char/int_guild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/char/int_guild.c b/src/char/int_guild.c index b3a907b1a..c18bf7d3c 100644 --- a/src/char/int_guild.c +++ b/src/char/int_guild.c @@ -602,7 +602,7 @@ static struct guild_castle* inter_guildcastle_fromsql(int castle_id) // Read exp_guild.txt static bool exp_guild_parse_row(char* split[], int column, int current) { - unsigned int exp = atoll(split[0]); + unsigned int exp = (unsigned int)atol(split[0]); if (exp < 0 || exp >= UINT_MAX) { ShowError("exp_guild: Invalid exp %d at line %d\n", exp, current); -- cgit v1.2.3-60-g2f50 From 2ae187d00651c406a7a1c0c1cbc1495566d1607b Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 7 Feb 2013 00:23:37 -0200 Subject: Fixing mistake in modified source code headers Signed-off-by: shennetsind --- src/char/int_guild.c | 2 +- src/char/int_pet.c | 2 +- src/common/core.c | 2 +- src/common/mapindex.c | 2 +- src/common/sql.c | 2 +- src/common/sql.h | 2 +- src/login/login.c | 2 +- src/map/battle.c | 2 +- src/map/battle.h | 2 +- src/map/chrif.c | 2 +- src/map/clif.c | 2 +- src/map/elemental.c | 2 +- src/map/homunculus.c | 2 +- src/map/map.c | 2 +- src/map/map.h | 2 +- src/map/mercenary.c | 2 +- src/map/mob.c | 2 +- src/map/npc.c | 2 +- src/map/pc.c | 2 +- src/map/pc.h | 2 +- src/map/script.c | 2 +- src/map/skill.c | 2 +- src/map/status.c | 2 +- src/map/unit.c | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/char/int_guild.c b/src/char/int_guild.c index c18bf7d3c..e25ebd902 100644 --- a/src/char/int_guild.c +++ b/src/char/int_guild.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/mmo.h" diff --git a/src/char/int_pet.c b/src/char/int_pet.c index d9b0cf5ef..7a6c217f9 100644 --- a/src/char/int_pet.c +++ b/src/char/int_pet.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/mmo.h" #include "../common/malloc.h" diff --git a/src/common/core.c b/src/common/core.c index b1714b7a5..42cdfa7cd 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/mmo.h" #include "../common/showmsg.h" diff --git a/src/common/mapindex.c b/src/common/mapindex.c index cea945ac0..685af641c 100644 --- a/src/common/mapindex.c +++ b/src/common/mapindex.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/mmo.h" #include "../common/showmsg.h" diff --git a/src/common/sql.c b/src/common/sql.c index 73c4181d9..b842db46d 100644 --- a/src/common/sql.c +++ b/src/common/sql.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/malloc.h" diff --git a/src/common/sql.h b/src/common/sql.h index 5ac92665e..b7159ec90 100644 --- a/src/common/sql.h +++ b/src/common/sql.h @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #ifndef _COMMON_SQL_H_ #define _COMMON_SQL_H_ diff --git a/src/login/login.c b/src/login/login.c index 625e0f5c6..7f272e2a4 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/core.h" #include "../common/db.h" diff --git a/src/map/battle.c b/src/map/battle.c index f9748833f..2ad066d33 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/timer.h" diff --git a/src/map/battle.h b/src/map/battle.h index 1354da78a..cd626cd6b 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #ifndef _BATTLE_H_ #define _BATTLE_H_ diff --git a/src/map/chrif.c b/src/map/chrif.c index 3ad164b89..06eef0564 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/malloc.h" diff --git a/src/map/clif.c b/src/map/clif.c index 8d5090c2c..6d9e57bd2 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/socket.h" diff --git a/src/map/elemental.c b/src/map/elemental.c index f6c9eff84..33ef4d1b9 100644 --- a/src/map/elemental.c +++ b/src/map/elemental.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/malloc.h" diff --git a/src/map/homunculus.c b/src/map/homunculus.c index c94a95775..92868c7c7 100644 --- a/src/map/homunculus.c +++ b/src/map/homunculus.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/malloc.h" diff --git a/src/map/map.c b/src/map/map.c index d2cc9c4a9..6f9401dad 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/core.h" diff --git a/src/map/map.h b/src/map/map.h index 06995024f..73f8e694b 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #ifndef _MAP_H_ #define _MAP_H_ diff --git a/src/map/mercenary.c b/src/map/mercenary.c index c3fb8e3e2..a97651b87 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/malloc.h" diff --git a/src/map/mob.c b/src/map/mob.c index aceebc506..4f28923e9 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/timer.h" diff --git a/src/map/npc.c b/src/map/npc.c index 383cd031a..ba476e810 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/timer.h" diff --git a/src/map/pc.c b/src/map/pc.c index 6e24d7d49..0dd210394 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/core.h" // get_svn_revision() diff --git a/src/map/pc.h b/src/map/pc.h index ac1950a69..6e56a612e 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #ifndef _PC_H_ #define _PC_H_ diff --git a/src/map/script.c b/src/map/script.c index b4f0a5d9b..a6d588113 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams //#define DEBUG_DISP //#define DEBUG_DISASM diff --git a/src/map/skill.c b/src/map/skill.c index 2cc3ed1ab..972aa8129 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/timer.h" diff --git a/src/map/status.c b/src/map/status.c index 8fd48aefc..0ee993de4 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/cbasetypes.h" #include "../common/timer.h" diff --git a/src/map/unit.c b/src/map/unit.c index 45aca7d41..1d37704e0 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1,6 +1,6 @@ // Copyright (c) Hercules dev team, licensed under GNU GPL. // See the LICENSE file -// Portions Copyright (c) Athena dev team +// Portions Copyright (c) Athena Dev Teams #include "../common/showmsg.h" #include "../common/timer.h" -- cgit v1.2.3-60-g2f50 From 324073aff5d869d9afdff79f24e14d66dbfd057c Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 7 Feb 2013 14:35:34 -0200 Subject: Fixing a layout issue on README.md Signed-off-by: shennetsind --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da3077d15..5b7aac287 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,8 @@ relevant to your Operation System, please refer to the Wiki (links at the end of * Step 2: rpm -Uvhhttp://repo.webtatic.com/yum/centos/5/latest.rpm * Step 3: yum install --enablerepo=webtatic git-all * Step 4: yum install --enablerepo=webtatic --disableexcludes=main git-all - (For Debian) Type: apt-get install git make gcc libmysqlclient-dev zlib1g-dev libpcre3-dev + * (For Debian/Others) + * Type: apt-get install git make gcc libmysqlclient-dev zlib1g-dev libpcre3-dev * Type: mysql_secure_installation * Start your MySQL server * Setup a MySQL user: -- cgit v1.2.3-60-g2f50 From 6fb716102722944463d9cec9be8f46760fde9616 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 7 Feb 2013 16:36:39 -0200 Subject: Fixed Bug #7045 Fire Pillar is now removed by land protector, and no longer can be cast over land protector. http://hercules.ws/board/tracker/issue-7045-fire-pillar-and-land-protector/ Signed-off-by: shennetsind --- src/map/skill.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/map/skill.c b/src/map/skill.c index 972aa8129..ad52a5c1f 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -10612,6 +10612,8 @@ struct skill_unit_group* skill_unitsetting (struct block_list *src, uint16 skill break; case WZ_FIREPILLAR: + if( map_getcell(src->m, x, y, CELL_CHKLANDPROTECTOR) ) + return NULL; if((flag&1)!=0) limit=1000; val1=skill_lv+2; @@ -14712,7 +14714,7 @@ static int skill_cell_overlap(struct block_list *bl, va_list ap) skill_delunit(unit); return 1; } - if( !(skill_get_inf2(unit->group->skill_id)&(INF2_SONG_DANCE|INF2_TRAP)) ) { //It deletes everything except songs/dances and traps + if( !(skill_get_inf2(unit->group->skill_id)&(INF2_SONG_DANCE|INF2_TRAP)) || unit->group->skill_id == WZ_FIREPILLAR ) { //It deletes everything except songs/dances and traps skill_delunit(unit); return 1; } -- cgit v1.2.3-60-g2f50 From a4802eaef9d71283070f1f31c859da871a7c8d32 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 7 Feb 2013 16:39:58 -0200 Subject: Fixed Bug #6803 You no longer can dispell guild mates in non-pkable areas http://hercules.ws/board/tracker/issue-6803-dispell-bug/ Signed-off-by: shennetsind --- src/map/skill.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/map/skill.c b/src/map/skill.c index ad52a5c1f..4b9484609 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -6360,6 +6360,12 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui } if(status_isimmune(bl) || !tsc || !tsc->count) break; + + if( sd && dstsd && !map_flag_vs(sd->bl.m) && sd->status.guild_id == dstsd->status.guild_id ) { + clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); + break; + } + for(i=0;idata[i]) -- cgit v1.2.3-60-g2f50 From 54d0583c7bf443f6fdcc9d5c500188a4f0612357 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 7 Feb 2013 17:22:20 -0200 Subject: Partial Fix for Bug #6825 Hells Plant no longer can be stacked on the ground http://hercules.ws/board/tracker/issue-6825-hell-plant/ Signed-off-by: shennetsind --- db/pre-re/skill_unit_db.txt | 2 +- db/re/skill_unit_db.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/db/pre-re/skill_unit_db.txt b/db/pre-re/skill_unit_db.txt index fe43503a8..c2de0782f 100644 --- a/db/pre-re/skill_unit_db.txt +++ b/db/pre-re/skill_unit_db.txt @@ -150,7 +150,7 @@ 2485,0xe7, , 0, 3,1000,enemy, 0x098 //GN_DEMONIC_FIRE 2487,0xe8, , 0, 3,1000,enemy, 0x000 //GN_FIRE_EXPANSION_SMOKE_POWDER 2488,0xe9, , 0, 3,1000,enemy, 0x000 //GN_FIRE_EXPANSION_TEAR_GAS -2490,0xea, , 0, 1,1000,enemy, 0x000 //GN_HELLS_PLANT +2490,0xea, , 0, 1,1000,enemy, 0x002 //GN_HELLS_PLANT 3006,0x86, , 0, 2, 100,enemy, 0x018 //KO_BAKURETSU 3008,0x86, , 0, 2, 100,enemy, 0x018 //KO_MUCHANAGE diff --git a/db/re/skill_unit_db.txt b/db/re/skill_unit_db.txt index fc2c76bfd..3984ef64c 100644 --- a/db/re/skill_unit_db.txt +++ b/db/re/skill_unit_db.txt @@ -152,7 +152,7 @@ 2485,0xe7, , 0, 3,1000,enemy, 0x098 //GN_DEMONIC_FIRE 2487,0xe8, , 0, 3,1000,enemy, 0x000 //GN_FIRE_EXPANSION_SMOKE_POWDER 2488,0xe9, , 0, 3,1000,enemy, 0x000 //GN_FIRE_EXPANSION_TEAR_GAS -2490,0xea, , 0, 1,1000,enemy, 0x000 //GN_HELLS_PLANT +2490,0xea, , 0, 1,1000,enemy, 0x002 //GN_HELLS_PLANT 3006,0x86, , 0, 2, 100,enemy, 0x018 //KO_BAKURETSU 3008,0x86, , 0, 2, 100,enemy, 0x018 //KO_MUCHANAGE -- cgit v1.2.3-60-g2f50 From 4c9bfed8c21cb80a806fffc32c7ac629bdf73438 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 7 Feb 2013 22:15:52 -0200 Subject: Adjustment to skill_trap_type battle/skill config The effect of the config is now restricted to GvG. http://hercules.ws/board/tracker/issue-4832-hunter-ht-anklesnare-serious-bug/ Signed-off-by: shennetsind --- conf/battle/skill.conf | 6 +++--- src/map/skill.c | 2 +- src/map/status.c | 2 +- src/map/unit.c | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/conf/battle/skill.conf b/conf/battle/skill.conf index 0dd97610e..ecb2dd00a 100644 --- a/conf/battle/skill.conf +++ b/conf/battle/skill.conf @@ -276,7 +276,7 @@ invincible.nodamage: no // Default: yes dancing_weaponswitch_fix: yes -// Skill Trap Type -// 0: (official) traps only makes player unable to move after its walk path is complete, and it activates other traps on the way. -// 1: trap makes player stop moving right when stepping over it. +// Skill Trap Type (GvG) +// 0: (official) traps in GvG only makes player unable to move after its walk path is complete, and it activates other traps on the way. +// 1: trap in GvG makes player stop moving right when stepping over it. skill_trap_type: 0 diff --git a/src/map/skill.c b/src/map/skill.c index 4b9484609..cb15f0083 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -11459,7 +11459,7 @@ int skill_unit_onplace_timer (struct skill_unit *src, struct block_list *bl, uns const struct TimerData* td = tsc->data[type]?get_timer(tsc->data[type]->timer):NULL; if( td ) sec = DIFF_TICK(td->tick, tick); - if( sg->unit_id == UNT_MANHOLE || battle_config.skill_trap_type ) { + if( sg->unit_id == UNT_MANHOLE || battle_config.skill_trap_type || !map_flag_gvg(src->bl.m) ) { unit_movepos(bl, src->bl.x, src->bl.y, 0, 0); clif_fixpos(bl); } diff --git a/src/map/status.c b/src/map/status.c index 0ee993de4..97b7c61a1 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -8663,7 +8663,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val unit_stop_walking(bl,1); break; case SC_ANKLE: - if( battle_config.skill_trap_type ) + if( battle_config.skill_trap_type || !map_flag_gvg(bl->m) ) unit_stop_walking(bl,1); break; case SC_HIDING: diff --git a/src/map/unit.c b/src/map/unit.c index 1d37704e0..60de14093 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -353,7 +353,7 @@ int unit_walktoxy( struct block_list *bl, short x, short y, int flag) map_random_dir(bl, &ud->to_x, &ud->to_y); if(ud->walktimer != INVALID_TIMER) { - if( !battle_config.skill_trap_type && sc && sc->data[SC_ANKLE] ) // Ankle disallows you from changing your path + if( !battle_config.skill_trap_type && sc && map_flag_gvg(bl->m) && sc->data[SC_ANKLE] ) // Ankle disallows you from changing your path return 0; // When you come to the center of the grid because the change of destination while you're walking right now // Call a function from a timer unit_walktoxy_sub @@ -430,7 +430,7 @@ int unit_walktobl(struct block_list *bl, struct block_list *tbl, int range, int map_random_dir(bl, &ud->to_x, &ud->to_y); if(ud->walktimer != INVALID_TIMER) { - if( !battle_config.skill_trap_type && sc && sc->data[SC_ANKLE] ) // Ankle disallows you from changing your path + if( !battle_config.skill_trap_type && sc && map_flag_gvg(bl->m) && sc->data[SC_ANKLE] ) // Ankle disallows you from changing your path return 0; ud->state.change_walk_target = 1; set_mobstate(bl, flag&2); @@ -938,7 +938,7 @@ int unit_can_move(struct block_list *bl) { ) return 0; - if( sc->data[SC_ANKLE] && ( battle_config.skill_trap_type || !unit_is_walking(bl) ) ) // Ankle only stops you after you're done moving + if( sc->data[SC_ANKLE] && ( battle_config.skill_trap_type || ( !map_flag_gvg(bl->m) && !unit_is_walking(bl) ) ) ) // Ankle only stops you after you're done moving return 0; if (sc->opt1 > 0 && sc->opt1 != OPT1_STONEWAIT && sc->opt1 != OPT1_BURNING && !(sc->opt1 == OPT1_CRYSTALIZE && bl->type == BL_MOB)) -- cgit v1.2.3-60-g2f50 From 4b41901d3ecb01930a57e9b1d230e729d5feba38 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Fri, 8 Feb 2013 21:41:04 -0200 Subject: Fixing a logical issue in ST_RIDING --- db/packet_db.txt | 2 +- rAthena/char-server_sql/char_server_sql.1 | 79 ++ rAthena/rAthena.xcodeproj/project.pbxproj | 971 +++++++++++++++++++++ .../project.xcworkspace/contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate | Bin 0 -> 113853 bytes .../WorkspaceSettings.xcsettings | 10 + .../xcdebugger/Breakpoints.xcbkptlist | 5 + .../xcschemes/char-server_sql.xcscheme | 85 ++ .../xcschemes/login-server_sql.xcscheme | 85 ++ .../xcschemes/map-server_sql.xcscheme | 85 ++ .../xcschemes/xcschememanagement.plist | 42 + sql-files/upgrades/upgrade_2013.02.06_21.38.sql | 1 + src/map/skill.c | 2 +- 13 files changed, 1372 insertions(+), 2 deletions(-) create mode 100644 rAthena/char-server_sql/char_server_sql.1 create mode 100644 rAthena/rAthena.xcodeproj/project.pbxproj create mode 100644 rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings create mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist create mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme create mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme create mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme create mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 sql-files/upgrades/upgrade_2013.02.06_21.38.sql diff --git a/db/packet_db.txt b/db/packet_db.txt index 776fd3279..2692697af 100644 --- a/db/packet_db.txt +++ b/db/packet_db.txt @@ -34,7 +34,7 @@ // Client detection is faster when all clients use this version. // Version 23 is the latest Sakexe (above versions are for Renewal clients) //packet_db_ver: 25 -packet_db_ver: 30 +packet_db_ver: 31 packet_ver: 5 0x0064,55 diff --git a/rAthena/char-server_sql/char_server_sql.1 b/rAthena/char-server_sql/char_server_sql.1 new file mode 100644 index 000000000..4e61fbe92 --- /dev/null +++ b/rAthena/char-server_sql/char_server_sql.1 @@ -0,0 +1,79 @@ +.\"Modified from man(1) of FreeBSD, the NetBSD mdoc.template, and mdoc.samples. +.\"See Also: +.\"man mdoc.samples for a complete listing of options +.\"man mdoc for the short list of editing options +.\"/usr/share/misc/mdoc.template +.Dd 6/3/12 \" DATE +.Dt char-server_sql 1 \" Program name and manual section number +.Os Darwin +.Sh NAME \" Section Header - required - don't modify +.Nm char-server_sql, +.\" The following lines are read in generating the apropos(man -k) database. Use only key +.\" words here as the database is built based on the words here and in the .ND line. +.Nm Other_name_for_same_program(), +.Nm Yet another name for the same program. +.\" Use .Nm macro to designate other names for the documented program. +.Nd This line parsed for whatis database. +.Sh SYNOPSIS \" Section Header - required - don't modify +.Nm +.Op Fl abcd \" [-abcd] +.Op Fl a Ar path \" [-a path] +.Op Ar file \" [file] +.Op Ar \" [file ...] +.Ar arg0 \" Underlined argument - use .Ar anywhere to underline +arg2 ... \" Arguments +.Sh DESCRIPTION \" Section Header - required - don't modify +Use the .Nm macro to refer to your program throughout the man page like such: +.Nm +Underlining is accomplished with the .Ar macro like this: +.Ar underlined text . +.Pp \" Inserts a space +A list of items with descriptions: +.Bl -tag -width -indent \" Begins a tagged list +.It item a \" Each item preceded by .It macro +Description of item a +.It item b +Description of item b +.El \" Ends the list +.Pp +A list of flags and their descriptions: +.Bl -tag -width -indent \" Differs from above in tag removed +.It Fl a \"-a flag as a list item +Description of -a flag +.It Fl b +Description of -b flag +.El \" Ends the list +.Pp +.\" .Sh ENVIRONMENT \" May not be needed +.\" .Bl -tag -width "ENV_VAR_1" -indent \" ENV_VAR_1 is width of the string ENV_VAR_1 +.\" .It Ev ENV_VAR_1 +.\" Description of ENV_VAR_1 +.\" .It Ev ENV_VAR_2 +.\" Description of ENV_VAR_2 +.\" .El +.Sh FILES \" File used or created by the topic of the man page +.Bl -tag -width "/Users/joeuser/Library/really_long_file_name" -compact +.It Pa /usr/share/file_name +FILE_1 description +.It Pa /Users/joeuser/Library/really_long_file_name +FILE_2 description +.El \" Ends the list +.\" .Sh DIAGNOSTICS \" May not be needed +.\" .Bl -diag +.\" .It Diagnostic Tag +.\" Diagnostic informtion here. +.\" .It Diagnostic Tag +.\" Diagnostic informtion here. +.\" .El +.Sh SEE ALSO +.\" List links in ascending order by section, alphabetically within a section. +.\" Please do not reference files that do not exist without filing a bug report +.Xr a 1 , +.Xr b 1 , +.Xr c 1 , +.Xr a 2 , +.Xr b 2 , +.Xr a 3 , +.Xr b 3 +.\" .Sh BUGS \" Document known, unremedied bugs +.\" .Sh HISTORY \" Document history if command behaves in a unique manner \ No newline at end of file diff --git a/rAthena/rAthena.xcodeproj/project.pbxproj b/rAthena/rAthena.xcodeproj/project.pbxproj new file mode 100644 index 000000000..84f6f6ee6 --- /dev/null +++ b/rAthena/rAthena.xcodeproj/project.pbxproj @@ -0,0 +1,971 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 538CB46A15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; }; + 538CB46B15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; }; + 538CB46C15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; }; + 538CB46D15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; }; + 538CB46E15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; }; + 538CB46F15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; }; + 538CB47015AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; }; + 538CB47115AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; }; + 538CB47215AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; }; + 538CB47315AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; }; + 538CB47415AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; }; + 538CB47515AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; }; + 538CB47615AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; }; + 538CB47715AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; }; + 538CB47815AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; }; + 538CB47915AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; }; + 538CB47A15AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; }; + 538CB47B15AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; }; + 53C193E1157BFAF00012D90B /* account_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193D9157BFAF00012D90B /* account_sql.c */; }; + 53C193E2157BFAF00012D90B /* ipban_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DB157BFAF00012D90B /* ipban_sql.c */; }; + 53C193E3157BFAF00012D90B /* login.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DD157BFAF00012D90B /* login.c */; }; + 53C193E4157BFAF00012D90B /* loginlog_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DF157BFAF00012D90B /* loginlog_sql.c */; }; + 53C1942E157BFE790012D90B /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193E9157BFE790012D90B /* conf.c */; }; + 53C1942F157BFE790012D90B /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193EB157BFE790012D90B /* core.c */; }; + 53C19430157BFE790012D90B /* db.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193ED157BFE790012D90B /* db.c */; }; + 53C19431157BFE790012D90B /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193EF157BFE790012D90B /* des.c */; }; + 53C19432157BFE790012D90B /* ers.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F1157BFE790012D90B /* ers.c */; }; + 53C19433157BFE790012D90B /* grfio.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F3157BFE790012D90B /* grfio.c */; }; + 53C19436157BFE790012D90B /* malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F9157BFE790012D90B /* malloc.c */; }; + 53C19437157BFE790012D90B /* mapindex.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193FB157BFE790012D90B /* mapindex.c */; }; + 53C19438157BFE790012D90B /* md5calc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193FD157BFE790012D90B /* md5calc.c */; }; + 53C19439157BFE790012D90B /* nullpo.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19400157BFE790012D90B /* nullpo.c */; }; + 53C19452157BFE790012D90B /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1941C157BFE790012D90B /* random.c */; }; + 53C19453157BFE790012D90B /* showmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1941E157BFE790012D90B /* showmsg.c */; }; + 53C19454157BFE790012D90B /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19420157BFE790012D90B /* socket.c */; }; + 53C19455157BFE790012D90B /* sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19423157BFE790012D90B /* sql.c */; }; + 53C19456157BFE790012D90B /* strlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19425157BFE790012D90B /* strlib.c */; }; + 53C19457157BFE790012D90B /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19427157BFE790012D90B /* thread.c */; }; + 53C19458157BFE790012D90B /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19429157BFE790012D90B /* timer.c */; }; + 53C19459157BFE790012D90B /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1942B157BFE790012D90B /* utils.c */; }; + 53C19501157C039A0012D90B /* atcommand.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194AE157C039A0012D90B /* atcommand.c */; }; + 53C19502157C039A0012D90B /* battle.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B0157C039A0012D90B /* battle.c */; }; + 53C19503157C039A0012D90B /* battleground.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B2157C039A0012D90B /* battleground.c */; }; + 53C19504157C039A0012D90B /* buyingstore.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B4157C039A0012D90B /* buyingstore.c */; }; + 53C19505157C039A0012D90B /* chat.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B6157C039A0012D90B /* chat.c */; }; + 53C19506157C039A0012D90B /* chrif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B8157C039A0012D90B /* chrif.c */; }; + 53C19507157C039A0012D90B /* clif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194BA157C039A0012D90B /* clif.c */; }; + 53C19508157C039A0012D90B /* date.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C5157C039A0012D90B /* date.c */; }; + 53C19509157C039A0012D90B /* duel.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C7157C039A0012D90B /* duel.c */; }; + 53C1950A157C039A0012D90B /* elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C9157C039A0012D90B /* elemental.c */; }; + 53C1950B157C039A0012D90B /* guild.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CB157C039A0012D90B /* guild.c */; }; + 53C1950C157C039A0012D90B /* homunculus.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CD157C039A0012D90B /* homunculus.c */; }; + 53C1950D157C039A0012D90B /* instance.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CF157C039A0012D90B /* instance.c */; }; + 53C1950E157C039A0012D90B /* intif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D1157C039A0012D90B /* intif.c */; }; + 53C1950F157C039A0012D90B /* itemdb.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D3157C039A0012D90B /* itemdb.c */; }; + 53C19510157C039A0012D90B /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D5157C039A0012D90B /* log.c */; }; + 53C19511157C039A0012D90B /* mail.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D7157C039A0012D90B /* mail.c */; }; + 53C19512157C039A0012D90B /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D9157C039A0012D90B /* map.c */; }; + 53C19513157C039A0012D90B /* mapreg_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DB157C039A0012D90B /* mapreg_sql.c */; }; + 53C19514157C039A0012D90B /* mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DD157C039A0012D90B /* mercenary.c */; }; + 53C19515157C039A0012D90B /* mob.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DF157C039A0012D90B /* mob.c */; }; + 53C19516157C039A0012D90B /* npc_chat.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E1157C039A0012D90B /* npc_chat.c */; }; + 53C19517157C039A0012D90B /* npc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E2157C039A0012D90B /* npc.c */; }; + 53C19518157C039A0012D90B /* party.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E4157C039A0012D90B /* party.c */; }; + 53C19519157C039A0012D90B /* path.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E6157C039A0012D90B /* path.c */; }; + 53C1951A157C039A0012D90B /* pc_groups.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E8157C039A0012D90B /* pc_groups.c */; }; + 53C1951B157C039A0012D90B /* pc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194EA157C039A0012D90B /* pc.c */; }; + 53C1951C157C039A0012D90B /* pet.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194ED157C039A0012D90B /* pet.c */; }; + 53C1951D157C039A0012D90B /* quest.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194EF157C039A0012D90B /* quest.c */; }; + 53C1951E157C039A0012D90B /* script.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F1157C039A0012D90B /* script.c */; }; + 53C1951F157C039A0012D90B /* searchstore.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F3157C039A0012D90B /* searchstore.c */; }; + 53C19520157C039A0012D90B /* skill.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F5157C039A0012D90B /* skill.c */; }; + 53C19521157C039A0012D90B /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F7157C039A0012D90B /* status.c */; }; + 53C19522157C039A0012D90B /* storage.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F9157C039A0012D90B /* storage.c */; }; + 53C19523157C039A0012D90B /* trade.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FB157C039A0012D90B /* trade.c */; }; + 53C19524157C039A0012D90B /* unit.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FD157C039A0012D90B /* unit.c */; }; + 53C19525157C039A0012D90B /* vending.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FF157C039A0012D90B /* vending.c */; }; + 53C1954C157C045D0012D90B /* char.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19534157C045D0012D90B /* char.c */; }; + 53C1954D157C045D0012D90B /* int_auction.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19536157C045D0012D90B /* int_auction.c */; }; + 53C1954E157C045D0012D90B /* int_elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19538157C045D0012D90B /* int_elemental.c */; }; + 53C1954F157C045D0012D90B /* int_guild.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953A157C045D0012D90B /* int_guild.c */; }; + 53C19550157C045D0012D90B /* int_homun.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953C157C045D0012D90B /* int_homun.c */; }; + 53C19551157C045D0012D90B /* int_mail.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953E157C045D0012D90B /* int_mail.c */; }; + 53C19552157C045D0012D90B /* int_mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19540157C045D0012D90B /* int_mercenary.c */; }; + 53C19553157C045D0012D90B /* int_party.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19542157C045D0012D90B /* int_party.c */; }; + 53C19554157C045D0012D90B /* int_pet.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19544157C045D0012D90B /* int_pet.c */; }; + 53C19555157C045D0012D90B /* int_quest.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19546157C045D0012D90B /* int_quest.c */; }; + 53C19556157C045D0012D90B /* int_storage.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19548157C045D0012D90B /* int_storage.c */; }; + 53C19557157C045D0012D90B /* inter.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1954A157C045D0012D90B /* inter.c */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 53C193CC157BFA830012D90B /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = /usr/share/man/man1/; + dstSubfolderSpec = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 1; + }; + 53C194A2157C03260012D90B /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = /usr/share/man/man1/; + dstSubfolderSpec = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 1; + }; + 53C19528157C044D0012D90B /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = /usr/share/man/man1/; + dstSubfolderSpec = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 1; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 53006E8715AA145F00EA0266 /* general.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = general.h; sourceTree = ""; }; + 53006E8815AA145F00EA0266 /* swordsman.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swordsman.h; sourceTree = ""; }; + 53006E8915AA145F00EA0266 /* const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = const.h; sourceTree = ""; }; + 53006E8A15AA145F00EA0266 /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = ""; }; + 53006E8B15AA145F00EA0266 /* renewal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = renewal.h; sourceTree = ""; }; + 53006E8C15AA145F00EA0266 /* secure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = secure.h; sourceTree = ""; }; + 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = evdp_epoll.c; sourceTree = ""; }; + 538CB45F15AD9B1700DF3F0D /* evdp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evdp.h; sourceTree = ""; }; + 538CB46015AD9B1700DF3F0D /* mempool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mempool.c; sourceTree = ""; }; + 538CB46115AD9B1700DF3F0D /* mempool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mempool.h; sourceTree = ""; }; + 538CB46215AD9B1700DF3F0D /* mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mutex.c; sourceTree = ""; }; + 538CB46315AD9B1700DF3F0D /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = ""; }; + 538CB46415AD9B1700DF3F0D /* netbuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = netbuffer.c; sourceTree = ""; }; + 538CB46515AD9B1700DF3F0D /* netbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = netbuffer.h; sourceTree = ""; }; + 538CB46615AD9B1700DF3F0D /* network.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = network.c; sourceTree = ""; }; + 538CB46715AD9B1700DF3F0D /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = ""; }; + 538CB46815AD9B1700DF3F0D /* raconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raconf.c; sourceTree = ""; }; + 538CB46915AD9B1700DF3F0D /* raconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = raconf.h; sourceTree = ""; }; + 53C193CE157BFA830012D90B /* login-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "login-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; }; + 53C193D9157BFAF00012D90B /* account_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = account_sql.c; path = ../../src/login/account_sql.c; sourceTree = ""; }; + 53C193DA157BFAF00012D90B /* account.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = account.h; path = ../../src/login/account.h; sourceTree = ""; }; + 53C193DB157BFAF00012D90B /* ipban_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipban_sql.c; path = ../../src/login/ipban_sql.c; sourceTree = ""; }; + 53C193DC157BFAF00012D90B /* ipban.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ipban.h; path = ../../src/login/ipban.h; sourceTree = ""; }; + 53C193DD157BFAF00012D90B /* login.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = login.c; path = ../../src/login/login.c; sourceTree = ""; }; + 53C193DE157BFAF00012D90B /* login.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = login.h; path = ../../src/login/login.h; sourceTree = ""; }; + 53C193DF157BFAF00012D90B /* loginlog_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loginlog_sql.c; path = ../../src/login/loginlog_sql.c; sourceTree = ""; }; + 53C193E0157BFAF00012D90B /* loginlog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loginlog.h; path = ../../src/login/loginlog.h; sourceTree = ""; }; + 53C193E6157BFE790012D90B /* atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atomic.h; sourceTree = ""; }; + 53C193E7157BFE790012D90B /* cbasetypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cbasetypes.h; sourceTree = ""; }; + 53C193E9157BFE790012D90B /* conf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = conf.c; sourceTree = ""; }; + 53C193EA157BFE790012D90B /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = ""; }; + 53C193EB157BFE790012D90B /* core.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = core.c; sourceTree = ""; }; + 53C193EC157BFE790012D90B /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = ""; }; + 53C193ED157BFE790012D90B /* db.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = db.c; sourceTree = ""; }; + 53C193EE157BFE790012D90B /* db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = db.h; sourceTree = ""; }; + 53C193EF157BFE790012D90B /* des.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = des.c; sourceTree = ""; }; + 53C193F0157BFE790012D90B /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = ""; }; + 53C193F1157BFE790012D90B /* ers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ers.c; sourceTree = ""; }; + 53C193F2157BFE790012D90B /* ers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ers.h; sourceTree = ""; }; + 53C193F3157BFE790012D90B /* grfio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grfio.c; sourceTree = ""; }; + 53C193F4157BFE790012D90B /* grfio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = grfio.h; sourceTree = ""; }; + 53C193F9157BFE790012D90B /* malloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = malloc.c; sourceTree = ""; }; + 53C193FA157BFE790012D90B /* malloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = malloc.h; sourceTree = ""; }; + 53C193FB157BFE790012D90B /* mapindex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mapindex.c; sourceTree = ""; }; + 53C193FC157BFE790012D90B /* mapindex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapindex.h; sourceTree = ""; }; + 53C193FD157BFE790012D90B /* md5calc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = md5calc.c; sourceTree = ""; }; + 53C193FE157BFE790012D90B /* md5calc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5calc.h; sourceTree = ""; }; + 53C193FF157BFE790012D90B /* mmo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmo.h; sourceTree = ""; }; + 53C19400157BFE790012D90B /* nullpo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nullpo.c; sourceTree = ""; }; + 53C19401157BFE790012D90B /* nullpo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nullpo.h; sourceTree = ""; }; + 53C1941C157BFE790012D90B /* random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = random.c; sourceTree = ""; }; + 53C1941D157BFE790012D90B /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = random.h; sourceTree = ""; }; + 53C1941E157BFE790012D90B /* showmsg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = showmsg.c; sourceTree = ""; }; + 53C1941F157BFE790012D90B /* showmsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = showmsg.h; sourceTree = ""; }; + 53C19420157BFE790012D90B /* socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socket.c; sourceTree = ""; }; + 53C19421157BFE790012D90B /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = ""; }; + 53C19422157BFE790012D90B /* spinlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spinlock.h; sourceTree = ""; }; + 53C19423157BFE790012D90B /* sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sql.c; sourceTree = ""; }; + 53C19424157BFE790012D90B /* sql.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sql.h; sourceTree = ""; }; + 53C19425157BFE790012D90B /* strlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strlib.c; sourceTree = ""; }; + 53C19426157BFE790012D90B /* strlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strlib.h; sourceTree = ""; }; + 53C19427157BFE790012D90B /* thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thread.c; sourceTree = ""; }; + 53C19428157BFE790012D90B /* thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread.h; sourceTree = ""; }; + 53C19429157BFE790012D90B /* timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = timer.c; sourceTree = ""; }; + 53C1942A157BFE790012D90B /* timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = ""; }; + 53C1942B157BFE790012D90B /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utils.c; sourceTree = ""; }; + 53C1942C157BFE790012D90B /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils.h; sourceTree = ""; }; + 53C1942D157BFE790012D90B /* winapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = winapi.h; sourceTree = ""; }; + 53C194A4157C03260012D90B /* map-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "map-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; }; + 53C194AE157C039A0012D90B /* atcommand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = atcommand.c; path = ../../src/map/atcommand.c; sourceTree = ""; }; + 53C194AF157C039A0012D90B /* atcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = atcommand.h; path = ../../src/map/atcommand.h; sourceTree = ""; }; + 53C194B0157C039A0012D90B /* battle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battle.c; path = ../../src/map/battle.c; sourceTree = ""; usesTabs = 1; }; + 53C194B1157C039A0012D90B /* battle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battle.h; path = ../../src/map/battle.h; sourceTree = ""; }; + 53C194B2157C039A0012D90B /* battleground.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battleground.c; path = ../../src/map/battleground.c; sourceTree = ""; }; + 53C194B3157C039A0012D90B /* battleground.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battleground.h; path = ../../src/map/battleground.h; sourceTree = ""; }; + 53C194B4157C039A0012D90B /* buyingstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = buyingstore.c; path = ../../src/map/buyingstore.c; sourceTree = ""; }; + 53C194B5157C039A0012D90B /* buyingstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buyingstore.h; path = ../../src/map/buyingstore.h; sourceTree = ""; }; + 53C194B6157C039A0012D90B /* chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chat.c; path = ../../src/map/chat.c; sourceTree = ""; }; + 53C194B7157C039A0012D90B /* chat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chat.h; path = ../../src/map/chat.h; sourceTree = ""; }; + 53C194B8157C039A0012D90B /* chrif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chrif.c; path = ../../src/map/chrif.c; sourceTree = ""; }; + 53C194B9157C039A0012D90B /* chrif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chrif.h; path = ../../src/map/chrif.h; sourceTree = ""; }; + 53C194BA157C039A0012D90B /* clif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = clif.c; path = ../../src/map/clif.c; sourceTree = ""; usesTabs = 1; }; + 53C194BB157C039A0012D90B /* clif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clif.h; path = ../../src/map/clif.h; sourceTree = ""; }; + 53C194C5157C039A0012D90B /* date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = date.c; path = ../../src/map/date.c; sourceTree = ""; }; + 53C194C6157C039A0012D90B /* date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = date.h; path = ../../src/map/date.h; sourceTree = ""; }; + 53C194C7157C039A0012D90B /* duel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = duel.c; path = ../../src/map/duel.c; sourceTree = ""; }; + 53C194C8157C039A0012D90B /* duel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = duel.h; path = ../../src/map/duel.h; sourceTree = ""; }; + 53C194C9157C039A0012D90B /* elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = elemental.c; path = ../../src/map/elemental.c; sourceTree = ""; }; + 53C194CA157C039A0012D90B /* elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elemental.h; path = ../../src/map/elemental.h; sourceTree = ""; }; + 53C194CB157C039A0012D90B /* guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = guild.c; path = ../../src/map/guild.c; sourceTree = ""; }; + 53C194CC157C039A0012D90B /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = ../../src/map/guild.h; sourceTree = ""; }; + 53C194CD157C039A0012D90B /* homunculus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = homunculus.c; path = ../../src/map/homunculus.c; sourceTree = ""; }; + 53C194CE157C039A0012D90B /* homunculus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = homunculus.h; path = ../../src/map/homunculus.h; sourceTree = ""; }; + 53C194CF157C039A0012D90B /* instance.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = instance.c; path = ../../src/map/instance.c; sourceTree = ""; }; + 53C194D0157C039A0012D90B /* instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = instance.h; path = ../../src/map/instance.h; sourceTree = ""; }; + 53C194D1157C039A0012D90B /* intif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = intif.c; path = ../../src/map/intif.c; sourceTree = ""; }; + 53C194D2157C039A0012D90B /* intif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = intif.h; path = ../../src/map/intif.h; sourceTree = ""; }; + 53C194D3157C039A0012D90B /* itemdb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = itemdb.c; path = ../../src/map/itemdb.c; sourceTree = ""; }; + 53C194D4157C039A0012D90B /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemdb.h; path = ../../src/map/itemdb.h; sourceTree = ""; }; + 53C194D5157C039A0012D90B /* log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = log.c; path = ../../src/map/log.c; sourceTree = ""; }; + 53C194D6157C039A0012D90B /* log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = log.h; path = ../../src/map/log.h; sourceTree = ""; }; + 53C194D7157C039A0012D90B /* mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mail.c; path = ../../src/map/mail.c; sourceTree = ""; }; + 53C194D8157C039A0012D90B /* mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mail.h; path = ../../src/map/mail.h; sourceTree = ""; }; + 53C194D9157C039A0012D90B /* map.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = map.c; path = ../../src/map/map.c; sourceTree = ""; }; + 53C194DA157C039A0012D90B /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = map.h; path = ../../src/map/map.h; sourceTree = ""; }; + 53C194DB157C039A0012D90B /* mapreg_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mapreg_sql.c; path = ../../src/map/mapreg_sql.c; sourceTree = ""; }; + 53C194DC157C039A0012D90B /* mapreg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mapreg.h; path = ../../src/map/mapreg.h; sourceTree = ""; }; + 53C194DD157C039A0012D90B /* mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mercenary.c; path = ../../src/map/mercenary.c; sourceTree = ""; }; + 53C194DE157C039A0012D90B /* mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mercenary.h; path = ../../src/map/mercenary.h; sourceTree = ""; }; + 53C194DF157C039A0012D90B /* mob.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mob.c; path = ../../src/map/mob.c; sourceTree = ""; }; + 53C194E0157C039A0012D90B /* mob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mob.h; path = ../../src/map/mob.h; sourceTree = ""; }; + 53C194E1157C039A0012D90B /* npc_chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc_chat.c; path = ../../src/map/npc_chat.c; sourceTree = ""; }; + 53C194E2157C039A0012D90B /* npc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc.c; path = ../../src/map/npc.c; sourceTree = ""; }; + 53C194E3157C039A0012D90B /* npc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = npc.h; path = ../../src/map/npc.h; sourceTree = ""; }; + 53C194E4157C039A0012D90B /* party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = party.c; path = ../../src/map/party.c; sourceTree = ""; }; + 53C194E5157C039A0012D90B /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = ../../src/map/party.h; sourceTree = ""; }; + 53C194E6157C039A0012D90B /* path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = path.c; path = ../../src/map/path.c; sourceTree = ""; }; + 53C194E7157C039A0012D90B /* path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = path.h; path = ../../src/map/path.h; sourceTree = ""; }; + 53C194E8157C039A0012D90B /* pc_groups.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc_groups.c; path = ../../src/map/pc_groups.c; sourceTree = ""; }; + 53C194E9157C039A0012D90B /* pc_groups.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc_groups.h; path = ../../src/map/pc_groups.h; sourceTree = ""; }; + 53C194EA157C039A0012D90B /* pc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc.c; path = ../../src/map/pc.c; sourceTree = ""; }; + 53C194EB157C039A0012D90B /* pc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc.h; path = ../../src/map/pc.h; sourceTree = ""; }; + 53C194ED157C039A0012D90B /* pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pet.c; path = ../../src/map/pet.c; sourceTree = ""; }; + 53C194EE157C039A0012D90B /* pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pet.h; path = ../../src/map/pet.h; sourceTree = ""; }; + 53C194EF157C039A0012D90B /* quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = quest.c; path = ../../src/map/quest.c; sourceTree = ""; }; + 53C194F0157C039A0012D90B /* quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = quest.h; path = ../../src/map/quest.h; sourceTree = ""; }; + 53C194F1157C039A0012D90B /* script.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = script.c; path = ../../src/map/script.c; sourceTree = ""; }; + 53C194F2157C039A0012D90B /* script.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = script.h; path = ../../src/map/script.h; sourceTree = ""; }; + 53C194F3157C039A0012D90B /* searchstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = searchstore.c; path = ../../src/map/searchstore.c; sourceTree = ""; }; + 53C194F4157C039A0012D90B /* searchstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = searchstore.h; path = ../../src/map/searchstore.h; sourceTree = ""; }; + 53C194F5157C039A0012D90B /* skill.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = skill.c; path = ../../src/map/skill.c; sourceTree = ""; }; + 53C194F6157C039A0012D90B /* skill.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = skill.h; path = ../../src/map/skill.h; sourceTree = ""; }; + 53C194F7157C039A0012D90B /* status.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = status.c; path = ../../src/map/status.c; sourceTree = ""; }; + 53C194F8157C039A0012D90B /* status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status.h; path = ../../src/map/status.h; sourceTree = ""; }; + 53C194F9157C039A0012D90B /* storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = storage.c; path = ../../src/map/storage.c; sourceTree = ""; }; + 53C194FA157C039A0012D90B /* storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = storage.h; path = ../../src/map/storage.h; sourceTree = ""; }; + 53C194FB157C039A0012D90B /* trade.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = trade.c; path = ../../src/map/trade.c; sourceTree = ""; }; + 53C194FC157C039A0012D90B /* trade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trade.h; path = ../../src/map/trade.h; sourceTree = ""; }; + 53C194FD157C039A0012D90B /* unit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unit.c; path = ../../src/map/unit.c; sourceTree = ""; }; + 53C194FE157C039A0012D90B /* unit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unit.h; path = ../../src/map/unit.h; sourceTree = ""; }; + 53C194FF157C039A0012D90B /* vending.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = vending.c; path = ../../src/map/vending.c; sourceTree = ""; }; + 53C19500157C039A0012D90B /* vending.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vending.h; path = ../../src/map/vending.h; sourceTree = ""; }; + 53C1952A157C044D0012D90B /* char-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "char-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; }; + 53C19534157C045D0012D90B /* char.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = char.c; path = ../../src/char/char.c; sourceTree = ""; }; + 53C19535157C045D0012D90B /* char.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = char.h; path = ../../src/char/char.h; sourceTree = ""; }; + 53C19536157C045D0012D90B /* int_auction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_auction.c; path = ../../src/char/int_auction.c; sourceTree = ""; }; + 53C19537157C045D0012D90B /* int_auction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_auction.h; path = ../../src/char/int_auction.h; sourceTree = ""; }; + 53C19538157C045D0012D90B /* int_elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_elemental.c; path = ../../src/char/int_elemental.c; sourceTree = ""; }; + 53C19539157C045D0012D90B /* int_elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_elemental.h; path = ../../src/char/int_elemental.h; sourceTree = ""; }; + 53C1953A157C045D0012D90B /* int_guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_guild.c; path = ../../src/char/int_guild.c; sourceTree = ""; }; + 53C1953B157C045D0012D90B /* int_guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_guild.h; path = ../../src/char/int_guild.h; sourceTree = ""; }; + 53C1953C157C045D0012D90B /* int_homun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_homun.c; path = ../../src/char/int_homun.c; sourceTree = ""; }; + 53C1953D157C045D0012D90B /* int_homun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_homun.h; path = ../../src/char/int_homun.h; sourceTree = ""; }; + 53C1953E157C045D0012D90B /* int_mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mail.c; path = ../../src/char/int_mail.c; sourceTree = ""; }; + 53C1953F157C045D0012D90B /* int_mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mail.h; path = ../../src/char/int_mail.h; sourceTree = ""; }; + 53C19540157C045D0012D90B /* int_mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mercenary.c; path = ../../src/char/int_mercenary.c; sourceTree = ""; }; + 53C19541157C045D0012D90B /* int_mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mercenary.h; path = ../../src/char/int_mercenary.h; sourceTree = ""; }; + 53C19542157C045D0012D90B /* int_party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_party.c; path = ../../src/char/int_party.c; sourceTree = ""; }; + 53C19543157C045D0012D90B /* int_party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_party.h; path = ../../src/char/int_party.h; sourceTree = ""; }; + 53C19544157C045D0012D90B /* int_pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_pet.c; path = ../../src/char/int_pet.c; sourceTree = ""; }; + 53C19545157C045D0012D90B /* int_pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_pet.h; path = ../../src/char/int_pet.h; sourceTree = ""; }; + 53C19546157C045D0012D90B /* int_quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_quest.c; path = ../../src/char/int_quest.c; sourceTree = ""; }; + 53C19547157C045D0012D90B /* int_quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_quest.h; path = ../../src/char/int_quest.h; sourceTree = ""; }; + 53C19548157C045D0012D90B /* int_storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_storage.c; path = ../../src/char/int_storage.c; sourceTree = ""; }; + 53C19549157C045D0012D90B /* int_storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_storage.h; path = ../../src/char/int_storage.h; sourceTree = ""; }; + 53C1954A157C045D0012D90B /* inter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inter.c; path = ../../src/char/inter.c; sourceTree = ""; }; + 53C1954B157C045D0012D90B /* inter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inter.h; path = ../../src/char/inter.h; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 53C193CB157BFA830012D90B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 53C194A1157C03260012D90B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 53C19527157C044D0012D90B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 53006E8515AA145F00EA0266 /* config */ = { + isa = PBXGroup; + children = ( + 53006E8615AA145F00EA0266 /* classes */, + 53006E8915AA145F00EA0266 /* const.h */, + 53006E8A15AA145F00EA0266 /* core.h */, + 53006E8B15AA145F00EA0266 /* renewal.h */, + 53006E8C15AA145F00EA0266 /* secure.h */, + ); + name = config; + path = ../src/config; + sourceTree = ""; + }; + 53006E8615AA145F00EA0266 /* classes */ = { + isa = PBXGroup; + children = ( + 53006E8715AA145F00EA0266 /* general.h */, + 53006E8815AA145F00EA0266 /* swordsman.h */, + ); + path = classes; + sourceTree = ""; + }; + 53C193C1157BF8E40012D90B = { + isa = PBXGroup; + children = ( + 53006E8515AA145F00EA0266 /* config */, + 53C193E5157BFE790012D90B /* common */, + 53C193D1157BFA830012D90B /* login-server_sql */, + 53C194A6157C03260012D90B /* map-server_sql */, + 53C1952C157C044D0012D90B /* char-server_sql */, + 53C193CF157BFA830012D90B /* Products */, + ); + sourceTree = ""; + }; + 53C193CF157BFA830012D90B /* Products */ = { + isa = PBXGroup; + children = ( + 53C193CE157BFA830012D90B /* login-server_sql */, + 53C194A4157C03260012D90B /* map-server_sql */, + 53C1952A157C044D0012D90B /* char-server_sql */, + ); + name = Products; + sourceTree = ""; + }; + 53C193D1157BFA830012D90B /* login-server_sql */ = { + isa = PBXGroup; + children = ( + 53C193D9157BFAF00012D90B /* account_sql.c */, + 53C193DA157BFAF00012D90B /* account.h */, + 53C193DB157BFAF00012D90B /* ipban_sql.c */, + 53C193DC157BFAF00012D90B /* ipban.h */, + 53C193DD157BFAF00012D90B /* login.c */, + 53C193DE157BFAF00012D90B /* login.h */, + 53C193DF157BFAF00012D90B /* loginlog_sql.c */, + 53C193E0157BFAF00012D90B /* loginlog.h */, + ); + path = "login-server_sql"; + sourceTree = ""; + }; + 53C193E5157BFE790012D90B /* common */ = { + isa = PBXGroup; + children = ( + 53C193E6157BFE790012D90B /* atomic.h */, + 53C193E7157BFE790012D90B /* cbasetypes.h */, + 53C193E9157BFE790012D90B /* conf.c */, + 53C193EA157BFE790012D90B /* conf.h */, + 53C193EB157BFE790012D90B /* core.c */, + 53C193EC157BFE790012D90B /* core.h */, + 53C193ED157BFE790012D90B /* db.c */, + 53C193EE157BFE790012D90B /* db.h */, + 53C193EF157BFE790012D90B /* des.c */, + 53C193F0157BFE790012D90B /* des.h */, + 53C193F1157BFE790012D90B /* ers.c */, + 53C193F2157BFE790012D90B /* ers.h */, + 538CB45F15AD9B1700DF3F0D /* evdp.h */, + 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */, + 53C193F3157BFE790012D90B /* grfio.c */, + 53C193F4157BFE790012D90B /* grfio.h */, + 53C193F9157BFE790012D90B /* malloc.c */, + 53C193FA157BFE790012D90B /* malloc.h */, + 53C193FB157BFE790012D90B /* mapindex.c */, + 53C193FC157BFE790012D90B /* mapindex.h */, + 53C193FD157BFE790012D90B /* md5calc.c */, + 53C193FE157BFE790012D90B /* md5calc.h */, + 538CB46015AD9B1700DF3F0D /* mempool.c */, + 538CB46115AD9B1700DF3F0D /* mempool.h */, + 53C193FF157BFE790012D90B /* mmo.h */, + 538CB46215AD9B1700DF3F0D /* mutex.c */, + 538CB46315AD9B1700DF3F0D /* mutex.h */, + 538CB46415AD9B1700DF3F0D /* netbuffer.c */, + 538CB46515AD9B1700DF3F0D /* netbuffer.h */, + 538CB46615AD9B1700DF3F0D /* network.c */, + 538CB46715AD9B1700DF3F0D /* network.h */, + 53C19400157BFE790012D90B /* nullpo.c */, + 53C19401157BFE790012D90B /* nullpo.h */, + 538CB46815AD9B1700DF3F0D /* raconf.c */, + 538CB46915AD9B1700DF3F0D /* raconf.h */, + 53C1941C157BFE790012D90B /* random.c */, + 53C1941D157BFE790012D90B /* random.h */, + 53C1941E157BFE790012D90B /* showmsg.c */, + 53C1941F157BFE790012D90B /* showmsg.h */, + 53C19420157BFE790012D90B /* socket.c */, + 53C19421157BFE790012D90B /* socket.h */, + 53C19422157BFE790012D90B /* spinlock.h */, + 53C19423157BFE790012D90B /* sql.c */, + 53C19424157BFE790012D90B /* sql.h */, + 53C19425157BFE790012D90B /* strlib.c */, + 53C19426157BFE790012D90B /* strlib.h */, + 53C19427157BFE790012D90B /* thread.c */, + 53C19428157BFE790012D90B /* thread.h */, + 53C19429157BFE790012D90B /* timer.c */, + 53C1942A157BFE790012D90B /* timer.h */, + 53C1942B157BFE790012D90B /* utils.c */, + 53C1942C157BFE790012D90B /* utils.h */, + 53C1942D157BFE790012D90B /* winapi.h */, + ); + name = common; + path = ../src/common; + sourceTree = ""; + }; + 53C194A6157C03260012D90B /* map-server_sql */ = { + isa = PBXGroup; + children = ( + 53C194AE157C039A0012D90B /* atcommand.c */, + 53C194AF157C039A0012D90B /* atcommand.h */, + 53C194B0157C039A0012D90B /* battle.c */, + 53C194B1157C039A0012D90B /* battle.h */, + 53C194B2157C039A0012D90B /* battleground.c */, + 53C194B3157C039A0012D90B /* battleground.h */, + 53C194B4157C039A0012D90B /* buyingstore.c */, + 53C194B5157C039A0012D90B /* buyingstore.h */, + 53C194B6157C039A0012D90B /* chat.c */, + 53C194B7157C039A0012D90B /* chat.h */, + 53C194B8157C039A0012D90B /* chrif.c */, + 53C194B9157C039A0012D90B /* chrif.h */, + 53C194BA157C039A0012D90B /* clif.c */, + 53C194BB157C039A0012D90B /* clif.h */, + 53C194C5157C039A0012D90B /* date.c */, + 53C194C6157C039A0012D90B /* date.h */, + 53C194C7157C039A0012D90B /* duel.c */, + 53C194C8157C039A0012D90B /* duel.h */, + 53C194C9157C039A0012D90B /* elemental.c */, + 53C194CA157C039A0012D90B /* elemental.h */, + 53C194CB157C039A0012D90B /* guild.c */, + 53C194CC157C039A0012D90B /* guild.h */, + 53C194CD157C039A0012D90B /* homunculus.c */, + 53C194CE157C039A0012D90B /* homunculus.h */, + 53C194CF157C039A0012D90B /* instance.c */, + 53C194D0157C039A0012D90B /* instance.h */, + 53C194D1157C039A0012D90B /* intif.c */, + 53C194D2157C039A0012D90B /* intif.h */, + 53C194D3157C039A0012D90B /* itemdb.c */, + 53C194D4157C039A0012D90B /* itemdb.h */, + 53C194D5157C039A0012D90B /* log.c */, + 53C194D6157C039A0012D90B /* log.h */, + 53C194D7157C039A0012D90B /* mail.c */, + 53C194D8157C039A0012D90B /* mail.h */, + 53C194D9157C039A0012D90B /* map.c */, + 53C194DA157C039A0012D90B /* map.h */, + 53C194DB157C039A0012D90B /* mapreg_sql.c */, + 53C194DC157C039A0012D90B /* mapreg.h */, + 53C194DD157C039A0012D90B /* mercenary.c */, + 53C194DE157C039A0012D90B /* mercenary.h */, + 53C194DF157C039A0012D90B /* mob.c */, + 53C194E0157C039A0012D90B /* mob.h */, + 53C194E1157C039A0012D90B /* npc_chat.c */, + 53C194E2157C039A0012D90B /* npc.c */, + 53C194E3157C039A0012D90B /* npc.h */, + 53C194E4157C039A0012D90B /* party.c */, + 53C194E5157C039A0012D90B /* party.h */, + 53C194E6157C039A0012D90B /* path.c */, + 53C194E7157C039A0012D90B /* path.h */, + 53C194E8157C039A0012D90B /* pc_groups.c */, + 53C194E9157C039A0012D90B /* pc_groups.h */, + 53C194EA157C039A0012D90B /* pc.c */, + 53C194EB157C039A0012D90B /* pc.h */, + 53C194ED157C039A0012D90B /* pet.c */, + 53C194EE157C039A0012D90B /* pet.h */, + 53C194EF157C039A0012D90B /* quest.c */, + 53C194F0157C039A0012D90B /* quest.h */, + 53C194F1157C039A0012D90B /* script.c */, + 53C194F2157C039A0012D90B /* script.h */, + 53C194F3157C039A0012D90B /* searchstore.c */, + 53C194F4157C039A0012D90B /* searchstore.h */, + 53C194F5157C039A0012D90B /* skill.c */, + 53C194F6157C039A0012D90B /* skill.h */, + 53C194F7157C039A0012D90B /* status.c */, + 53C194F8157C039A0012D90B /* status.h */, + 53C194F9157C039A0012D90B /* storage.c */, + 53C194FA157C039A0012D90B /* storage.h */, + 53C194FB157C039A0012D90B /* trade.c */, + 53C194FC157C039A0012D90B /* trade.h */, + 53C194FD157C039A0012D90B /* unit.c */, + 53C194FE157C039A0012D90B /* unit.h */, + 53C194FF157C039A0012D90B /* vending.c */, + 53C19500157C039A0012D90B /* vending.h */, + ); + path = "map-server_sql"; + sourceTree = ""; + }; + 53C1952C157C044D0012D90B /* char-server_sql */ = { + isa = PBXGroup; + children = ( + 53C19534157C045D0012D90B /* char.c */, + 53C19535157C045D0012D90B /* char.h */, + 53C19536157C045D0012D90B /* int_auction.c */, + 53C19537157C045D0012D90B /* int_auction.h */, + 53C19538157C045D0012D90B /* int_elemental.c */, + 53C19539157C045D0012D90B /* int_elemental.h */, + 53C1953A157C045D0012D90B /* int_guild.c */, + 53C1953B157C045D0012D90B /* int_guild.h */, + 53C1953C157C045D0012D90B /* int_homun.c */, + 53C1953D157C045D0012D90B /* int_homun.h */, + 53C1953E157C045D0012D90B /* int_mail.c */, + 53C1953F157C045D0012D90B /* int_mail.h */, + 53C19540157C045D0012D90B /* int_mercenary.c */, + 53C19541157C045D0012D90B /* int_mercenary.h */, + 53C19542157C045D0012D90B /* int_party.c */, + 53C19543157C045D0012D90B /* int_party.h */, + 53C19544157C045D0012D90B /* int_pet.c */, + 53C19545157C045D0012D90B /* int_pet.h */, + 53C19546157C045D0012D90B /* int_quest.c */, + 53C19547157C045D0012D90B /* int_quest.h */, + 53C19548157C045D0012D90B /* int_storage.c */, + 53C19549157C045D0012D90B /* int_storage.h */, + 53C1954A157C045D0012D90B /* inter.c */, + 53C1954B157C045D0012D90B /* inter.h */, + ); + path = "char-server_sql"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 53C193CD157BFA830012D90B /* login-server_sql */ = { + isa = PBXNativeTarget; + buildConfigurationList = 53C193D6157BFA830012D90B /* Build configuration list for PBXNativeTarget "login-server_sql" */; + buildPhases = ( + 53C193CA157BFA830012D90B /* Sources */, + 53C193CB157BFA830012D90B /* Frameworks */, + 53C193CC157BFA830012D90B /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "login-server_sql"; + productName = "login-server_sql"; + productReference = 53C193CE157BFA830012D90B /* login-server_sql */; + productType = "com.apple.product-type.tool"; + }; + 53C194A3157C03260012D90B /* map-server_sql */ = { + isa = PBXNativeTarget; + buildConfigurationList = 53C194AB157C03260012D90B /* Build configuration list for PBXNativeTarget "map-server_sql" */; + buildPhases = ( + 53C194A0157C03260012D90B /* Sources */, + 53C194A1157C03260012D90B /* Frameworks */, + 53C194A2157C03260012D90B /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "map-server_sql"; + productName = "map-server_sql"; + productReference = 53C194A4157C03260012D90B /* map-server_sql */; + productType = "com.apple.product-type.tool"; + }; + 53C19529157C044D0012D90B /* char-server_sql */ = { + isa = PBXNativeTarget; + buildConfigurationList = 53C19531157C044D0012D90B /* Build configuration list for PBXNativeTarget "char-server_sql" */; + buildPhases = ( + 53C19526157C044D0012D90B /* Sources */, + 53C19527157C044D0012D90B /* Frameworks */, + 53C19528157C044D0012D90B /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "char-server_sql"; + productName = "char-server_sql"; + productReference = 53C1952A157C044D0012D90B /* char-server_sql */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 53C193C3157BF8E40012D90B /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0430; + }; + buildConfigurationList = 53C193C6157BF8E40012D90B /* Build configuration list for PBXProject "rAthena" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 53C193C1157BF8E40012D90B; + productRefGroup = 53C193CF157BFA830012D90B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 53C193CD157BFA830012D90B /* login-server_sql */, + 53C194A3157C03260012D90B /* map-server_sql */, + 53C19529157C044D0012D90B /* char-server_sql */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 53C193CA157BFA830012D90B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 53C193E1157BFAF00012D90B /* account_sql.c in Sources */, + 53C193E2157BFAF00012D90B /* ipban_sql.c in Sources */, + 53C193E3157BFAF00012D90B /* login.c in Sources */, + 53C193E4157BFAF00012D90B /* loginlog_sql.c in Sources */, + 53C1942E157BFE790012D90B /* conf.c in Sources */, + 53C1942F157BFE790012D90B /* core.c in Sources */, + 53C19430157BFE790012D90B /* db.c in Sources */, + 53C19431157BFE790012D90B /* des.c in Sources */, + 53C19432157BFE790012D90B /* ers.c in Sources */, + 53C19433157BFE790012D90B /* grfio.c in Sources */, + 53C19436157BFE790012D90B /* malloc.c in Sources */, + 53C19437157BFE790012D90B /* mapindex.c in Sources */, + 53C19438157BFE790012D90B /* md5calc.c in Sources */, + 53C19439157BFE790012D90B /* nullpo.c in Sources */, + 53C19452157BFE790012D90B /* random.c in Sources */, + 53C19453157BFE790012D90B /* showmsg.c in Sources */, + 53C19454157BFE790012D90B /* socket.c in Sources */, + 53C19455157BFE790012D90B /* sql.c in Sources */, + 53C19456157BFE790012D90B /* strlib.c in Sources */, + 53C19457157BFE790012D90B /* thread.c in Sources */, + 53C19458157BFE790012D90B /* timer.c in Sources */, + 53C19459157BFE790012D90B /* utils.c in Sources */, + 538CB46A15AD9B1700DF3F0D /* evdp_epoll.c in Sources */, + 538CB46D15AD9B1700DF3F0D /* mempool.c in Sources */, + 538CB47015AD9B1700DF3F0D /* mutex.c in Sources */, + 538CB47315AD9B1700DF3F0D /* netbuffer.c in Sources */, + 538CB47615AD9B1700DF3F0D /* network.c in Sources */, + 538CB47915AD9B1700DF3F0D /* raconf.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 53C194A0157C03260012D90B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 53C19501157C039A0012D90B /* atcommand.c in Sources */, + 53C19502157C039A0012D90B /* battle.c in Sources */, + 53C19503157C039A0012D90B /* battleground.c in Sources */, + 53C19504157C039A0012D90B /* buyingstore.c in Sources */, + 53C19505157C039A0012D90B /* chat.c in Sources */, + 53C19506157C039A0012D90B /* chrif.c in Sources */, + 53C19507157C039A0012D90B /* clif.c in Sources */, + 53C19508157C039A0012D90B /* date.c in Sources */, + 53C19509157C039A0012D90B /* duel.c in Sources */, + 53C1950A157C039A0012D90B /* elemental.c in Sources */, + 53C1950B157C039A0012D90B /* guild.c in Sources */, + 53C1950C157C039A0012D90B /* homunculus.c in Sources */, + 53C1950D157C039A0012D90B /* instance.c in Sources */, + 53C1950E157C039A0012D90B /* intif.c in Sources */, + 53C1950F157C039A0012D90B /* itemdb.c in Sources */, + 53C19510157C039A0012D90B /* log.c in Sources */, + 53C19511157C039A0012D90B /* mail.c in Sources */, + 53C19512157C039A0012D90B /* map.c in Sources */, + 53C19513157C039A0012D90B /* mapreg_sql.c in Sources */, + 53C19514157C039A0012D90B /* mercenary.c in Sources */, + 53C19515157C039A0012D90B /* mob.c in Sources */, + 53C19516157C039A0012D90B /* npc_chat.c in Sources */, + 53C19517157C039A0012D90B /* npc.c in Sources */, + 53C19518157C039A0012D90B /* party.c in Sources */, + 53C19519157C039A0012D90B /* path.c in Sources */, + 53C1951A157C039A0012D90B /* pc_groups.c in Sources */, + 53C1951B157C039A0012D90B /* pc.c in Sources */, + 53C1951C157C039A0012D90B /* pet.c in Sources */, + 53C1951D157C039A0012D90B /* quest.c in Sources */, + 53C1951E157C039A0012D90B /* script.c in Sources */, + 53C1951F157C039A0012D90B /* searchstore.c in Sources */, + 53C19520157C039A0012D90B /* skill.c in Sources */, + 53C19521157C039A0012D90B /* status.c in Sources */, + 53C19522157C039A0012D90B /* storage.c in Sources */, + 53C19523157C039A0012D90B /* trade.c in Sources */, + 53C19524157C039A0012D90B /* unit.c in Sources */, + 53C19525157C039A0012D90B /* vending.c in Sources */, + 538CB46B15AD9B1700DF3F0D /* evdp_epoll.c in Sources */, + 538CB46E15AD9B1700DF3F0D /* mempool.c in Sources */, + 538CB47115AD9B1700DF3F0D /* mutex.c in Sources */, + 538CB47415AD9B1700DF3F0D /* netbuffer.c in Sources */, + 538CB47715AD9B1700DF3F0D /* network.c in Sources */, + 538CB47A15AD9B1700DF3F0D /* raconf.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 53C19526157C044D0012D90B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 53C1954C157C045D0012D90B /* char.c in Sources */, + 53C1954D157C045D0012D90B /* int_auction.c in Sources */, + 53C1954E157C045D0012D90B /* int_elemental.c in Sources */, + 53C1954F157C045D0012D90B /* int_guild.c in Sources */, + 53C19550157C045D0012D90B /* int_homun.c in Sources */, + 53C19551157C045D0012D90B /* int_mail.c in Sources */, + 53C19552157C045D0012D90B /* int_mercenary.c in Sources */, + 53C19553157C045D0012D90B /* int_party.c in Sources */, + 53C19554157C045D0012D90B /* int_pet.c in Sources */, + 53C19555157C045D0012D90B /* int_quest.c in Sources */, + 53C19556157C045D0012D90B /* int_storage.c in Sources */, + 53C19557157C045D0012D90B /* inter.c in Sources */, + 538CB46C15AD9B1700DF3F0D /* evdp_epoll.c in Sources */, + 538CB46F15AD9B1700DF3F0D /* mempool.c in Sources */, + 538CB47215AD9B1700DF3F0D /* mutex.c in Sources */, + 538CB47515AD9B1700DF3F0D /* netbuffer.c in Sources */, + 538CB47815AD9B1700DF3F0D /* network.c in Sources */, + 538CB47B15AD9B1700DF3F0D /* raconf.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 53C193C8157BF8E40012D90B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + }; + name = Debug; + }; + 53C193C9157BF8E40012D90B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + }; + name = Release; + }; + 53C193D7157BFA830012D90B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/../src/common/obj_all\"", + "\"$(SRCROOT)/../src/common/obj_sql\"", + "\"$(SRCROOT)/../3rdparty/\"", + "\"$(SRCROOT)/../3rdparty/mysql/lib\"", + "\"$(SRCROOT)/../3rdparty/pcre/lib\"", + "\"$(SRCROOT)/../3rdparty/zlib/lib\"", + ); + MACOSX_DEPLOYMENT_TARGET = 10.7; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + }; + name = Debug; + }; + 53C193D8157BFA830012D90B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "\"$(SRCROOT)/../src/common/obj_all\"", + "\"$(SRCROOT)/../src/common/obj_sql\"", + "\"$(SRCROOT)/../3rdparty/\"", + "\"$(SRCROOT)/../3rdparty/mysql/lib\"", + "\"$(SRCROOT)/../3rdparty/pcre/lib\"", + "\"$(SRCROOT)/../3rdparty/zlib/lib\"", + ); + MACOSX_DEPLOYMENT_TARGET = 10.7; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + }; + name = Release; + }; + 53C194AC157C03260012D90B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.7; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + }; + name = Debug; + }; + 53C194AD157C03260012D90B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.7; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + }; + name = Release; + }; + 53C19532157C044D0012D90B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.7; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + }; + name = Debug; + }; + 53C19533157C044D0012D90B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.7; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 53C193C6157BF8E40012D90B /* Build configuration list for PBXProject "rAthena" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 53C193C8157BF8E40012D90B /* Debug */, + 53C193C9157BF8E40012D90B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 53C193D6157BFA830012D90B /* Build configuration list for PBXNativeTarget "login-server_sql" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 53C193D7157BFA830012D90B /* Debug */, + 53C193D8157BFA830012D90B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 53C194AB157C03260012D90B /* Build configuration list for PBXNativeTarget "map-server_sql" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 53C194AC157C03260012D90B /* Debug */, + 53C194AD157C03260012D90B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 53C19531157C044D0012D90B /* Build configuration list for PBXNativeTarget "char-server_sql" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 53C19532157C044D0012D90B /* Debug */, + 53C19533157C044D0012D90B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 53C193C3157BF8E40012D90B /* Project object */; +} diff --git a/rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..8a9819b7e --- /dev/null +++ b/rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate b/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 000000000..754f3a6af Binary files /dev/null and b/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings b/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings new file mode 100644 index 000000000..659c8766e --- /dev/null +++ b/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings @@ -0,0 +1,10 @@ + + + + + HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges + + SnapshotAutomaticallyBeforeSignificantChanges + + + diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist new file mode 100644 index 000000000..05301bc25 --- /dev/null +++ b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist @@ -0,0 +1,5 @@ + + + diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme new file mode 100644 index 000000000..6f134ccfb --- /dev/null +++ b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme new file mode 100644 index 000000000..01b1cc6be --- /dev/null +++ b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme new file mode 100644 index 000000000..416cfce2b --- /dev/null +++ b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 000000000..6bd664644 --- /dev/null +++ b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,42 @@ + + + + + SchemeUserState + + char-server_sql.xcscheme + + orderHint + 2 + + login-server_sql.xcscheme + + orderHint + 0 + + map-server_sql.xcscheme + + orderHint + 1 + + + SuppressBuildableAutocreation + + 53C193CD157BFA830012D90B + + primary + + + 53C194A3157C03260012D90B + + primary + + + 53C19529157C044D0012D90B + + primary + + + + + diff --git a/sql-files/upgrades/upgrade_2013.02.06_21.38.sql b/sql-files/upgrades/upgrade_2013.02.06_21.38.sql new file mode 100644 index 000000000..d5c467097 --- /dev/null +++ b/sql-files/upgrades/upgrade_2013.02.06_21.38.sql @@ -0,0 +1 @@ +ALTER TABLE `char` ADD COLUMN `slotchange` SMALLINT(3) unsigned NOT NULL default '0'; \ No newline at end of file diff --git a/src/map/skill.c b/src/map/skill.c index cb15f0083..ba720da42 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -13072,7 +13072,7 @@ int skill_check_condition_castbegin(struct map_session_data* sd, uint16 skill_id } break; case ST_RIDING: - if(!pc_isriding(sd) || !pc_isridingdragon(sd)) { + if(!pc_isriding(sd) && !pc_isridingdragon(sd)) { clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); return 0; } -- cgit v1.2.3-60-g2f50 From 7a8857cbf73d589ded8ef7bcf000063ad0ef1432 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Fri, 8 Feb 2013 21:52:20 -0200 Subject: Reverting 4b41901d3ecb01930a57e9b1d230e729d5feba38 I was using a different git client when I committed that, and it committed all my unstaged changes, not using that client anymore :[. Signed-off-by: shennetsind --- db/packet_db.txt | 2 +- rAthena/char-server_sql/char_server_sql.1 | 79 -- rAthena/rAthena.xcodeproj/project.pbxproj | 971 --------------------- .../project.xcworkspace/contents.xcworkspacedata | 7 - .../UserInterfaceState.xcuserstate | Bin 113853 -> 0 bytes .../WorkspaceSettings.xcsettings | 10 - .../xcdebugger/Breakpoints.xcbkptlist | 5 - .../xcschemes/char-server_sql.xcscheme | 85 -- .../xcschemes/login-server_sql.xcscheme | 85 -- .../xcschemes/map-server_sql.xcscheme | 85 -- .../xcschemes/xcschememanagement.plist | 42 - sql-files/upgrades/upgrade_2013.02.06_21.38.sql | 1 - 12 files changed, 1 insertion(+), 1371 deletions(-) delete mode 100644 rAthena/char-server_sql/char_server_sql.1 delete mode 100644 rAthena/rAthena.xcodeproj/project.pbxproj delete mode 100644 rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate delete mode 100644 rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings delete mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist delete mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme delete mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme delete mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme delete mode 100644 rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist delete mode 100644 sql-files/upgrades/upgrade_2013.02.06_21.38.sql diff --git a/db/packet_db.txt b/db/packet_db.txt index 2692697af..776fd3279 100644 --- a/db/packet_db.txt +++ b/db/packet_db.txt @@ -34,7 +34,7 @@ // Client detection is faster when all clients use this version. // Version 23 is the latest Sakexe (above versions are for Renewal clients) //packet_db_ver: 25 -packet_db_ver: 31 +packet_db_ver: 30 packet_ver: 5 0x0064,55 diff --git a/rAthena/char-server_sql/char_server_sql.1 b/rAthena/char-server_sql/char_server_sql.1 deleted file mode 100644 index 4e61fbe92..000000000 --- a/rAthena/char-server_sql/char_server_sql.1 +++ /dev/null @@ -1,79 +0,0 @@ -.\"Modified from man(1) of FreeBSD, the NetBSD mdoc.template, and mdoc.samples. -.\"See Also: -.\"man mdoc.samples for a complete listing of options -.\"man mdoc for the short list of editing options -.\"/usr/share/misc/mdoc.template -.Dd 6/3/12 \" DATE -.Dt char-server_sql 1 \" Program name and manual section number -.Os Darwin -.Sh NAME \" Section Header - required - don't modify -.Nm char-server_sql, -.\" The following lines are read in generating the apropos(man -k) database. Use only key -.\" words here as the database is built based on the words here and in the .ND line. -.Nm Other_name_for_same_program(), -.Nm Yet another name for the same program. -.\" Use .Nm macro to designate other names for the documented program. -.Nd This line parsed for whatis database. -.Sh SYNOPSIS \" Section Header - required - don't modify -.Nm -.Op Fl abcd \" [-abcd] -.Op Fl a Ar path \" [-a path] -.Op Ar file \" [file] -.Op Ar \" [file ...] -.Ar arg0 \" Underlined argument - use .Ar anywhere to underline -arg2 ... \" Arguments -.Sh DESCRIPTION \" Section Header - required - don't modify -Use the .Nm macro to refer to your program throughout the man page like such: -.Nm -Underlining is accomplished with the .Ar macro like this: -.Ar underlined text . -.Pp \" Inserts a space -A list of items with descriptions: -.Bl -tag -width -indent \" Begins a tagged list -.It item a \" Each item preceded by .It macro -Description of item a -.It item b -Description of item b -.El \" Ends the list -.Pp -A list of flags and their descriptions: -.Bl -tag -width -indent \" Differs from above in tag removed -.It Fl a \"-a flag as a list item -Description of -a flag -.It Fl b -Description of -b flag -.El \" Ends the list -.Pp -.\" .Sh ENVIRONMENT \" May not be needed -.\" .Bl -tag -width "ENV_VAR_1" -indent \" ENV_VAR_1 is width of the string ENV_VAR_1 -.\" .It Ev ENV_VAR_1 -.\" Description of ENV_VAR_1 -.\" .It Ev ENV_VAR_2 -.\" Description of ENV_VAR_2 -.\" .El -.Sh FILES \" File used or created by the topic of the man page -.Bl -tag -width "/Users/joeuser/Library/really_long_file_name" -compact -.It Pa /usr/share/file_name -FILE_1 description -.It Pa /Users/joeuser/Library/really_long_file_name -FILE_2 description -.El \" Ends the list -.\" .Sh DIAGNOSTICS \" May not be needed -.\" .Bl -diag -.\" .It Diagnostic Tag -.\" Diagnostic informtion here. -.\" .It Diagnostic Tag -.\" Diagnostic informtion here. -.\" .El -.Sh SEE ALSO -.\" List links in ascending order by section, alphabetically within a section. -.\" Please do not reference files that do not exist without filing a bug report -.Xr a 1 , -.Xr b 1 , -.Xr c 1 , -.Xr a 2 , -.Xr b 2 , -.Xr a 3 , -.Xr b 3 -.\" .Sh BUGS \" Document known, unremedied bugs -.\" .Sh HISTORY \" Document history if command behaves in a unique manner \ No newline at end of file diff --git a/rAthena/rAthena.xcodeproj/project.pbxproj b/rAthena/rAthena.xcodeproj/project.pbxproj deleted file mode 100644 index 84f6f6ee6..000000000 --- a/rAthena/rAthena.xcodeproj/project.pbxproj +++ /dev/null @@ -1,971 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 538CB46A15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; }; - 538CB46B15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; }; - 538CB46C15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; }; - 538CB46D15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; }; - 538CB46E15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; }; - 538CB46F15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; }; - 538CB47015AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; }; - 538CB47115AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; }; - 538CB47215AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; }; - 538CB47315AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; }; - 538CB47415AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; }; - 538CB47515AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; }; - 538CB47615AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; }; - 538CB47715AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; }; - 538CB47815AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; }; - 538CB47915AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; }; - 538CB47A15AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; }; - 538CB47B15AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; }; - 53C193E1157BFAF00012D90B /* account_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193D9157BFAF00012D90B /* account_sql.c */; }; - 53C193E2157BFAF00012D90B /* ipban_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DB157BFAF00012D90B /* ipban_sql.c */; }; - 53C193E3157BFAF00012D90B /* login.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DD157BFAF00012D90B /* login.c */; }; - 53C193E4157BFAF00012D90B /* loginlog_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DF157BFAF00012D90B /* loginlog_sql.c */; }; - 53C1942E157BFE790012D90B /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193E9157BFE790012D90B /* conf.c */; }; - 53C1942F157BFE790012D90B /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193EB157BFE790012D90B /* core.c */; }; - 53C19430157BFE790012D90B /* db.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193ED157BFE790012D90B /* db.c */; }; - 53C19431157BFE790012D90B /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193EF157BFE790012D90B /* des.c */; }; - 53C19432157BFE790012D90B /* ers.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F1157BFE790012D90B /* ers.c */; }; - 53C19433157BFE790012D90B /* grfio.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F3157BFE790012D90B /* grfio.c */; }; - 53C19436157BFE790012D90B /* malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F9157BFE790012D90B /* malloc.c */; }; - 53C19437157BFE790012D90B /* mapindex.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193FB157BFE790012D90B /* mapindex.c */; }; - 53C19438157BFE790012D90B /* md5calc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193FD157BFE790012D90B /* md5calc.c */; }; - 53C19439157BFE790012D90B /* nullpo.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19400157BFE790012D90B /* nullpo.c */; }; - 53C19452157BFE790012D90B /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1941C157BFE790012D90B /* random.c */; }; - 53C19453157BFE790012D90B /* showmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1941E157BFE790012D90B /* showmsg.c */; }; - 53C19454157BFE790012D90B /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19420157BFE790012D90B /* socket.c */; }; - 53C19455157BFE790012D90B /* sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19423157BFE790012D90B /* sql.c */; }; - 53C19456157BFE790012D90B /* strlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19425157BFE790012D90B /* strlib.c */; }; - 53C19457157BFE790012D90B /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19427157BFE790012D90B /* thread.c */; }; - 53C19458157BFE790012D90B /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19429157BFE790012D90B /* timer.c */; }; - 53C19459157BFE790012D90B /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1942B157BFE790012D90B /* utils.c */; }; - 53C19501157C039A0012D90B /* atcommand.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194AE157C039A0012D90B /* atcommand.c */; }; - 53C19502157C039A0012D90B /* battle.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B0157C039A0012D90B /* battle.c */; }; - 53C19503157C039A0012D90B /* battleground.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B2157C039A0012D90B /* battleground.c */; }; - 53C19504157C039A0012D90B /* buyingstore.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B4157C039A0012D90B /* buyingstore.c */; }; - 53C19505157C039A0012D90B /* chat.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B6157C039A0012D90B /* chat.c */; }; - 53C19506157C039A0012D90B /* chrif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B8157C039A0012D90B /* chrif.c */; }; - 53C19507157C039A0012D90B /* clif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194BA157C039A0012D90B /* clif.c */; }; - 53C19508157C039A0012D90B /* date.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C5157C039A0012D90B /* date.c */; }; - 53C19509157C039A0012D90B /* duel.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C7157C039A0012D90B /* duel.c */; }; - 53C1950A157C039A0012D90B /* elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C9157C039A0012D90B /* elemental.c */; }; - 53C1950B157C039A0012D90B /* guild.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CB157C039A0012D90B /* guild.c */; }; - 53C1950C157C039A0012D90B /* homunculus.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CD157C039A0012D90B /* homunculus.c */; }; - 53C1950D157C039A0012D90B /* instance.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CF157C039A0012D90B /* instance.c */; }; - 53C1950E157C039A0012D90B /* intif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D1157C039A0012D90B /* intif.c */; }; - 53C1950F157C039A0012D90B /* itemdb.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D3157C039A0012D90B /* itemdb.c */; }; - 53C19510157C039A0012D90B /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D5157C039A0012D90B /* log.c */; }; - 53C19511157C039A0012D90B /* mail.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D7157C039A0012D90B /* mail.c */; }; - 53C19512157C039A0012D90B /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D9157C039A0012D90B /* map.c */; }; - 53C19513157C039A0012D90B /* mapreg_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DB157C039A0012D90B /* mapreg_sql.c */; }; - 53C19514157C039A0012D90B /* mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DD157C039A0012D90B /* mercenary.c */; }; - 53C19515157C039A0012D90B /* mob.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DF157C039A0012D90B /* mob.c */; }; - 53C19516157C039A0012D90B /* npc_chat.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E1157C039A0012D90B /* npc_chat.c */; }; - 53C19517157C039A0012D90B /* npc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E2157C039A0012D90B /* npc.c */; }; - 53C19518157C039A0012D90B /* party.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E4157C039A0012D90B /* party.c */; }; - 53C19519157C039A0012D90B /* path.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E6157C039A0012D90B /* path.c */; }; - 53C1951A157C039A0012D90B /* pc_groups.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E8157C039A0012D90B /* pc_groups.c */; }; - 53C1951B157C039A0012D90B /* pc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194EA157C039A0012D90B /* pc.c */; }; - 53C1951C157C039A0012D90B /* pet.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194ED157C039A0012D90B /* pet.c */; }; - 53C1951D157C039A0012D90B /* quest.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194EF157C039A0012D90B /* quest.c */; }; - 53C1951E157C039A0012D90B /* script.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F1157C039A0012D90B /* script.c */; }; - 53C1951F157C039A0012D90B /* searchstore.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F3157C039A0012D90B /* searchstore.c */; }; - 53C19520157C039A0012D90B /* skill.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F5157C039A0012D90B /* skill.c */; }; - 53C19521157C039A0012D90B /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F7157C039A0012D90B /* status.c */; }; - 53C19522157C039A0012D90B /* storage.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F9157C039A0012D90B /* storage.c */; }; - 53C19523157C039A0012D90B /* trade.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FB157C039A0012D90B /* trade.c */; }; - 53C19524157C039A0012D90B /* unit.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FD157C039A0012D90B /* unit.c */; }; - 53C19525157C039A0012D90B /* vending.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FF157C039A0012D90B /* vending.c */; }; - 53C1954C157C045D0012D90B /* char.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19534157C045D0012D90B /* char.c */; }; - 53C1954D157C045D0012D90B /* int_auction.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19536157C045D0012D90B /* int_auction.c */; }; - 53C1954E157C045D0012D90B /* int_elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19538157C045D0012D90B /* int_elemental.c */; }; - 53C1954F157C045D0012D90B /* int_guild.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953A157C045D0012D90B /* int_guild.c */; }; - 53C19550157C045D0012D90B /* int_homun.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953C157C045D0012D90B /* int_homun.c */; }; - 53C19551157C045D0012D90B /* int_mail.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953E157C045D0012D90B /* int_mail.c */; }; - 53C19552157C045D0012D90B /* int_mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19540157C045D0012D90B /* int_mercenary.c */; }; - 53C19553157C045D0012D90B /* int_party.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19542157C045D0012D90B /* int_party.c */; }; - 53C19554157C045D0012D90B /* int_pet.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19544157C045D0012D90B /* int_pet.c */; }; - 53C19555157C045D0012D90B /* int_quest.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19546157C045D0012D90B /* int_quest.c */; }; - 53C19556157C045D0012D90B /* int_storage.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19548157C045D0012D90B /* int_storage.c */; }; - 53C19557157C045D0012D90B /* inter.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1954A157C045D0012D90B /* inter.c */; }; -/* End PBXBuildFile section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 53C193CC157BFA830012D90B /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = /usr/share/man/man1/; - dstSubfolderSpec = 0; - files = ( - ); - runOnlyForDeploymentPostprocessing = 1; - }; - 53C194A2157C03260012D90B /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = /usr/share/man/man1/; - dstSubfolderSpec = 0; - files = ( - ); - runOnlyForDeploymentPostprocessing = 1; - }; - 53C19528157C044D0012D90B /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = /usr/share/man/man1/; - dstSubfolderSpec = 0; - files = ( - ); - runOnlyForDeploymentPostprocessing = 1; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 53006E8715AA145F00EA0266 /* general.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = general.h; sourceTree = ""; }; - 53006E8815AA145F00EA0266 /* swordsman.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swordsman.h; sourceTree = ""; }; - 53006E8915AA145F00EA0266 /* const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = const.h; sourceTree = ""; }; - 53006E8A15AA145F00EA0266 /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = ""; }; - 53006E8B15AA145F00EA0266 /* renewal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = renewal.h; sourceTree = ""; }; - 53006E8C15AA145F00EA0266 /* secure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = secure.h; sourceTree = ""; }; - 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = evdp_epoll.c; sourceTree = ""; }; - 538CB45F15AD9B1700DF3F0D /* evdp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evdp.h; sourceTree = ""; }; - 538CB46015AD9B1700DF3F0D /* mempool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mempool.c; sourceTree = ""; }; - 538CB46115AD9B1700DF3F0D /* mempool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mempool.h; sourceTree = ""; }; - 538CB46215AD9B1700DF3F0D /* mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mutex.c; sourceTree = ""; }; - 538CB46315AD9B1700DF3F0D /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = ""; }; - 538CB46415AD9B1700DF3F0D /* netbuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = netbuffer.c; sourceTree = ""; }; - 538CB46515AD9B1700DF3F0D /* netbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = netbuffer.h; sourceTree = ""; }; - 538CB46615AD9B1700DF3F0D /* network.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = network.c; sourceTree = ""; }; - 538CB46715AD9B1700DF3F0D /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = ""; }; - 538CB46815AD9B1700DF3F0D /* raconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raconf.c; sourceTree = ""; }; - 538CB46915AD9B1700DF3F0D /* raconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = raconf.h; sourceTree = ""; }; - 53C193CE157BFA830012D90B /* login-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "login-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; }; - 53C193D9157BFAF00012D90B /* account_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = account_sql.c; path = ../../src/login/account_sql.c; sourceTree = ""; }; - 53C193DA157BFAF00012D90B /* account.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = account.h; path = ../../src/login/account.h; sourceTree = ""; }; - 53C193DB157BFAF00012D90B /* ipban_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipban_sql.c; path = ../../src/login/ipban_sql.c; sourceTree = ""; }; - 53C193DC157BFAF00012D90B /* ipban.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ipban.h; path = ../../src/login/ipban.h; sourceTree = ""; }; - 53C193DD157BFAF00012D90B /* login.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = login.c; path = ../../src/login/login.c; sourceTree = ""; }; - 53C193DE157BFAF00012D90B /* login.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = login.h; path = ../../src/login/login.h; sourceTree = ""; }; - 53C193DF157BFAF00012D90B /* loginlog_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loginlog_sql.c; path = ../../src/login/loginlog_sql.c; sourceTree = ""; }; - 53C193E0157BFAF00012D90B /* loginlog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loginlog.h; path = ../../src/login/loginlog.h; sourceTree = ""; }; - 53C193E6157BFE790012D90B /* atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atomic.h; sourceTree = ""; }; - 53C193E7157BFE790012D90B /* cbasetypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cbasetypes.h; sourceTree = ""; }; - 53C193E9157BFE790012D90B /* conf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = conf.c; sourceTree = ""; }; - 53C193EA157BFE790012D90B /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = ""; }; - 53C193EB157BFE790012D90B /* core.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = core.c; sourceTree = ""; }; - 53C193EC157BFE790012D90B /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = ""; }; - 53C193ED157BFE790012D90B /* db.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = db.c; sourceTree = ""; }; - 53C193EE157BFE790012D90B /* db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = db.h; sourceTree = ""; }; - 53C193EF157BFE790012D90B /* des.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = des.c; sourceTree = ""; }; - 53C193F0157BFE790012D90B /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = ""; }; - 53C193F1157BFE790012D90B /* ers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ers.c; sourceTree = ""; }; - 53C193F2157BFE790012D90B /* ers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ers.h; sourceTree = ""; }; - 53C193F3157BFE790012D90B /* grfio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grfio.c; sourceTree = ""; }; - 53C193F4157BFE790012D90B /* grfio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = grfio.h; sourceTree = ""; }; - 53C193F9157BFE790012D90B /* malloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = malloc.c; sourceTree = ""; }; - 53C193FA157BFE790012D90B /* malloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = malloc.h; sourceTree = ""; }; - 53C193FB157BFE790012D90B /* mapindex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mapindex.c; sourceTree = ""; }; - 53C193FC157BFE790012D90B /* mapindex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapindex.h; sourceTree = ""; }; - 53C193FD157BFE790012D90B /* md5calc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = md5calc.c; sourceTree = ""; }; - 53C193FE157BFE790012D90B /* md5calc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5calc.h; sourceTree = ""; }; - 53C193FF157BFE790012D90B /* mmo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmo.h; sourceTree = ""; }; - 53C19400157BFE790012D90B /* nullpo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nullpo.c; sourceTree = ""; }; - 53C19401157BFE790012D90B /* nullpo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nullpo.h; sourceTree = ""; }; - 53C1941C157BFE790012D90B /* random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = random.c; sourceTree = ""; }; - 53C1941D157BFE790012D90B /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = random.h; sourceTree = ""; }; - 53C1941E157BFE790012D90B /* showmsg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = showmsg.c; sourceTree = ""; }; - 53C1941F157BFE790012D90B /* showmsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = showmsg.h; sourceTree = ""; }; - 53C19420157BFE790012D90B /* socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socket.c; sourceTree = ""; }; - 53C19421157BFE790012D90B /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = ""; }; - 53C19422157BFE790012D90B /* spinlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spinlock.h; sourceTree = ""; }; - 53C19423157BFE790012D90B /* sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sql.c; sourceTree = ""; }; - 53C19424157BFE790012D90B /* sql.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sql.h; sourceTree = ""; }; - 53C19425157BFE790012D90B /* strlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strlib.c; sourceTree = ""; }; - 53C19426157BFE790012D90B /* strlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strlib.h; sourceTree = ""; }; - 53C19427157BFE790012D90B /* thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thread.c; sourceTree = ""; }; - 53C19428157BFE790012D90B /* thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread.h; sourceTree = ""; }; - 53C19429157BFE790012D90B /* timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = timer.c; sourceTree = ""; }; - 53C1942A157BFE790012D90B /* timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = ""; }; - 53C1942B157BFE790012D90B /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utils.c; sourceTree = ""; }; - 53C1942C157BFE790012D90B /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils.h; sourceTree = ""; }; - 53C1942D157BFE790012D90B /* winapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = winapi.h; sourceTree = ""; }; - 53C194A4157C03260012D90B /* map-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "map-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; }; - 53C194AE157C039A0012D90B /* atcommand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = atcommand.c; path = ../../src/map/atcommand.c; sourceTree = ""; }; - 53C194AF157C039A0012D90B /* atcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = atcommand.h; path = ../../src/map/atcommand.h; sourceTree = ""; }; - 53C194B0157C039A0012D90B /* battle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battle.c; path = ../../src/map/battle.c; sourceTree = ""; usesTabs = 1; }; - 53C194B1157C039A0012D90B /* battle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battle.h; path = ../../src/map/battle.h; sourceTree = ""; }; - 53C194B2157C039A0012D90B /* battleground.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battleground.c; path = ../../src/map/battleground.c; sourceTree = ""; }; - 53C194B3157C039A0012D90B /* battleground.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battleground.h; path = ../../src/map/battleground.h; sourceTree = ""; }; - 53C194B4157C039A0012D90B /* buyingstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = buyingstore.c; path = ../../src/map/buyingstore.c; sourceTree = ""; }; - 53C194B5157C039A0012D90B /* buyingstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buyingstore.h; path = ../../src/map/buyingstore.h; sourceTree = ""; }; - 53C194B6157C039A0012D90B /* chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chat.c; path = ../../src/map/chat.c; sourceTree = ""; }; - 53C194B7157C039A0012D90B /* chat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chat.h; path = ../../src/map/chat.h; sourceTree = ""; }; - 53C194B8157C039A0012D90B /* chrif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chrif.c; path = ../../src/map/chrif.c; sourceTree = ""; }; - 53C194B9157C039A0012D90B /* chrif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chrif.h; path = ../../src/map/chrif.h; sourceTree = ""; }; - 53C194BA157C039A0012D90B /* clif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = clif.c; path = ../../src/map/clif.c; sourceTree = ""; usesTabs = 1; }; - 53C194BB157C039A0012D90B /* clif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clif.h; path = ../../src/map/clif.h; sourceTree = ""; }; - 53C194C5157C039A0012D90B /* date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = date.c; path = ../../src/map/date.c; sourceTree = ""; }; - 53C194C6157C039A0012D90B /* date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = date.h; path = ../../src/map/date.h; sourceTree = ""; }; - 53C194C7157C039A0012D90B /* duel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = duel.c; path = ../../src/map/duel.c; sourceTree = ""; }; - 53C194C8157C039A0012D90B /* duel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = duel.h; path = ../../src/map/duel.h; sourceTree = ""; }; - 53C194C9157C039A0012D90B /* elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = elemental.c; path = ../../src/map/elemental.c; sourceTree = ""; }; - 53C194CA157C039A0012D90B /* elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elemental.h; path = ../../src/map/elemental.h; sourceTree = ""; }; - 53C194CB157C039A0012D90B /* guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = guild.c; path = ../../src/map/guild.c; sourceTree = ""; }; - 53C194CC157C039A0012D90B /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = ../../src/map/guild.h; sourceTree = ""; }; - 53C194CD157C039A0012D90B /* homunculus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = homunculus.c; path = ../../src/map/homunculus.c; sourceTree = ""; }; - 53C194CE157C039A0012D90B /* homunculus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = homunculus.h; path = ../../src/map/homunculus.h; sourceTree = ""; }; - 53C194CF157C039A0012D90B /* instance.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = instance.c; path = ../../src/map/instance.c; sourceTree = ""; }; - 53C194D0157C039A0012D90B /* instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = instance.h; path = ../../src/map/instance.h; sourceTree = ""; }; - 53C194D1157C039A0012D90B /* intif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = intif.c; path = ../../src/map/intif.c; sourceTree = ""; }; - 53C194D2157C039A0012D90B /* intif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = intif.h; path = ../../src/map/intif.h; sourceTree = ""; }; - 53C194D3157C039A0012D90B /* itemdb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = itemdb.c; path = ../../src/map/itemdb.c; sourceTree = ""; }; - 53C194D4157C039A0012D90B /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemdb.h; path = ../../src/map/itemdb.h; sourceTree = ""; }; - 53C194D5157C039A0012D90B /* log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = log.c; path = ../../src/map/log.c; sourceTree = ""; }; - 53C194D6157C039A0012D90B /* log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = log.h; path = ../../src/map/log.h; sourceTree = ""; }; - 53C194D7157C039A0012D90B /* mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mail.c; path = ../../src/map/mail.c; sourceTree = ""; }; - 53C194D8157C039A0012D90B /* mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mail.h; path = ../../src/map/mail.h; sourceTree = ""; }; - 53C194D9157C039A0012D90B /* map.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = map.c; path = ../../src/map/map.c; sourceTree = ""; }; - 53C194DA157C039A0012D90B /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = map.h; path = ../../src/map/map.h; sourceTree = ""; }; - 53C194DB157C039A0012D90B /* mapreg_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mapreg_sql.c; path = ../../src/map/mapreg_sql.c; sourceTree = ""; }; - 53C194DC157C039A0012D90B /* mapreg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mapreg.h; path = ../../src/map/mapreg.h; sourceTree = ""; }; - 53C194DD157C039A0012D90B /* mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mercenary.c; path = ../../src/map/mercenary.c; sourceTree = ""; }; - 53C194DE157C039A0012D90B /* mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mercenary.h; path = ../../src/map/mercenary.h; sourceTree = ""; }; - 53C194DF157C039A0012D90B /* mob.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mob.c; path = ../../src/map/mob.c; sourceTree = ""; }; - 53C194E0157C039A0012D90B /* mob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mob.h; path = ../../src/map/mob.h; sourceTree = ""; }; - 53C194E1157C039A0012D90B /* npc_chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc_chat.c; path = ../../src/map/npc_chat.c; sourceTree = ""; }; - 53C194E2157C039A0012D90B /* npc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc.c; path = ../../src/map/npc.c; sourceTree = ""; }; - 53C194E3157C039A0012D90B /* npc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = npc.h; path = ../../src/map/npc.h; sourceTree = ""; }; - 53C194E4157C039A0012D90B /* party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = party.c; path = ../../src/map/party.c; sourceTree = ""; }; - 53C194E5157C039A0012D90B /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = ../../src/map/party.h; sourceTree = ""; }; - 53C194E6157C039A0012D90B /* path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = path.c; path = ../../src/map/path.c; sourceTree = ""; }; - 53C194E7157C039A0012D90B /* path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = path.h; path = ../../src/map/path.h; sourceTree = ""; }; - 53C194E8157C039A0012D90B /* pc_groups.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc_groups.c; path = ../../src/map/pc_groups.c; sourceTree = ""; }; - 53C194E9157C039A0012D90B /* pc_groups.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc_groups.h; path = ../../src/map/pc_groups.h; sourceTree = ""; }; - 53C194EA157C039A0012D90B /* pc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc.c; path = ../../src/map/pc.c; sourceTree = ""; }; - 53C194EB157C039A0012D90B /* pc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc.h; path = ../../src/map/pc.h; sourceTree = ""; }; - 53C194ED157C039A0012D90B /* pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pet.c; path = ../../src/map/pet.c; sourceTree = ""; }; - 53C194EE157C039A0012D90B /* pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pet.h; path = ../../src/map/pet.h; sourceTree = ""; }; - 53C194EF157C039A0012D90B /* quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = quest.c; path = ../../src/map/quest.c; sourceTree = ""; }; - 53C194F0157C039A0012D90B /* quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = quest.h; path = ../../src/map/quest.h; sourceTree = ""; }; - 53C194F1157C039A0012D90B /* script.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = script.c; path = ../../src/map/script.c; sourceTree = ""; }; - 53C194F2157C039A0012D90B /* script.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = script.h; path = ../../src/map/script.h; sourceTree = ""; }; - 53C194F3157C039A0012D90B /* searchstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = searchstore.c; path = ../../src/map/searchstore.c; sourceTree = ""; }; - 53C194F4157C039A0012D90B /* searchstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = searchstore.h; path = ../../src/map/searchstore.h; sourceTree = ""; }; - 53C194F5157C039A0012D90B /* skill.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = skill.c; path = ../../src/map/skill.c; sourceTree = ""; }; - 53C194F6157C039A0012D90B /* skill.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = skill.h; path = ../../src/map/skill.h; sourceTree = ""; }; - 53C194F7157C039A0012D90B /* status.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = status.c; path = ../../src/map/status.c; sourceTree = ""; }; - 53C194F8157C039A0012D90B /* status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status.h; path = ../../src/map/status.h; sourceTree = ""; }; - 53C194F9157C039A0012D90B /* storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = storage.c; path = ../../src/map/storage.c; sourceTree = ""; }; - 53C194FA157C039A0012D90B /* storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = storage.h; path = ../../src/map/storage.h; sourceTree = ""; }; - 53C194FB157C039A0012D90B /* trade.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = trade.c; path = ../../src/map/trade.c; sourceTree = ""; }; - 53C194FC157C039A0012D90B /* trade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trade.h; path = ../../src/map/trade.h; sourceTree = ""; }; - 53C194FD157C039A0012D90B /* unit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unit.c; path = ../../src/map/unit.c; sourceTree = ""; }; - 53C194FE157C039A0012D90B /* unit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unit.h; path = ../../src/map/unit.h; sourceTree = ""; }; - 53C194FF157C039A0012D90B /* vending.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = vending.c; path = ../../src/map/vending.c; sourceTree = ""; }; - 53C19500157C039A0012D90B /* vending.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vending.h; path = ../../src/map/vending.h; sourceTree = ""; }; - 53C1952A157C044D0012D90B /* char-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "char-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; }; - 53C19534157C045D0012D90B /* char.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = char.c; path = ../../src/char/char.c; sourceTree = ""; }; - 53C19535157C045D0012D90B /* char.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = char.h; path = ../../src/char/char.h; sourceTree = ""; }; - 53C19536157C045D0012D90B /* int_auction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_auction.c; path = ../../src/char/int_auction.c; sourceTree = ""; }; - 53C19537157C045D0012D90B /* int_auction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_auction.h; path = ../../src/char/int_auction.h; sourceTree = ""; }; - 53C19538157C045D0012D90B /* int_elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_elemental.c; path = ../../src/char/int_elemental.c; sourceTree = ""; }; - 53C19539157C045D0012D90B /* int_elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_elemental.h; path = ../../src/char/int_elemental.h; sourceTree = ""; }; - 53C1953A157C045D0012D90B /* int_guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_guild.c; path = ../../src/char/int_guild.c; sourceTree = ""; }; - 53C1953B157C045D0012D90B /* int_guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_guild.h; path = ../../src/char/int_guild.h; sourceTree = ""; }; - 53C1953C157C045D0012D90B /* int_homun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_homun.c; path = ../../src/char/int_homun.c; sourceTree = ""; }; - 53C1953D157C045D0012D90B /* int_homun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_homun.h; path = ../../src/char/int_homun.h; sourceTree = ""; }; - 53C1953E157C045D0012D90B /* int_mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mail.c; path = ../../src/char/int_mail.c; sourceTree = ""; }; - 53C1953F157C045D0012D90B /* int_mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mail.h; path = ../../src/char/int_mail.h; sourceTree = ""; }; - 53C19540157C045D0012D90B /* int_mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mercenary.c; path = ../../src/char/int_mercenary.c; sourceTree = ""; }; - 53C19541157C045D0012D90B /* int_mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mercenary.h; path = ../../src/char/int_mercenary.h; sourceTree = ""; }; - 53C19542157C045D0012D90B /* int_party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_party.c; path = ../../src/char/int_party.c; sourceTree = ""; }; - 53C19543157C045D0012D90B /* int_party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_party.h; path = ../../src/char/int_party.h; sourceTree = ""; }; - 53C19544157C045D0012D90B /* int_pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_pet.c; path = ../../src/char/int_pet.c; sourceTree = ""; }; - 53C19545157C045D0012D90B /* int_pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_pet.h; path = ../../src/char/int_pet.h; sourceTree = ""; }; - 53C19546157C045D0012D90B /* int_quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_quest.c; path = ../../src/char/int_quest.c; sourceTree = ""; }; - 53C19547157C045D0012D90B /* int_quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_quest.h; path = ../../src/char/int_quest.h; sourceTree = ""; }; - 53C19548157C045D0012D90B /* int_storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_storage.c; path = ../../src/char/int_storage.c; sourceTree = ""; }; - 53C19549157C045D0012D90B /* int_storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_storage.h; path = ../../src/char/int_storage.h; sourceTree = ""; }; - 53C1954A157C045D0012D90B /* inter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inter.c; path = ../../src/char/inter.c; sourceTree = ""; }; - 53C1954B157C045D0012D90B /* inter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inter.h; path = ../../src/char/inter.h; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 53C193CB157BFA830012D90B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 53C194A1157C03260012D90B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 53C19527157C044D0012D90B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 53006E8515AA145F00EA0266 /* config */ = { - isa = PBXGroup; - children = ( - 53006E8615AA145F00EA0266 /* classes */, - 53006E8915AA145F00EA0266 /* const.h */, - 53006E8A15AA145F00EA0266 /* core.h */, - 53006E8B15AA145F00EA0266 /* renewal.h */, - 53006E8C15AA145F00EA0266 /* secure.h */, - ); - name = config; - path = ../src/config; - sourceTree = ""; - }; - 53006E8615AA145F00EA0266 /* classes */ = { - isa = PBXGroup; - children = ( - 53006E8715AA145F00EA0266 /* general.h */, - 53006E8815AA145F00EA0266 /* swordsman.h */, - ); - path = classes; - sourceTree = ""; - }; - 53C193C1157BF8E40012D90B = { - isa = PBXGroup; - children = ( - 53006E8515AA145F00EA0266 /* config */, - 53C193E5157BFE790012D90B /* common */, - 53C193D1157BFA830012D90B /* login-server_sql */, - 53C194A6157C03260012D90B /* map-server_sql */, - 53C1952C157C044D0012D90B /* char-server_sql */, - 53C193CF157BFA830012D90B /* Products */, - ); - sourceTree = ""; - }; - 53C193CF157BFA830012D90B /* Products */ = { - isa = PBXGroup; - children = ( - 53C193CE157BFA830012D90B /* login-server_sql */, - 53C194A4157C03260012D90B /* map-server_sql */, - 53C1952A157C044D0012D90B /* char-server_sql */, - ); - name = Products; - sourceTree = ""; - }; - 53C193D1157BFA830012D90B /* login-server_sql */ = { - isa = PBXGroup; - children = ( - 53C193D9157BFAF00012D90B /* account_sql.c */, - 53C193DA157BFAF00012D90B /* account.h */, - 53C193DB157BFAF00012D90B /* ipban_sql.c */, - 53C193DC157BFAF00012D90B /* ipban.h */, - 53C193DD157BFAF00012D90B /* login.c */, - 53C193DE157BFAF00012D90B /* login.h */, - 53C193DF157BFAF00012D90B /* loginlog_sql.c */, - 53C193E0157BFAF00012D90B /* loginlog.h */, - ); - path = "login-server_sql"; - sourceTree = ""; - }; - 53C193E5157BFE790012D90B /* common */ = { - isa = PBXGroup; - children = ( - 53C193E6157BFE790012D90B /* atomic.h */, - 53C193E7157BFE790012D90B /* cbasetypes.h */, - 53C193E9157BFE790012D90B /* conf.c */, - 53C193EA157BFE790012D90B /* conf.h */, - 53C193EB157BFE790012D90B /* core.c */, - 53C193EC157BFE790012D90B /* core.h */, - 53C193ED157BFE790012D90B /* db.c */, - 53C193EE157BFE790012D90B /* db.h */, - 53C193EF157BFE790012D90B /* des.c */, - 53C193F0157BFE790012D90B /* des.h */, - 53C193F1157BFE790012D90B /* ers.c */, - 53C193F2157BFE790012D90B /* ers.h */, - 538CB45F15AD9B1700DF3F0D /* evdp.h */, - 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */, - 53C193F3157BFE790012D90B /* grfio.c */, - 53C193F4157BFE790012D90B /* grfio.h */, - 53C193F9157BFE790012D90B /* malloc.c */, - 53C193FA157BFE790012D90B /* malloc.h */, - 53C193FB157BFE790012D90B /* mapindex.c */, - 53C193FC157BFE790012D90B /* mapindex.h */, - 53C193FD157BFE790012D90B /* md5calc.c */, - 53C193FE157BFE790012D90B /* md5calc.h */, - 538CB46015AD9B1700DF3F0D /* mempool.c */, - 538CB46115AD9B1700DF3F0D /* mempool.h */, - 53C193FF157BFE790012D90B /* mmo.h */, - 538CB46215AD9B1700DF3F0D /* mutex.c */, - 538CB46315AD9B1700DF3F0D /* mutex.h */, - 538CB46415AD9B1700DF3F0D /* netbuffer.c */, - 538CB46515AD9B1700DF3F0D /* netbuffer.h */, - 538CB46615AD9B1700DF3F0D /* network.c */, - 538CB46715AD9B1700DF3F0D /* network.h */, - 53C19400157BFE790012D90B /* nullpo.c */, - 53C19401157BFE790012D90B /* nullpo.h */, - 538CB46815AD9B1700DF3F0D /* raconf.c */, - 538CB46915AD9B1700DF3F0D /* raconf.h */, - 53C1941C157BFE790012D90B /* random.c */, - 53C1941D157BFE790012D90B /* random.h */, - 53C1941E157BFE790012D90B /* showmsg.c */, - 53C1941F157BFE790012D90B /* showmsg.h */, - 53C19420157BFE790012D90B /* socket.c */, - 53C19421157BFE790012D90B /* socket.h */, - 53C19422157BFE790012D90B /* spinlock.h */, - 53C19423157BFE790012D90B /* sql.c */, - 53C19424157BFE790012D90B /* sql.h */, - 53C19425157BFE790012D90B /* strlib.c */, - 53C19426157BFE790012D90B /* strlib.h */, - 53C19427157BFE790012D90B /* thread.c */, - 53C19428157BFE790012D90B /* thread.h */, - 53C19429157BFE790012D90B /* timer.c */, - 53C1942A157BFE790012D90B /* timer.h */, - 53C1942B157BFE790012D90B /* utils.c */, - 53C1942C157BFE790012D90B /* utils.h */, - 53C1942D157BFE790012D90B /* winapi.h */, - ); - name = common; - path = ../src/common; - sourceTree = ""; - }; - 53C194A6157C03260012D90B /* map-server_sql */ = { - isa = PBXGroup; - children = ( - 53C194AE157C039A0012D90B /* atcommand.c */, - 53C194AF157C039A0012D90B /* atcommand.h */, - 53C194B0157C039A0012D90B /* battle.c */, - 53C194B1157C039A0012D90B /* battle.h */, - 53C194B2157C039A0012D90B /* battleground.c */, - 53C194B3157C039A0012D90B /* battleground.h */, - 53C194B4157C039A0012D90B /* buyingstore.c */, - 53C194B5157C039A0012D90B /* buyingstore.h */, - 53C194B6157C039A0012D90B /* chat.c */, - 53C194B7157C039A0012D90B /* chat.h */, - 53C194B8157C039A0012D90B /* chrif.c */, - 53C194B9157C039A0012D90B /* chrif.h */, - 53C194BA157C039A0012D90B /* clif.c */, - 53C194BB157C039A0012D90B /* clif.h */, - 53C194C5157C039A0012D90B /* date.c */, - 53C194C6157C039A0012D90B /* date.h */, - 53C194C7157C039A0012D90B /* duel.c */, - 53C194C8157C039A0012D90B /* duel.h */, - 53C194C9157C039A0012D90B /* elemental.c */, - 53C194CA157C039A0012D90B /* elemental.h */, - 53C194CB157C039A0012D90B /* guild.c */, - 53C194CC157C039A0012D90B /* guild.h */, - 53C194CD157C039A0012D90B /* homunculus.c */, - 53C194CE157C039A0012D90B /* homunculus.h */, - 53C194CF157C039A0012D90B /* instance.c */, - 53C194D0157C039A0012D90B /* instance.h */, - 53C194D1157C039A0012D90B /* intif.c */, - 53C194D2157C039A0012D90B /* intif.h */, - 53C194D3157C039A0012D90B /* itemdb.c */, - 53C194D4157C039A0012D90B /* itemdb.h */, - 53C194D5157C039A0012D90B /* log.c */, - 53C194D6157C039A0012D90B /* log.h */, - 53C194D7157C039A0012D90B /* mail.c */, - 53C194D8157C039A0012D90B /* mail.h */, - 53C194D9157C039A0012D90B /* map.c */, - 53C194DA157C039A0012D90B /* map.h */, - 53C194DB157C039A0012D90B /* mapreg_sql.c */, - 53C194DC157C039A0012D90B /* mapreg.h */, - 53C194DD157C039A0012D90B /* mercenary.c */, - 53C194DE157C039A0012D90B /* mercenary.h */, - 53C194DF157C039A0012D90B /* mob.c */, - 53C194E0157C039A0012D90B /* mob.h */, - 53C194E1157C039A0012D90B /* npc_chat.c */, - 53C194E2157C039A0012D90B /* npc.c */, - 53C194E3157C039A0012D90B /* npc.h */, - 53C194E4157C039A0012D90B /* party.c */, - 53C194E5157C039A0012D90B /* party.h */, - 53C194E6157C039A0012D90B /* path.c */, - 53C194E7157C039A0012D90B /* path.h */, - 53C194E8157C039A0012D90B /* pc_groups.c */, - 53C194E9157C039A0012D90B /* pc_groups.h */, - 53C194EA157C039A0012D90B /* pc.c */, - 53C194EB157C039A0012D90B /* pc.h */, - 53C194ED157C039A0012D90B /* pet.c */, - 53C194EE157C039A0012D90B /* pet.h */, - 53C194EF157C039A0012D90B /* quest.c */, - 53C194F0157C039A0012D90B /* quest.h */, - 53C194F1157C039A0012D90B /* script.c */, - 53C194F2157C039A0012D90B /* script.h */, - 53C194F3157C039A0012D90B /* searchstore.c */, - 53C194F4157C039A0012D90B /* searchstore.h */, - 53C194F5157C039A0012D90B /* skill.c */, - 53C194F6157C039A0012D90B /* skill.h */, - 53C194F7157C039A0012D90B /* status.c */, - 53C194F8157C039A0012D90B /* status.h */, - 53C194F9157C039A0012D90B /* storage.c */, - 53C194FA157C039A0012D90B /* storage.h */, - 53C194FB157C039A0012D90B /* trade.c */, - 53C194FC157C039A0012D90B /* trade.h */, - 53C194FD157C039A0012D90B /* unit.c */, - 53C194FE157C039A0012D90B /* unit.h */, - 53C194FF157C039A0012D90B /* vending.c */, - 53C19500157C039A0012D90B /* vending.h */, - ); - path = "map-server_sql"; - sourceTree = ""; - }; - 53C1952C157C044D0012D90B /* char-server_sql */ = { - isa = PBXGroup; - children = ( - 53C19534157C045D0012D90B /* char.c */, - 53C19535157C045D0012D90B /* char.h */, - 53C19536157C045D0012D90B /* int_auction.c */, - 53C19537157C045D0012D90B /* int_auction.h */, - 53C19538157C045D0012D90B /* int_elemental.c */, - 53C19539157C045D0012D90B /* int_elemental.h */, - 53C1953A157C045D0012D90B /* int_guild.c */, - 53C1953B157C045D0012D90B /* int_guild.h */, - 53C1953C157C045D0012D90B /* int_homun.c */, - 53C1953D157C045D0012D90B /* int_homun.h */, - 53C1953E157C045D0012D90B /* int_mail.c */, - 53C1953F157C045D0012D90B /* int_mail.h */, - 53C19540157C045D0012D90B /* int_mercenary.c */, - 53C19541157C045D0012D90B /* int_mercenary.h */, - 53C19542157C045D0012D90B /* int_party.c */, - 53C19543157C045D0012D90B /* int_party.h */, - 53C19544157C045D0012D90B /* int_pet.c */, - 53C19545157C045D0012D90B /* int_pet.h */, - 53C19546157C045D0012D90B /* int_quest.c */, - 53C19547157C045D0012D90B /* int_quest.h */, - 53C19548157C045D0012D90B /* int_storage.c */, - 53C19549157C045D0012D90B /* int_storage.h */, - 53C1954A157C045D0012D90B /* inter.c */, - 53C1954B157C045D0012D90B /* inter.h */, - ); - path = "char-server_sql"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 53C193CD157BFA830012D90B /* login-server_sql */ = { - isa = PBXNativeTarget; - buildConfigurationList = 53C193D6157BFA830012D90B /* Build configuration list for PBXNativeTarget "login-server_sql" */; - buildPhases = ( - 53C193CA157BFA830012D90B /* Sources */, - 53C193CB157BFA830012D90B /* Frameworks */, - 53C193CC157BFA830012D90B /* CopyFiles */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "login-server_sql"; - productName = "login-server_sql"; - productReference = 53C193CE157BFA830012D90B /* login-server_sql */; - productType = "com.apple.product-type.tool"; - }; - 53C194A3157C03260012D90B /* map-server_sql */ = { - isa = PBXNativeTarget; - buildConfigurationList = 53C194AB157C03260012D90B /* Build configuration list for PBXNativeTarget "map-server_sql" */; - buildPhases = ( - 53C194A0157C03260012D90B /* Sources */, - 53C194A1157C03260012D90B /* Frameworks */, - 53C194A2157C03260012D90B /* CopyFiles */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "map-server_sql"; - productName = "map-server_sql"; - productReference = 53C194A4157C03260012D90B /* map-server_sql */; - productType = "com.apple.product-type.tool"; - }; - 53C19529157C044D0012D90B /* char-server_sql */ = { - isa = PBXNativeTarget; - buildConfigurationList = 53C19531157C044D0012D90B /* Build configuration list for PBXNativeTarget "char-server_sql" */; - buildPhases = ( - 53C19526157C044D0012D90B /* Sources */, - 53C19527157C044D0012D90B /* Frameworks */, - 53C19528157C044D0012D90B /* CopyFiles */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "char-server_sql"; - productName = "char-server_sql"; - productReference = 53C1952A157C044D0012D90B /* char-server_sql */; - productType = "com.apple.product-type.tool"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 53C193C3157BF8E40012D90B /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0430; - }; - buildConfigurationList = 53C193C6157BF8E40012D90B /* Build configuration list for PBXProject "rAthena" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = 53C193C1157BF8E40012D90B; - productRefGroup = 53C193CF157BFA830012D90B /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 53C193CD157BFA830012D90B /* login-server_sql */, - 53C194A3157C03260012D90B /* map-server_sql */, - 53C19529157C044D0012D90B /* char-server_sql */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXSourcesBuildPhase section */ - 53C193CA157BFA830012D90B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 53C193E1157BFAF00012D90B /* account_sql.c in Sources */, - 53C193E2157BFAF00012D90B /* ipban_sql.c in Sources */, - 53C193E3157BFAF00012D90B /* login.c in Sources */, - 53C193E4157BFAF00012D90B /* loginlog_sql.c in Sources */, - 53C1942E157BFE790012D90B /* conf.c in Sources */, - 53C1942F157BFE790012D90B /* core.c in Sources */, - 53C19430157BFE790012D90B /* db.c in Sources */, - 53C19431157BFE790012D90B /* des.c in Sources */, - 53C19432157BFE790012D90B /* ers.c in Sources */, - 53C19433157BFE790012D90B /* grfio.c in Sources */, - 53C19436157BFE790012D90B /* malloc.c in Sources */, - 53C19437157BFE790012D90B /* mapindex.c in Sources */, - 53C19438157BFE790012D90B /* md5calc.c in Sources */, - 53C19439157BFE790012D90B /* nullpo.c in Sources */, - 53C19452157BFE790012D90B /* random.c in Sources */, - 53C19453157BFE790012D90B /* showmsg.c in Sources */, - 53C19454157BFE790012D90B /* socket.c in Sources */, - 53C19455157BFE790012D90B /* sql.c in Sources */, - 53C19456157BFE790012D90B /* strlib.c in Sources */, - 53C19457157BFE790012D90B /* thread.c in Sources */, - 53C19458157BFE790012D90B /* timer.c in Sources */, - 53C19459157BFE790012D90B /* utils.c in Sources */, - 538CB46A15AD9B1700DF3F0D /* evdp_epoll.c in Sources */, - 538CB46D15AD9B1700DF3F0D /* mempool.c in Sources */, - 538CB47015AD9B1700DF3F0D /* mutex.c in Sources */, - 538CB47315AD9B1700DF3F0D /* netbuffer.c in Sources */, - 538CB47615AD9B1700DF3F0D /* network.c in Sources */, - 538CB47915AD9B1700DF3F0D /* raconf.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 53C194A0157C03260012D90B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 53C19501157C039A0012D90B /* atcommand.c in Sources */, - 53C19502157C039A0012D90B /* battle.c in Sources */, - 53C19503157C039A0012D90B /* battleground.c in Sources */, - 53C19504157C039A0012D90B /* buyingstore.c in Sources */, - 53C19505157C039A0012D90B /* chat.c in Sources */, - 53C19506157C039A0012D90B /* chrif.c in Sources */, - 53C19507157C039A0012D90B /* clif.c in Sources */, - 53C19508157C039A0012D90B /* date.c in Sources */, - 53C19509157C039A0012D90B /* duel.c in Sources */, - 53C1950A157C039A0012D90B /* elemental.c in Sources */, - 53C1950B157C039A0012D90B /* guild.c in Sources */, - 53C1950C157C039A0012D90B /* homunculus.c in Sources */, - 53C1950D157C039A0012D90B /* instance.c in Sources */, - 53C1950E157C039A0012D90B /* intif.c in Sources */, - 53C1950F157C039A0012D90B /* itemdb.c in Sources */, - 53C19510157C039A0012D90B /* log.c in Sources */, - 53C19511157C039A0012D90B /* mail.c in Sources */, - 53C19512157C039A0012D90B /* map.c in Sources */, - 53C19513157C039A0012D90B /* mapreg_sql.c in Sources */, - 53C19514157C039A0012D90B /* mercenary.c in Sources */, - 53C19515157C039A0012D90B /* mob.c in Sources */, - 53C19516157C039A0012D90B /* npc_chat.c in Sources */, - 53C19517157C039A0012D90B /* npc.c in Sources */, - 53C19518157C039A0012D90B /* party.c in Sources */, - 53C19519157C039A0012D90B /* path.c in Sources */, - 53C1951A157C039A0012D90B /* pc_groups.c in Sources */, - 53C1951B157C039A0012D90B /* pc.c in Sources */, - 53C1951C157C039A0012D90B /* pet.c in Sources */, - 53C1951D157C039A0012D90B /* quest.c in Sources */, - 53C1951E157C039A0012D90B /* script.c in Sources */, - 53C1951F157C039A0012D90B /* searchstore.c in Sources */, - 53C19520157C039A0012D90B /* skill.c in Sources */, - 53C19521157C039A0012D90B /* status.c in Sources */, - 53C19522157C039A0012D90B /* storage.c in Sources */, - 53C19523157C039A0012D90B /* trade.c in Sources */, - 53C19524157C039A0012D90B /* unit.c in Sources */, - 53C19525157C039A0012D90B /* vending.c in Sources */, - 538CB46B15AD9B1700DF3F0D /* evdp_epoll.c in Sources */, - 538CB46E15AD9B1700DF3F0D /* mempool.c in Sources */, - 538CB47115AD9B1700DF3F0D /* mutex.c in Sources */, - 538CB47415AD9B1700DF3F0D /* netbuffer.c in Sources */, - 538CB47715AD9B1700DF3F0D /* network.c in Sources */, - 538CB47A15AD9B1700DF3F0D /* raconf.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 53C19526157C044D0012D90B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 53C1954C157C045D0012D90B /* char.c in Sources */, - 53C1954D157C045D0012D90B /* int_auction.c in Sources */, - 53C1954E157C045D0012D90B /* int_elemental.c in Sources */, - 53C1954F157C045D0012D90B /* int_guild.c in Sources */, - 53C19550157C045D0012D90B /* int_homun.c in Sources */, - 53C19551157C045D0012D90B /* int_mail.c in Sources */, - 53C19552157C045D0012D90B /* int_mercenary.c in Sources */, - 53C19553157C045D0012D90B /* int_party.c in Sources */, - 53C19554157C045D0012D90B /* int_pet.c in Sources */, - 53C19555157C045D0012D90B /* int_quest.c in Sources */, - 53C19556157C045D0012D90B /* int_storage.c in Sources */, - 53C19557157C045D0012D90B /* inter.c in Sources */, - 538CB46C15AD9B1700DF3F0D /* evdp_epoll.c in Sources */, - 538CB46F15AD9B1700DF3F0D /* mempool.c in Sources */, - 538CB47215AD9B1700DF3F0D /* mutex.c in Sources */, - 538CB47515AD9B1700DF3F0D /* netbuffer.c in Sources */, - 538CB47815AD9B1700DF3F0D /* network.c in Sources */, - 538CB47B15AD9B1700DF3F0D /* raconf.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 53C193C8157BF8E40012D90B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - }; - name = Debug; - }; - 53C193C9157BF8E40012D90B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - }; - name = Release; - }; - 53C193D7157BFA830012D90B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/../src/common/obj_all\"", - "\"$(SRCROOT)/../src/common/obj_sql\"", - "\"$(SRCROOT)/../3rdparty/\"", - "\"$(SRCROOT)/../3rdparty/mysql/lib\"", - "\"$(SRCROOT)/../3rdparty/pcre/lib\"", - "\"$(SRCROOT)/../3rdparty/zlib/lib\"", - ); - MACOSX_DEPLOYMENT_TARGET = 10.7; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Debug; - }; - 53C193D8157BFA830012D90B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)/../src/common/obj_all\"", - "\"$(SRCROOT)/../src/common/obj_sql\"", - "\"$(SRCROOT)/../3rdparty/\"", - "\"$(SRCROOT)/../3rdparty/mysql/lib\"", - "\"$(SRCROOT)/../3rdparty/pcre/lib\"", - "\"$(SRCROOT)/../3rdparty/zlib/lib\"", - ); - MACOSX_DEPLOYMENT_TARGET = 10.7; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Release; - }; - 53C194AC157C03260012D90B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.7; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Debug; - }; - 53C194AD157C03260012D90B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.7; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Release; - }; - 53C19532157C044D0012D90B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.7; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Debug; - }; - 53C19533157C044D0012D90B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CLANG_ENABLE_OBJC_ARC = YES; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_VERSION = com.apple.compilers.llvm.clang.1_0; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.7; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 53C193C6157BF8E40012D90B /* Build configuration list for PBXProject "rAthena" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 53C193C8157BF8E40012D90B /* Debug */, - 53C193C9157BF8E40012D90B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 53C193D6157BFA830012D90B /* Build configuration list for PBXNativeTarget "login-server_sql" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 53C193D7157BFA830012D90B /* Debug */, - 53C193D8157BFA830012D90B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 53C194AB157C03260012D90B /* Build configuration list for PBXNativeTarget "map-server_sql" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 53C194AC157C03260012D90B /* Debug */, - 53C194AD157C03260012D90B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 53C19531157C044D0012D90B /* Build configuration list for PBXNativeTarget "char-server_sql" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 53C19532157C044D0012D90B /* Debug */, - 53C19533157C044D0012D90B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 53C193C3157BF8E40012D90B /* Project object */; -} diff --git a/rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 8a9819b7e..000000000 --- a/rAthena/rAthena.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate b/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 754f3a6af..000000000 Binary files a/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings b/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings deleted file mode 100644 index 659c8766e..000000000 --- a/rAthena/rAthena.xcodeproj/project.xcworkspace/xcuserdata/hennet.xcuserdatad/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,10 +0,0 @@ - - - - - HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges - - SnapshotAutomaticallyBeforeSignificantChanges - - - diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist deleted file mode 100644 index 05301bc25..000000000 --- a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme deleted file mode 100644 index 6f134ccfb..000000000 --- a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/char-server_sql.xcscheme +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme deleted file mode 100644 index 01b1cc6be..000000000 --- a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/login-server_sql.xcscheme +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme deleted file mode 100644 index 416cfce2b..000000000 --- a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/map-server_sql.xcscheme +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist b/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 6bd664644..000000000 --- a/rAthena/rAthena.xcodeproj/xcuserdata/hennet.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,42 +0,0 @@ - - - - - SchemeUserState - - char-server_sql.xcscheme - - orderHint - 2 - - login-server_sql.xcscheme - - orderHint - 0 - - map-server_sql.xcscheme - - orderHint - 1 - - - SuppressBuildableAutocreation - - 53C193CD157BFA830012D90B - - primary - - - 53C194A3157C03260012D90B - - primary - - - 53C19529157C044D0012D90B - - primary - - - - - diff --git a/sql-files/upgrades/upgrade_2013.02.06_21.38.sql b/sql-files/upgrades/upgrade_2013.02.06_21.38.sql deleted file mode 100644 index d5c467097..000000000 --- a/sql-files/upgrades/upgrade_2013.02.06_21.38.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `char` ADD COLUMN `slotchange` SMALLINT(3) unsigned NOT NULL default '0'; \ No newline at end of file -- cgit v1.2.3-60-g2f50