From b79261f2e8c01a2a3f563bffe0eb5589f54a79f1 Mon Sep 17 00:00:00 2001 From: Streusel Date: Mon, 1 Jan 2007 01:43:06 +0100 Subject: -Updated guides/guides_izlude.txt coordinates --- npc/re/guides/guides_izlude.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/npc/re/guides/guides_izlude.txt b/npc/re/guides/guides_izlude.txt index b3f4cd4b0..80eedaf91 100644 --- a/npc/re/guides/guides_izlude.txt +++ b/npc/re/guides/guides_izlude.txt @@ -35,7 +35,7 @@ mes "on Byalan Island since it is"; mes "filled with dreadful monsters."; mes "Would you like to check any other locations?"; - viewpoint 1,200,180,0,0xFF0000; + viewpoint 1,197,205,0,0xFF0000; next; break; case 2: @@ -45,7 +45,7 @@ mes "Let me mark its location"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,145,39,1,0x0A82FF; + viewpoint 1,204,75,1,0x0A82FF; next; break; case 3: @@ -64,7 +64,7 @@ mes "Let me mark the location of the ^006400Tool Shop^000000"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,148,148,3,0xAAFF00; + viewpoint 1,160,125,3,0xAAFF00; next; break; case 5: @@ -72,7 +72,7 @@ mes "Let me mark the location of the ^7F3300Weapon & Armor Shop^000000"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,114,149,4,0xD2691E; + viewpoint 1,109,182,4,0xD2691E; next; break; case 6: @@ -81,7 +81,7 @@ mes "Let me mark its location"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,52,140,5,0xDA70D6; + viewpoint 1,52,172,5,0xDA70D6; next; break; case 7: @@ -89,7 +89,7 @@ mes "Let me mark the location of the ^B9062FSwordsman Association^000000"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,214,130,6,0xFF0000; + viewpoint 1,212,161,6,0xFF0000; next; break; case 8: @@ -109,7 +109,7 @@ mes "the Swordsman Guild building."; mes "Let me mark his location on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,52,140,7,0x0A82FF; + viewpoint 1,131,148,7,0x0A82FF; next; break; case 2: @@ -118,7 +118,7 @@ mes "^FF5400Kafra Employee^000000"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,134,88,8,0xFF5400; + viewpoint 1,128,148,8,0xFF5400; next; break; case 3: @@ -127,7 +127,7 @@ mes "^8B4513Jawaii^000000, the paradise of newlyweds,"; mes "please speak to the ^B9062FNewlywed Helper^000000."; mes "Would you like to check any other locations?"; - viewpoint 1,171,185,9,0xFF0000; + viewpoint 1,102,150,9,0xFF0000; next; break; case 4: @@ -137,7 +137,7 @@ mes "Let me mark his location"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,171,130,10,0xD2691E; + viewpoint 1,158,130,10,0xD2691E; next; break; case 5: @@ -146,7 +146,7 @@ mes "^0000FFMercenary Goods Merchant^000000"; mes "on your mini-map."; mes "Would you like to check any other locations?"; - viewpoint 1,48,137,11,0xDA70D6; + viewpoint 1,56,169,11,0xDA70D6; next; break; case 6: -- cgit v1.2.3-70-g09d2 From 24678bdccf0c035ada2aec46dc89055beec9674c Mon Sep 17 00:00:00 2001 From: Matheus Macabu Date: Fri, 25 Jan 2013 18:37:56 -0200 Subject: Fixed bugreport:7218, where unique id was implemented and they forgot that more load was being retrieved after, so card0 wasn't being loaded properly. Signed-off-by: Matheus Macabu --- src/char/int_auction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/char/int_auction.c b/src/char/int_auction.c index 34aed5bf7..06e238667 100644 --- a/src/char/int_auction.c +++ b/src/char/int_auction.c @@ -224,7 +224,7 @@ void inter_auctions_fromsql(void) for( i = 0; i < MAX_SLOTS; i++ ) { - Sql_GetData(sql_handle, 14 + i, &data, NULL); + Sql_GetData(sql_handle, 15 + i, &data, NULL); item->card[i] = atoi(data); } -- cgit v1.2.3-70-g09d2 From 0f9a3af9e466576cdb64b0e3b4ab1a5dec9549f5 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Sat, 26 Jan 2013 17:29:37 -0200 Subject: Changing ASCI Art / Moving stat server to Hercules. Changed the ASCI art (not quite final; just changing it prior to release), moving stat server to hercules end Signed-off-by: shennetsind --- src/char/char.c | 2 +- src/common/core.c | 27 ++++++++++++++------------- src/map/battle.c | 12 ++++++------ 3 files changed, 21 insertions(+), 20 deletions(-) diff --git a/src/char/char.c b/src/char/char.c index f21730d3b..83b58a0a7 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -3307,7 +3307,7 @@ int parse_frommap(int fd) int sfd;/* stat server fd */ RFIFOSKIP(fd, 2);/* we skip first 2 bytes which are the 0x3008, so we end up with a buffer equal to the one we send */ - if( (sfd = make_connection(host2ip("stats.rathena.org"),(uint16)25421,true) ) == -1 ) { + if( (sfd = make_connection(host2ip("stats.hercules.ws"),(uint16)25421,true) ) == -1 ) { RFIFOSKIP(fd, RFIFOW(fd,2) );/* skip this packet */ break;/* connection not possible, we drop the report */ } diff --git a/src/common/core.c b/src/common/core.c index e1f99885b..1e3dbb3d7 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -265,18 +265,19 @@ static void display_title(void) { //ClearScreen(); // clear screen and go up/left (0, 0 position in text) ShowMessage("\n"); - ShowMessage(""CL_PASS" "CL_BOLD" "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BT_WHITE" rAthena Development Team presents "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BOLD" ___ __ __ "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BOLD" _____/ | / /_/ /_ ___ ____ ____ _ "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BOLD" / ___/ /| |/ __/ __ \\/ _ \\/ __ \\/ __ `/ "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BOLD" / / / ___ / /_/ / / / __/ / / / /_/ / "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BOLD" /_/ /_/ |_\\__/_/ /_/\\___/_/ /_/\\__,_/ "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BOLD" "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_GREEN" http://rathena.org/board/ "CL_PASS""CL_CLL""CL_NORMAL"\n"); - ShowMessage(""CL_PASS" "CL_BOLD" "CL_PASS""CL_CLL""CL_NORMAL"\n"); - - ShowInfo("SVN Revision: '"CL_WHITE"%s"CL_RESET"'.\n", get_svn_revision()); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" Hercules Development Team presents "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" _ _ _ "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" | | | | | | "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" | |_| | ___ _ __ ___ _ _| | ___ ___ "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" | _ |/ _ \\ '__/ __| | | | |/ _ \\/ __|"CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" | | | | __/ | | (__| |_| | | __/\\__ \\"CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" \\_| |_/\\___|_| \\___|\\__,_|_|\\___||___/"CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" http://hercules.ws/board/ "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + ShowMessage(""CL_BG_RED" "CL_BT_WHITE" "CL_BG_RED""CL_CLL""CL_NORMAL"\n"); + + //ShowInfo("SVN Revision: '"CL_WHITE"%s"CL_RESET"'.\n", get_svn_revision()); } // Warning if executed as superuser (root) @@ -284,7 +285,7 @@ void usercheck(void) { #ifndef _WIN32 if (geteuid() == 0) { - ShowWarning ("You are running rAthena with root privileges, it is not necessary.\n"); + ShowWarning ("You are running Hercules with root privileges, it is not necessary.\n"); } #endif } diff --git a/src/map/battle.c b/src/map/battle.c index 0959ea858..487cf4854 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -5878,9 +5878,9 @@ static const struct _battle_data { }; #ifndef STATS_OPT_OUT /** - * rAthena anonymous statistic usage report -- packet is built here, and sent to char server to report. + * Hercules anonymous statistic usage report -- packet is built here, and sent to char server to report. **/ -void rAthena_report(char* date, char *time_c) { +void Hercules_report(char* date, char *time_c) { int i, rev = 0, bd_size = ARRAYLENGTH(battle_data); unsigned int config = 0; const char* rev_str; @@ -6004,9 +6004,9 @@ void rAthena_report(char* date, char *time_c) { #undef BFLAG_LENGTH } -static int rAthena_report_timer(int tid, unsigned int tick, int id, intptr_t data) { +static int Hercules_report_timer(int tid, unsigned int tick, int id, intptr_t data) { if( chrif_isconnected() ) {/* char server relays it, so it must be online. */ - rAthena_report(__DATE__,__TIME__); + Hercules_report(__DATE__,__TIME__); } return 0; } @@ -6136,8 +6136,8 @@ void do_init_battle(void) add_timer_func_list(battle_delay_damage_sub, "battle_delay_damage_sub"); #ifndef STATS_OPT_OUT - add_timer_func_list(rAthena_report_timer, "rAthena_report_timer"); - add_timer_interval(gettick()+30000, rAthena_report_timer, 0, 0, 60000 * 30); + add_timer_func_list(Hercules_report_timer, "Hercules_report_timer"); + add_timer_interval(gettick()+30000, Hercules_report_timer, 0, 0, 60000 * 30); #endif } -- cgit v1.2.3-70-g09d2 From a70b02e03670755f71e725455c6c587de0fd9b44 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Sun, 27 Jan 2013 08:32:25 -0200 Subject: Renaming some more, also temporarily made "display_version" off by default until we decide what to do with the version since it's git. Signed-off-by: shennetsind --- CMakeLists.txt | 6 +++--- Hercules-10.sln | 37 +++++++++++++++++++++++++++++++++++++ Hercules-12.sln | 38 ++++++++++++++++++++++++++++++++++++++ Hercules-9.sln | 37 +++++++++++++++++++++++++++++++++++++ conf/battle.conf | 2 +- conf/battle/battle.conf | 2 +- conf/battle/battleground.conf | 2 +- conf/battle/client.conf | 6 +++--- conf/battle/drops.conf | 2 +- conf/battle/exp.conf | 2 +- conf/battle/feature.conf | 2 +- conf/battle/gm.conf | 2 +- conf/battle/guild.conf | 2 +- conf/battle/homunc.conf | 2 +- conf/battle/items.conf | 2 +- conf/battle/misc.conf | 2 +- conf/battle/monster.conf | 2 +- conf/battle/party.conf | 4 ++-- conf/battle/pet.conf | 2 +- conf/battle/player.conf | 2 +- conf/battle/skill.conf | 2 +- conf/battle/status.conf | 2 +- conf/char-server.conf | 4 ++-- conf/inter-server.conf | 2 +- conf/login-server.conf | 2 +- conf/logs.conf | 2 +- conf/map-server.conf | 2 +- conf/messages.conf | 6 +++--- conf/motd.txt | 2 +- conf/packet.conf | 2 +- conf/readme.txt | 6 +++--- conf/script.conf | 2 +- rAthena-10.sln | 37 ------------------------------------- rAthena-12.sln | 38 -------------------------------------- rAthena-9.sln | 37 ------------------------------------- 35 files changed, 151 insertions(+), 151 deletions(-) create mode 100644 Hercules-10.sln create mode 100644 Hercules-12.sln create mode 100644 Hercules-9.sln delete mode 100644 rAthena-10.sln delete mode 100644 rAthena-12.sln delete mode 100644 rAthena-9.sln diff --git a/CMakeLists.txt b/CMakeLists.txt index de011379a..0ae227aae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -393,7 +393,7 @@ endif() ##################################################################### # package stuff # -set( CPACK_PACKAGE_NAME "rAthena" ) +set( CPACK_PACKAGE_NAME "Hercules" ) set( CPACK_PACKAGE_DESCRIPTION_SUMMARY "MMORPG server package" ) set( CPACK_PACKAGE_VERSION ${SVNVERSION} ) set( CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/LICENSE ) @@ -459,8 +459,8 @@ set( DEVELOPMENT_FILES "${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt" "${CMAKE_CURRENT_SOURCE_DIR}/configure" "${CMAKE_CURRENT_SOURCE_DIR}/configure.in" - "${CMAKE_CURRENT_SOURCE_DIR}/rAthena-9.sln" - "${CMAKE_CURRENT_SOURCE_DIR}/rAthena-10.sln" + "${CMAKE_CURRENT_SOURCE_DIR}/Hercules-9.sln" + "${CMAKE_CURRENT_SOURCE_DIR}/Hercules-10.sln" ) set( DEVELOPMENT_DIRECTORIES "3rdparty" diff --git a/Hercules-10.sln b/Hercules-10.sln new file mode 100644 index 000000000..ea8847037 --- /dev/null +++ b/Hercules-10.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "char-server_sql", "vcproj-10\char-server_sql.vcxproj", "{D356871D-58E1-450B-967A-E4E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "login-server_sql", "vcproj-10\login-server_sql.vcxproj", "{D356871D-58E1-450B-967A-E5E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "map-server_sql", "vcproj-10\map-server_sql.vcxproj", "{D356871D-58E1-450B-967A-E6E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mapcache", "vcproj-10\mapcache.vcxproj", "{D356871D-58E1-450B-967A-E7E9646175AF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D356871D-58E1-450B-967A-E4E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Hercules-12.sln b/Hercules-12.sln new file mode 100644 index 000000000..e38ab4cbd --- /dev/null +++ b/Hercules-12.sln @@ -0,0 +1,38 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "char-server_sql", "vcproj-12\char-server_sql.vcxproj", "{D356871D-58E1-450B-967A-E4E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "login-server_sql", "vcproj-12\login-server_sql.vcxproj", "{D356871D-58E1-450B-967A-E5E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "map-server_sql", "vcproj-12\map-server_sql.vcxproj", "{D356871D-58E1-450B-967A-E6E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mapcache", "vcproj-12\mapcache.vcxproj", "{D356871D-58E1-450B-967A-E7E9646175AF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D356871D-58E1-450B-967A-E4E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Hercules-9.sln b/Hercules-9.sln new file mode 100644 index 000000000..8ea06598a --- /dev/null +++ b/Hercules-9.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "char-server_sql", "vcproj-9\char-server_sql.vcproj", "{D356871D-58E1-450B-967A-E4E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "login-server_sql", "vcproj-9\login-server_sql.vcproj", "{D356871D-58E1-450B-967A-E5E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "map-server_sql", "vcproj-9\map-server_sql.vcproj", "{D356871D-58E1-450B-967A-E6E9646175AF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mapcache", "vcproj-9\mapcache.vcproj", "{D356871D-58E1-450B-967A-E7E9646175AF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D356871D-58E1-450B-967A-E4E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E4E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E5E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E6E9646175AF}.Release|Win32.Build.0 = Release|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Debug|Win32.ActiveCfg = Debug|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Debug|Win32.Build.0 = Debug|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Release|Win32.ActiveCfg = Release|Win32 + {D356871D-58E1-450B-967A-E7E9646175AF}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/conf/battle.conf b/conf/battle.conf index fe03deb7e..1eddfae35 100644 --- a/conf/battle.conf +++ b/conf/battle.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker // Splitted up into multiple files by Skotlex. diff --git a/conf/battle/battle.conf b/conf/battle/battle.conf index 87ad91597..94f80a2a6 100644 --- a/conf/battle/battle.conf +++ b/conf/battle/battle.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/battleground.conf b/conf/battle/battleground.conf index 98b2dd8db..cce6bd84e 100644 --- a/conf/battle/battleground.conf +++ b/conf/battle/battleground.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/client.conf b/conf/battle/client.conf index 0522e9425..eaf233a5d 100644 --- a/conf/battle/client.conf +++ b/conf/battle/client.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- @@ -105,8 +105,8 @@ summer_ignorepalette: no // Set this to 1 if your clients have langtype problems and can't display motd properly motd_type: 0 -// Show rAthena version to users when the login? -display_version: yes +// Show Hercules version to users when the login? +display_version: no // When affected with the "Hallucination" status effect, send the effect to client? (Note 1) // Note: Set to 'no' if the client lags due to the "Wavy" screen effect. diff --git a/conf/battle/drops.conf b/conf/battle/drops.conf index 104f08467..3704b9a0e 100644 --- a/conf/battle/drops.conf +++ b/conf/battle/drops.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/exp.conf b/conf/battle/exp.conf index fbc7c2967..7c781d3a3 100644 --- a/conf/battle/exp.conf +++ b/conf/battle/exp.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/feature.conf b/conf/battle/feature.conf index fa05efd8b..7e1f83707 100644 --- a/conf/battle/feature.conf +++ b/conf/battle/feature.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Feature Configuration File +// Hercules Feature Configuration File //-------------------------------------------------------------- // Note 1: Value is a config switch (on/off, yes/no or 1/0) // Note 2: Value is in percents (100 means 100%) diff --git a/conf/battle/gm.conf b/conf/battle/gm.conf index e02efa9a8..0120476be 100644 --- a/conf/battle/gm.conf +++ b/conf/battle/gm.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/guild.conf b/conf/battle/guild.conf index 234c73994..3285ccb75 100644 --- a/conf/battle/guild.conf +++ b/conf/battle/guild.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/homunc.conf b/conf/battle/homunc.conf index 6ebd43bec..fb34792ce 100644 --- a/conf/battle/homunc.conf +++ b/conf/battle/homunc.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/items.conf b/conf/battle/items.conf index 7c0ee1ad3..9bc2e37cc 100644 --- a/conf/battle/items.conf +++ b/conf/battle/items.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/misc.conf b/conf/battle/misc.conf index 0105e542b..274cdee23 100644 --- a/conf/battle/misc.conf +++ b/conf/battle/misc.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/monster.conf b/conf/battle/monster.conf index fa9947ec5..51136fbe0 100644 --- a/conf/battle/monster.conf +++ b/conf/battle/monster.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/party.conf b/conf/battle/party.conf index 63fc3a94a..e57bc4fc9 100644 --- a/conf/battle/party.conf +++ b/conf/battle/party.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- @@ -15,7 +15,7 @@ party_update_interval: 1000 // Method used to update party-mate hp-bars: // 0: Aegis - bar is updated every time HP changes (bandwidth intensive) -// 1: rAthena - bar is updated with the party map dots (up to 1 second delay) +// 1: Hercules - bar is updated with the party map dots (up to 1 second delay) party_hp_mode: 0 // When 'Party Share' item sharing is enabled in a party, diff --git a/conf/battle/pet.conf b/conf/battle/pet.conf index de9056972..e80826ce8 100644 --- a/conf/battle/pet.conf +++ b/conf/battle/pet.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/player.conf b/conf/battle/player.conf index 32e3673f7..cacc66e4d 100644 --- a/conf/battle/player.conf +++ b/conf/battle/player.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/skill.conf b/conf/battle/skill.conf index 39e1b357a..9006247a2 100644 --- a/conf/battle/skill.conf +++ b/conf/battle/skill.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/battle/status.conf b/conf/battle/status.conf index 717db68bf..6efe973b7 100644 --- a/conf/battle/status.conf +++ b/conf/battle/status.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Battle Configuration File +// Hercules Battle Configuration File // Originally Translated by Peter Kieser // Made in to plainer English by Ancyker //-------------------------------------------------------------- diff --git a/conf/char-server.conf b/conf/char-server.conf index bd2e2793c..929bad5d0 100644 --- a/conf/char-server.conf +++ b/conf/char-server.conf @@ -1,4 +1,4 @@ -// Athena Character configuration file. +// Character Server configuration file. // Note: "Comments" are all text on the right side of a double slash "//" // Whatever text is commented will not be parsed by the servers, and serves @@ -12,7 +12,7 @@ passwd: p1 // NOTE: Do not use spaces or any of these characters which are not allowed in // Windows filenames \/:*?"<>| // ... or else guild emblems won't work client-side! -server_name: rAthena +server_name: Hercules // Wisp name for server: used to send wisp from server to players (between 4 to 23 characters) wisp_server_name: Server diff --git a/conf/inter-server.conf b/conf/inter-server.conf index b116a6a88..70bf80e5c 100644 --- a/conf/inter-server.conf +++ b/conf/inter-server.conf @@ -1,4 +1,4 @@ -// Athena InterServer configuration. +// Hercules InterServer (settings shared/used by more than 1 server) configuration. // Options for both versions diff --git a/conf/login-server.conf b/conf/login-server.conf index b75f50bd2..3e5bdb3f9 100644 --- a/conf/login-server.conf +++ b/conf/login-server.conf @@ -1,4 +1,4 @@ -// Athena Login Server configuration file. +// Hercules Login Server configuration file. // Translated by Peter Kieser // Note: "Comments" are all text on the right side of a double slash "//" diff --git a/conf/logs.conf b/conf/logs.conf index bbe2f55c2..2aeb1b52e 100644 --- a/conf/logs.conf +++ b/conf/logs.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -// rAthena Log Configuration File +// Hercules Log Configuration File //-------------------------------------------------------------- // Note 1: Value is a config switch (on/off, yes/no or 1/0) // Note 2: Value is in percents (100 means 100%) diff --git a/conf/map-server.conf b/conf/map-server.conf index e9c208e5b..0fc34d8b9 100644 --- a/conf/map-server.conf +++ b/conf/map-server.conf @@ -1,5 +1,5 @@ //-------------------------------------------------------------- -//rAthena Map-Server Configuration File +//Hercules Map-Server Configuration File //-------------------------------------------------------------- // Note: "Comments" are all text on the right side of a double slash "//" diff --git a/conf/messages.conf b/conf/messages.conf index 7c3a8b8a4..a554c116d 100644 --- a/conf/messages.conf +++ b/conf/messages.conf @@ -1,4 +1,4 @@ -// rAthena msg_athena.conf +// Hercules msg_athena.conf // Message Configuration // For translation, just change msg here (second line), no need to modify source code, // or alternatively, use conf/import/msg_conf.txt @@ -1242,8 +1242,8 @@ 1294: They are family... wish them luck. // @version -1295: rAthena Version SVN r%s -1296: Cannot determine SVN revision. +1295: Hercules Git Hash r%s +1296: Cannot determine Git Hash. // @mutearea 1297: Please enter a time in minutes (usage: @mutearea/@stfu