diff options
author | shennetsind <ind@henn.et> | 2013-10-07 13:41:02 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-07 13:41:02 -0300 |
commit | dda77cb771769fcbf13765c0edf3e5da91f3666c (patch) | |
tree | 74154558d5fbc3782a6a1070f1ac0c8a0a4fdff3 | |
parent | c56e3eb701658079f1de09db759f3b09327ec046 (diff) | |
parent | e7457d450f44f07881e9a8d9af25b068596f3df4 (diff) | |
download | hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.gz hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.bz2 hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.xz hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
-rw-r--r-- | 3rdparty/libconfig/Makefile.in | 17 | ||||
-rw-r--r-- | 3rdparty/libconfig/extra/gen/grammar.y | 13 | ||||
-rw-r--r-- | 3rdparty/libconfig/grammar.c | 182 | ||||
-rw-r--r-- | 3rdparty/mt19937ar/Makefile.in | 17 | ||||
-rw-r--r-- | Makefile.in | 8 | ||||
-rw-r--r-- | conf/plugins.conf | 10 | ||||
-rw-r--r-- | db/re/skill_db.txt | 2 | ||||
-rw-r--r-- | src/char/Makefile.in | 12 | ||||
-rw-r--r-- | src/common/Makefile.in | 17 | ||||
-rw-r--r-- | src/login/Makefile.in | 12 | ||||
-rw-r--r-- | src/map/Makefile.in | 12 | ||||
-rw-r--r-- | src/map/skill.c | 29 | ||||
-rw-r--r-- | src/map/status.c | 5 | ||||
-rw-r--r-- | src/plugins/Makefile.in | 12 | ||||
-rw-r--r-- | src/test/Makefile.in | 10 | ||||
-rw-r--r-- | src/tool/Makefile.in | 20 | ||||
-rw-r--r-- | vcproj-10/plugin-HPMHooking.vcxproj | 6 | ||||
-rw-r--r-- | vcproj-12/plugin-HPMHooking.vcxproj | 6 |
18 files changed, 229 insertions, 161 deletions
diff --git a/3rdparty/libconfig/Makefile.in b/3rdparty/libconfig/Makefile.in index 048a1b3b7..88c5eba96 100644 --- a/3rdparty/libconfig/Makefile.in +++ b/3rdparty/libconfig/Makefile.in @@ -8,19 +8,22 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all clean help +.PHONY: all clean buildclean help all: $(LIBCONFIG_OBJ) -clean: - @echo " CLEAN libconfig" +buildclean: + @echo " CLEAN libconfig (build temp files)" @rm -rf *.o +clean: buildclean + @echo " CLEAN libconfig" + help: - @echo "possible targets are 'all' 'clean' 'help'" - @echo "'all' - builds $(LIBCONFIG_OBJ)" - @echo "'clean' - deletes $(LIBCONFIG_OBJ)" - @echo "'help' - outputs this message" + @echo "possible targets are 'all' 'clean' 'buildclean' 'help'" + @echo "'all' - builds $(LIBCONFIG_OBJ)" + @echo "'clean', 'buildclean' - deletes $(LIBCONFIG_OBJ)" + @echo "'help' - outputs this message" ##################################################################### diff --git a/3rdparty/libconfig/extra/gen/grammar.y b/3rdparty/libconfig/extra/gen/grammar.y index f578897cb..576241c01 100644 --- a/3rdparty/libconfig/extra/gen/grammar.y +++ b/3rdparty/libconfig/extra/gen/grammar.y @@ -118,6 +118,11 @@ setting_terminator: | TOK_COMMA ; +comma_optional: + /* empty */ + | TOK_COMMA + ; + setting: TOK_NAME { @@ -359,9 +364,13 @@ value_list_optional: | value_list ; -simple_value_list: +simple_value_list_sub: simple_value - | simple_value_list TOK_COMMA simple_value + | simple_value_list_sub TOK_COMMA simple_value + ; + +simple_value_list: + simple_value_list_sub comma_optional ; simple_value_list_optional: diff --git a/3rdparty/libconfig/grammar.c b/3rdparty/libconfig/grammar.c index 0331c1854..47fb7b5dd 100644 --- a/3rdparty/libconfig/grammar.c +++ b/3rdparty/libconfig/grammar.c @@ -445,16 +445,16 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 6 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 35 +#define YYLAST 36 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 23 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 20 +#define YYNNTS 22 /* YYNRULES -- Number of rules. */ -#define YYNRULES 39 +#define YYNRULES 42 /* YYNRULES -- Number of states. */ -#define YYNSTATES 47 +#define YYNSTATES 49 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 @@ -502,32 +502,35 @@ static const yytype_uint8 yytranslate[] = static const yytype_uint8 yyprhs[] = { 0, 0, 3, 4, 6, 8, 11, 12, 14, 15, - 17, 19, 20, 26, 27, 32, 33, 38, 40, 42, - 44, 46, 48, 51, 53, 55, 57, 59, 61, 63, - 65, 67, 71, 72, 74, 76, 80, 81, 83, 84 + 17, 19, 20, 22, 23, 29, 30, 35, 36, 41, + 43, 45, 47, 49, 51, 54, 56, 58, 60, 62, + 64, 66, 68, 70, 74, 75, 77, 79, 83, 86, + 87, 89, 90 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int8 yyrhs[] = { - 24, 0, -1, -1, 25, -1, 28, -1, 25, 28, + 24, 0, -1, -1, 25, -1, 29, -1, 25, 29, -1, -1, 25, -1, -1, 20, -1, 17, -1, -1, - 10, 29, 11, 34, 27, -1, -1, 13, 31, 40, - 14, -1, -1, 15, 33, 38, 16, -1, 36, -1, - 30, -1, 32, -1, 41, -1, 9, -1, 35, 9, - -1, 3, -1, 4, -1, 6, -1, 5, -1, 7, - -1, 8, -1, 35, -1, 34, -1, 37, 17, 34, - -1, -1, 37, -1, 36, -1, 39, 17, 36, -1, - -1, 39, -1, -1, 18, 42, 26, 19, -1 + 17, -1, -1, 10, 30, 11, 35, 27, -1, -1, + 13, 32, 42, 14, -1, -1, 15, 34, 39, 16, + -1, 37, -1, 31, -1, 33, -1, 43, -1, 9, + -1, 36, 9, -1, 3, -1, 4, -1, 6, -1, + 5, -1, 7, -1, 8, -1, 36, -1, 35, -1, + 38, 17, 35, -1, -1, 38, -1, 37, -1, 40, + 17, 37, -1, 40, 28, -1, -1, 41, -1, -1, + 18, 44, 26, 19, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 100, 100, 102, 106, 107, 110, 112, 115, 117, - 118, 123, 122, 142, 141, 165, 164, 187, 188, 189, - 190, 194, 195, 199, 219, 241, 263, 285, 307, 325, - 353, 354, 357, 359, 363, 364, 367, 369, 374, 373 + 118, 121, 123, 128, 127, 147, 146, 170, 169, 192, + 193, 194, 195, 199, 200, 204, 224, 246, 268, 290, + 312, 330, 358, 359, 362, 364, 368, 369, 373, 376, + 378, 383, 382 }; #endif @@ -542,9 +545,10 @@ static const char *const yytname[] = "TOK_LIST_START", "TOK_LIST_END", "TOK_COMMA", "TOK_GROUP_START", "TOK_GROUP_END", "TOK_SEMICOLON", "TOK_GARBAGE", "TOK_ERROR", "$accept", "configuration", "setting_list", "setting_list_optional", - "setting_terminator", "setting", "$@1", "array", "$@2", "list", "$@3", - "value", "string", "simple_value", "value_list", "value_list_optional", - "simple_value_list", "simple_value_list_optional", "group", "$@4", 0 + "setting_terminator", "comma_optional", "setting", "$@1", "array", "$@2", + "list", "$@3", "value", "string", "simple_value", "value_list", + "value_list_optional", "simple_value_list_sub", "simple_value_list", + "simple_value_list_optional", "group", "$@4", 0 }; #endif @@ -563,18 +567,20 @@ static const yytype_uint16 yytoknum[] = static const yytype_uint8 yyr1[] = { 0, 23, 24, 24, 25, 25, 26, 26, 27, 27, - 27, 29, 28, 31, 30, 33, 32, 34, 34, 34, - 34, 35, 35, 36, 36, 36, 36, 36, 36, 36, - 37, 37, 38, 38, 39, 39, 40, 40, 42, 41 + 27, 28, 28, 30, 29, 32, 31, 34, 33, 35, + 35, 35, 35, 36, 36, 37, 37, 37, 37, 37, + 37, 37, 38, 38, 39, 39, 40, 40, 41, 42, + 42, 44, 43 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 1, 1, 2, 0, 1, 0, 1, - 1, 0, 5, 0, 4, 0, 4, 1, 1, 1, - 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, - 1, 3, 0, 1, 1, 3, 0, 1, 0, 4 + 1, 0, 1, 0, 5, 0, 4, 0, 4, 1, + 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, + 1, 1, 1, 3, 0, 1, 1, 3, 2, 0, + 1, 0, 4 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state @@ -582,18 +588,19 @@ static const yytype_uint8 yyr2[] = means the default is an error. */ static const yytype_uint8 yydefact[] = { - 2, 11, 0, 3, 4, 0, 1, 5, 0, 23, - 24, 26, 25, 27, 28, 21, 13, 15, 38, 18, - 19, 8, 29, 17, 20, 36, 32, 6, 10, 9, - 12, 22, 34, 37, 0, 30, 33, 0, 7, 0, - 0, 14, 0, 16, 39, 35, 31 + 2, 13, 0, 3, 4, 0, 1, 5, 0, 25, + 26, 28, 27, 29, 30, 23, 15, 17, 41, 20, + 21, 8, 31, 19, 22, 39, 34, 6, 10, 9, + 14, 24, 36, 11, 40, 0, 32, 35, 0, 7, + 0, 12, 38, 16, 0, 18, 42, 37, 33 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int8 yydefgoto[] = { - -1, 2, 3, 39, 30, 4, 5, 19, 25, 20, - 26, 21, 22, 23, 36, 37, 33, 34, 24, 27 + -1, 2, 3, 40, 30, 42, 4, 5, 19, 25, + 20, 26, 21, 22, 23, 37, 38, 33, 34, 35, + 24, 27 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing @@ -601,18 +608,19 @@ static const yytype_int8 yydefgoto[] = #define YYPACT_NINF -26 static const yytype_int8 yypact[] = { - -8, -26, 12, -8, -26, 5, -26, -26, 0, -26, + -7, -26, 4, -7, -26, 1, -26, -26, 2, -26, -26, -26, -26, -26, -26, -26, -26, -26, -26, -26, - -26, -6, 10, -26, -26, 23, 0, -8, -26, -26, - -26, -26, -26, 3, 7, -26, 6, 8, -8, 14, - 23, -26, 0, -26, -26, -26, -26 + -26, -4, 5, -26, -26, 18, 2, -7, -26, -26, + -26, -26, -26, 11, -26, 15, -26, 13, 16, -7, + 12, 18, -26, -26, 2, -26, -26, -26, -26 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { - -26, -26, -5, -26, -26, -3, -26, -26, -26, -26, - -26, -25, -26, -15, -26, -26, -26, -26, -26, -26 + -26, -26, 6, -26, -26, -26, -3, -26, -26, -26, + -26, -26, -25, -26, -23, -26, -26, -26, -26, -26, + -26, -26 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If @@ -622,29 +630,29 @@ static const yytype_int8 yypgoto[] = #define YYTABLE_NINF -1 static const yytype_uint8 yytable[] = { - 7, 35, 1, 9, 10, 11, 12, 13, 14, 15, - 32, 28, 6, 16, 29, 17, 8, 46, 18, 31, - 40, 41, 38, 42, 43, 45, 9, 10, 11, 12, - 13, 14, 15, 44, 0, 7 + 7, 36, 32, 1, 6, 9, 10, 11, 12, 13, + 14, 15, 8, 28, 31, 16, 29, 17, 47, 48, + 18, 9, 10, 11, 12, 13, 14, 15, 41, 43, + 44, 46, 45, 39, 0, 0, 7 }; static const yytype_int8 yycheck[] = { - 3, 26, 10, 3, 4, 5, 6, 7, 8, 9, - 25, 17, 0, 13, 20, 15, 11, 42, 18, 9, - 17, 14, 27, 17, 16, 40, 3, 4, 5, 6, - 7, 8, 9, 19, -1, 38 + 3, 26, 25, 10, 0, 3, 4, 5, 6, 7, + 8, 9, 11, 17, 9, 13, 20, 15, 41, 44, + 18, 3, 4, 5, 6, 7, 8, 9, 17, 14, + 17, 19, 16, 27, -1, -1, 39 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { - 0, 10, 24, 25, 28, 29, 0, 28, 11, 3, - 4, 5, 6, 7, 8, 9, 13, 15, 18, 30, - 32, 34, 35, 36, 41, 31, 33, 42, 17, 20, - 27, 9, 36, 39, 40, 34, 37, 38, 25, 26, - 17, 14, 17, 16, 19, 36, 34 + 0, 10, 24, 25, 29, 30, 0, 29, 11, 3, + 4, 5, 6, 7, 8, 9, 13, 15, 18, 31, + 33, 35, 36, 37, 43, 32, 34, 44, 17, 20, + 27, 9, 37, 40, 41, 42, 35, 38, 39, 25, + 26, 17, 28, 14, 17, 16, 19, 37, 35 }; #define yyerrok (yyerrstatus = 0) @@ -1483,10 +1491,10 @@ yyreduce: YY_REDUCE_PRINT (yyn); switch (yyn) { - case 11: + case 13: /* Line 1464 of yacc.c */ -#line 123 "grammar.y" +#line 128 "grammar.y" { ctx->setting = config_setting_add(ctx->parent, (yyvsp[(1) - (1)].sval), CONFIG_TYPE_NONE); @@ -1502,10 +1510,10 @@ yyreduce: } break; - case 13: + case 15: /* Line 1464 of yacc.c */ -#line 142 "grammar.y" +#line 147 "grammar.y" { if(IN_LIST()) { @@ -1521,20 +1529,20 @@ yyreduce: } break; - case 14: + case 16: /* Line 1464 of yacc.c */ -#line 157 "grammar.y" +#line 162 "grammar.y" { if(ctx->parent) ctx->parent = ctx->parent->parent; } break; - case 15: + case 17: /* Line 1464 of yacc.c */ -#line 165 "grammar.y" +#line 170 "grammar.y" { if(IN_LIST()) { @@ -1550,34 +1558,34 @@ yyreduce: } break; - case 16: + case 18: /* Line 1464 of yacc.c */ -#line 180 "grammar.y" +#line 185 "grammar.y" { if(ctx->parent) ctx->parent = ctx->parent->parent; } break; - case 21: + case 23: /* Line 1464 of yacc.c */ -#line 194 "grammar.y" +#line 199 "grammar.y" { parsectx_append_string(ctx, (yyvsp[(1) - (1)].sval)); free((yyvsp[(1) - (1)].sval)); } break; - case 22: + case 24: /* Line 1464 of yacc.c */ -#line 195 "grammar.y" +#line 200 "grammar.y" { parsectx_append_string(ctx, (yyvsp[(2) - (2)].sval)); free((yyvsp[(2) - (2)].sval)); } break; - case 23: + case 25: /* Line 1464 of yacc.c */ -#line 200 "grammar.y" +#line 205 "grammar.y" { if(IN_ARRAY() || IN_LIST()) { @@ -1599,10 +1607,10 @@ yyreduce: } break; - case 24: + case 26: /* Line 1464 of yacc.c */ -#line 220 "grammar.y" +#line 225 "grammar.y" { if(IN_ARRAY() || IN_LIST()) { @@ -1626,10 +1634,10 @@ yyreduce: } break; - case 25: + case 27: /* Line 1464 of yacc.c */ -#line 242 "grammar.y" +#line 247 "grammar.y" { if(IN_ARRAY() || IN_LIST()) { @@ -1653,10 +1661,10 @@ yyreduce: } break; - case 26: + case 28: /* Line 1464 of yacc.c */ -#line 264 "grammar.y" +#line 269 "grammar.y" { if(IN_ARRAY() || IN_LIST()) { @@ -1680,10 +1688,10 @@ yyreduce: } break; - case 27: + case 29: /* Line 1464 of yacc.c */ -#line 286 "grammar.y" +#line 291 "grammar.y" { if(IN_ARRAY() || IN_LIST()) { @@ -1707,10 +1715,10 @@ yyreduce: } break; - case 28: + case 30: /* Line 1464 of yacc.c */ -#line 308 "grammar.y" +#line 313 "grammar.y" { if(IN_ARRAY() || IN_LIST()) { @@ -1730,10 +1738,10 @@ yyreduce: } break; - case 29: + case 31: /* Line 1464 of yacc.c */ -#line 326 "grammar.y" +#line 331 "grammar.y" { if(IN_ARRAY() || IN_LIST()) { @@ -1760,10 +1768,10 @@ yyreduce: } break; - case 38: + case 41: /* Line 1464 of yacc.c */ -#line 374 "grammar.y" +#line 383 "grammar.y" { if(IN_LIST()) { @@ -1779,10 +1787,10 @@ yyreduce: } break; - case 39: + case 42: /* Line 1464 of yacc.c */ -#line 389 "grammar.y" +#line 398 "grammar.y" { if(ctx->parent) ctx->parent = ctx->parent->parent; @@ -1792,7 +1800,7 @@ yyreduce: /* Line 1464 of yacc.c */ -#line 1796 "grammar.c" +#line 1804 "grammar.c" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -2004,6 +2012,6 @@ yyreturn: /* Line 1684 of yacc.c */ -#line 395 "grammar.y" +#line 404 "grammar.y" diff --git a/3rdparty/mt19937ar/Makefile.in b/3rdparty/mt19937ar/Makefile.in index c48848c8d..5d8e19994 100644 --- a/3rdparty/mt19937ar/Makefile.in +++ b/3rdparty/mt19937ar/Makefile.in @@ -8,19 +8,22 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all clean help +.PHONY: all clean buildclean help all: $(MT19937AR_OBJ) -clean: - @echo " CLEAN mt19937ar" +buildclean: + @echo " CLEAN mt19937ar (build temp files)" @rm -rf *.o +clean: buildclean + @echo " CLEAN mt19937ar" + help: - @echo "possible targets are 'all' 'clean' 'help'" - @echo "'all' - builds $(MT19937AR_OBJ)" - @echo "'clean' - deletes $(MT19937AR_OBJ)" - @echo "'help' - outputs this message" + @echo "possible targets are 'all' 'clean' 'buildclean' 'help'" + @echo "'all' - builds $(MT19937AR_OBJ)" + @echo "'clean', 'buildclean' - deletes $(MT19937AR_OBJ)" + @echo "'help' - outputs this message" ##################################################################### diff --git a/Makefile.in b/Makefile.in index 7dfb138f9..f41aac4c7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,6 +46,8 @@ export CC import \ test \ clean \ + buildclean \ + distclean \ help all: $(ALL_DEPENDS) @@ -111,7 +113,7 @@ import: Makefile @if test ! -d conf/import ; then mkdir conf/import ; fi @for f in $$(ls conf/import-tmpl) ; do if test ! -e conf/import/$$f ; then cp conf/import-tmpl/$$f conf/import ; fi ; done -clean: $(MF_TARGETS) +clean buildclean: $(MF_TARGETS) @$(MAKE) -C src/common $@ @$(MAKE) -C 3rdparty/mt19937ar $@ @$(MAKE) -C 3rdparty/libconfig $@ @@ -140,7 +142,9 @@ help: Makefile @echo "'sql' - builds sql servers (targets 'common_sql' 'login_sql' 'char_sql'" @echo " 'map_sql' and 'import')" @echo "'test' - builds tests" - @echo "'clean' - cleans builds and objects" + @echo "'clean' - cleans executables and objects" + @echo "'buildclean' - cleans build temporary (object) files, without deleting the" + @echo " executables" @echo "'distclean' - cleans files generated by ./configure" @echo "'help' - outputs this message" diff --git a/conf/plugins.conf b/conf/plugins.conf index c88a4fb50..d9bd7e386 100644 --- a/conf/plugins.conf +++ b/conf/plugins.conf @@ -23,16 +23,16 @@ you need to put in a comma, to separate the plugins. ----------------------------------------- plugins_list: [ "example", - "other" + "other", ] ----------------------------------------- Please note that your scripts need to be saved in the .c (source code) extension and placed in the /src/plugin/ folder. ----------------------------------------- */ -plugins_list:[ - "HPMHooking" +plugins_list: [ + "HPMHooking", //"db2sql", //"sample", - //"other" -]
\ No newline at end of file + //"other", +] diff --git a/db/re/skill_db.txt b/db/re/skill_db.txt index 9296d34da..723545f0a 100644 --- a/db/re/skill_db.txt +++ b/db/re/skill_db.txt @@ -1009,7 +1009,7 @@ 2489,11,6,1,0,0,0,10,1:2:3:4:5:6:7:8:9:10,no,0,0,0,weapon,0, GN_FIRE_EXPANSION_ACID,Fire Expansion Acid 2490,9,6,2,0,0x3,1,5,1,yes,0,0x80,2:3:4:5:6,none,0, GN_HELLS_PLANT,Hell's Plant 2491,0,6,1,0,0xC0,0,5,1,no,0,0,0,misc,0, GN_HELLS_PLANT_ATK,Hell's Plant Attack -2492,0,6,4,0,0x3,6:7:8:9:10,5,1,yes,0,0,0,none,0, GN_MANDRAGORA,Howling of Mandragora +2492,0,6,4,0,0x3,5:6:6:7:7,5,1,yes,0,0,0,none,0, GN_MANDRAGORA,Howling of Mandragora 2493,11,6,16,0,0x1,0,1,1,yes,0,0,0,none,0, GN_SLINGITEM,Sling Item 2494,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0, GN_CHANGEMATERIAL,Change Material 2495,0,6,4,0,0x1,0,2,1,no,0,0,0,none,0, GN_MIX_COOKING,Mix Cooking diff --git a/src/char/Makefile.in b/src/char/Makefile.in index 02759b32e..4bb7f3fb8 100644 --- a/src/char/Makefile.in +++ b/src/char/Makefile.in @@ -34,21 +34,27 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all sql char-server clean help +.PHONY: all sql char-server clean buildclean help all: sql sql: char-server -clean: +buildclean: + @echo " CLEAN char (build temp files)" + @rm -rf *.o obj_sql + +clean: buildclean @echo " CLEAN char" - @rm -rf *.o obj_sql ../../char-server@EXEEXT@ + @rm -rf ../../char-server@EXEEXT@ help: @echo "possible targets are 'char-server' 'all' 'clean' 'help'" @echo "'char-server' - char server" @echo "'all' - builds all above targets" @echo "'clean' - cleans builds and objects" + @echo "'buildclean' - cleans build temporary (object) files, without deleting the" + @echo " executables" @echo "'help' - outputs this message" ##################################################################### diff --git a/src/common/Makefile.in b/src/common/Makefile.in index 78f9cd0d1..53b7a472e 100644 --- a/src/common/Makefile.in +++ b/src/common/Makefile.in @@ -40,22 +40,25 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all sql common common_sql common_mini clean help +.PHONY: all sql common common_sql common_mini clean buildclean help all: sql sql: $(SQL_DEPENDS) -clean: - @echo " CLEAN common" +buildclean: + @echo " CLEAN common (build temp files)" @rm -rf *.o obj_all obj_sql +clean: buildclean + @echo " CLEAN common" + help: @echo "possible targets are 'sql' 'all' 'clean' 'help'" - @echo "'sql' - builds object files used in sql servers" - @echo "'all' - builds all above targets" - @echo "'clean' - cleans builds and objects" - @echo "'help' - outputs this message" + @echo "'sql' - builds object files used in sql servers" + @echo "'all' - builds all above targets" + @echo "'clean', 'buildclean' - cleans builds and objects" + @echo "'help' - outputs this message" ##################################################################### diff --git a/src/login/Makefile.in b/src/login/Makefile.in index b6b70a495..a97d17f68 100644 --- a/src/login/Makefile.in +++ b/src/login/Makefile.in @@ -31,21 +31,27 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all sql login-server clean help +.PHONY: all sql login-server clean buildclean help all: sql sql: login-server -clean: +buildclean: + @echo " CLEAN login (build temp files)" + @rm -rf *.o obj_sql + +clean: buildclean @echo " CLEAN login" - @rm -rf *.o obj_sql ../../login-server@EXEEXT@ + @rm -rf ../../login-server@EXEEXT@ help: @echo "possible targets are 'login-server' 'all' 'clean' 'help'" @echo "'login-server' - login server" @echo "'all' - builds all above targets" @echo "'clean' - cleans builds and objects" + @echo "'buildclean' - cleans build temporary (object) files, without deleting the" + @echo " executables" @echo "'help' - outputs this message" ##################################################################### diff --git a/src/map/Makefile.in b/src/map/Makefile.in index fb78d51a1..b516c61ca 100644 --- a/src/map/Makefile.in +++ b/src/map/Makefile.in @@ -47,21 +47,27 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all sql map-server clean help +.PHONY: all sql map-server clean buildclean help all: sql sql: map-server -clean: +buildclean: + @echo " CLEAN map (build temp files)" + @rm -rf *.o obj_sql + +clean: buildclean @echo " CLEAN map" - @rm -rf *.o obj_sql ../../map-server@EXEEXT@ + @rm -rf ../../map-server@EXEEXT@ help: @echo "possible targets are 'map-server' 'all' 'clean' 'help'" @echo "'map-server' - map server" @echo "'all' - builds all above targets" @echo "'clean' - cleans builds and objects" + @echo "'buildclean' - cleans build temporary (object) files, without deleting the" + @echo " executables" @echo "'help' - outputs this message" ##################################################################### diff --git a/src/map/skill.c b/src/map/skill.c index f359e81d4..a55fb2937 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -8066,7 +8066,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui int rate = 45 + 5 * skill_lv; if( rnd()%100 < rate ){ clif->skill_nodamage(src, bl, skill_id, skill_lv, 1); - map->foreachinrange(skill->area_sub,bl,skill->get_splash(skill_id,skill_lv),BL_CHAR,src,skill_id,skill_lv,tick,flag|BCT_ENEMY|1,skill_castend_nodamage_id); + map->foreachinrange(skill->area_sub,bl,skill->get_splash(skill_id,skill_lv),BL_CHAR,src,skill_id,skill_lv,tick,flag|BCT_ENEMY|1,skill->castend_nodamage_id); }else if( sd ) // Failure on Rate clif->skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); } @@ -8919,12 +8919,17 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui case GN_MANDRAGORA: if( flag&1 ) { - if ( clif->skill_nodamage(bl, src, skill_id, skill_lv, - sc_start(bl, type, 25 + 10 * skill_lv, skill_lv, skill->get_time(skill_id, skill_lv))) ) - status_zap(bl, 0, status_get_max_sp(bl) * (25 + 5 * skill_lv) / 100); - } else - map->foreachinrange(skill->area_sub, bl, skill->get_splash(skill_id, skill_lv), BL_CHAR, - src, skill_id, skill_lv, tick, flag|BCT_ENEMY|1, skill->castend_nodamage_id); + int chance = 25 + 10 * skill_lv - (status_get_vit(bl) + status_get_luk(bl)) / 5; + if ( chance < 10 ) + chance = 10;//Minimal chance is 10%. + if ( rand()%100 < chance ) {//Coded to both inflect the status and drain the target's SP only when successful. [Rytech] + sc_start(bl, type, 100, skill_lv, skill->get_time(skill_id, skill_lv)); + status_zap(bl, 0, status_get_max_sp(bl) * (25 + 5 * skill_lv) / 100); + } + } else if ( sd ) { + map->foreachinrange(skill->area_sub, bl, skill->get_splash(skill_id, skill_lv), BL_CHAR,src, skill_id, skill_lv, tick, flag|BCT_ENEMY|1, skill->castend_nodamage_id); + clif->skill_nodamage(bl, src, skill_id, skill_lv, 1); + } break; case GN_SLINGITEM: @@ -13588,16 +13593,18 @@ struct skill_condition skill_get_requirement(struct map_session_data* sd, uint16 if( itemid_isgemstone(req.itemid[i]) && skill_id != HW_GANBANTEIN ) { if( sd->special_state.no_gemstone ) - { //Make it substract 1 gem rather than skipping the cost. - if( --req.amount[i] < 1 ) - req.itemid[i] = 0; + { // All gem skills except Hocus Pocus and Ganbantein can cast for free with Mistress card -helvetica + if( skill_id != SA_ABRACADABRA ) + req.itemid[i] = req.amount[i] = 0; + else if( --req.amount[i] < 1 ) + req.amount[i] = 1; // Hocus Pocus always use at least 1 gem } if(sc && sc->data[SC_INTOABYSS]) { if( skill_id != SA_ABRACADABRA ) req.itemid[i] = req.amount[i] = 0; else if( --req.amount[i] < 1 ) - req.amount[i] = 1; // Hocus Pocus allways use at least 1 gem + req.amount[i] = 1; // Hocus Pocus always use at least 1 gem } } if( skill_id >= HT_SKIDTRAP && skill_id <= HT_TALKIEBOX && pc->checkskill(sd, RA_RESEARCHTRAP) > 0){ diff --git a/src/map/status.c b/src/map/status.c index 6b2edc9ac..497d02bbf 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4221,7 +4221,7 @@ unsigned short status_calc_int(struct block_list *bl, struct status_change *sc, if(sc->data[SC_MARIONETTE]) int_ += ((sc->data[SC_MARIONETTE]->val4)>>16)&0xFF; if(sc->data[SC_MANDRAGORA]) - int_ -= 5 + 5 * sc->data[SC_MANDRAGORA]->val1; + int_ -= 4 * sc->data[SC_MANDRAGORA]->val1; if(sc->data[SC_COCKTAIL_WARG_BLOOD]) int_ += sc->data[SC_COCKTAIL_WARG_BLOOD]->val1; if(sc->data[SC_INSPIRATION]) @@ -6270,9 +6270,6 @@ int status_get_sc_def(struct block_list *bl, enum sc_type type, int rate, int ti tick -= 1000 * ((status->get_lv(bl) / 10) + ((sd?sd->status.job_level:0) / 5)); tick = max(tick,10000); break; - case SC_MANDRAGORA: - sc_def = (st->vit+st->luk)/5; - break; case SC_KYOUGAKU: tick -= 1000 * status_get_int(bl) / 20; break; diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in index ed573238d..53f44a0b4 100644 --- a/src/plugins/Makefile.in +++ b/src/plugins/Makefile.in @@ -44,8 +44,14 @@ clean: buildclean help: @echo "possible targets are $(PLUGINS:%='%') 'all' 'clean' 'help'" - @echo "'sample' - sample plugin" - @echo "'help' - outputs this message" + @echo "" + @echo "$(PLUGINS:%='%')" + @echo " - builds a specific plugin" + @echo "'all' - builds all above targets" + @echo "'clean' - cleans builds and objects" + @echo "'buildclean' - cleans build temporary (object) files, without deleting the" + @echo " compiled plugins" + @echo "'help' - outputs this message" ##################################################################### @@ -56,4 +62,4 @@ Makefile: Makefile.in ../../plugins/%@DLLEXT@: %.c $(ALL_H) $$(shell ls %/* 2>/dev/null) @echo " CC $<" - @$(CC) @DEFS@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ @SOFLAGS@ -o $@ $<
\ No newline at end of file + @$(CC) @DEFS@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ @SOFLAGS@ -o $@ $< diff --git a/src/test/Makefile.in b/src/test/Makefile.in index cb99e7004..0c6d15c6b 100644 --- a/src/test/Makefile.in +++ b/src/test/Makefile.in @@ -24,13 +24,17 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all test_spinlock +.PHONY: all test_spinlock clean buildclean all: test_spinlock Makefile -clean: +buildclean: + @echo " CLEAN test (build temp files)" + @rm -rf *.o obj + +clean: buildclean @echo " CLEAN test" - @rm -rf *.o obj ../../test_spinlock@EXEEXT@ + @rm -rf ../../test_spinlock@EXEEXT@ ##################################################################### diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in index baf4a0327..ee448a16a 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -22,7 +22,7 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all mapcache clean help +.PHONY: all mapcache clean buildclean help all: mapcache Makefile @@ -32,16 +32,22 @@ mapcache: ../../mapcache@EXEEXT@ @echo " LD $(notdir $@)" @$(CC) @LDFLAGS@ $(LIBCONFIG_INCLUDE) -o ../../mapcache@EXEEXT@ $(MAPCACHE_OBJ) $(COMMON_OBJ) $(LIBCONFIG_OBJ) @LIBS@ -clean: +buildclean: + @echo " CLEAN tool (build temp files)" + @rm -rf obj_all/*.o + +clean: buildclean @echo " CLEAN tool" - @rm -rf obj_all/*.o ../../mapcache@EXEEXT@ + @rm -rf ../../mapcache@EXEEXT@ help: @echo "possible targets are 'mapcache' 'all' 'clean' 'help'" - @echo "'mapcache' - mapcache generator" - @echo "'all' - builds all above targets" - @echo "'clean' - cleans builds and objects" - @echo "'help' - outputs this message" + @echo "'mapcache' - mapcache generator" + @echo "'all' - builds all above targets" + @echo "'clean' - cleans builds and objects" + @echo "'buildclean' - cleans build temporary (object) files, without deleting the" + @echo " executables" + @echo "'help' - outputs this message" ##################################################################### diff --git a/vcproj-10/plugin-HPMHooking.vcxproj b/vcproj-10/plugin-HPMHooking.vcxproj index db96e4986..e1fa972f4 100644 --- a/vcproj-10/plugin-HPMHooking.vcxproj +++ b/vcproj-10/plugin-HPMHooking.vcxproj @@ -49,8 +49,8 @@ <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> - <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">plugin-HPMHooking</TargetName> - <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">plugin-HPMHooking</TargetName> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">HPMHooking</TargetName> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">HPMHooking</TargetName> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> @@ -115,4 +115,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/vcproj-12/plugin-HPMHooking.vcxproj b/vcproj-12/plugin-HPMHooking.vcxproj index 183adcac5..9b69dca0b 100644 --- a/vcproj-12/plugin-HPMHooking.vcxproj +++ b/vcproj-12/plugin-HPMHooking.vcxproj @@ -51,8 +51,8 @@ <CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> <CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> <CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" /> - <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">plugin-HPMHooking</TargetName> - <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">plugin-HPMHooking</TargetName> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">HPMHooking</TargetName> + <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">HPMHooking</TargetName> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> @@ -117,4 +117,4 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> -</Project>
\ No newline at end of file +</Project> |