- Applied the rest of Rayce's suggestions and fixes (http://www.eathena.ws/board/index.php?showtopic=129185)

- warn_cmd_no_comma, warn_func_no_comma, warn_cmd_mismatch_paramnum are now warn_func_mismatch_paramnum and it only prevents showing the error, as it was probably intended in the first place. (correct me if i'm wrong)
- Merged the parsing of function calls in the script engine, removing the parse_cmd hackery, and made "heal (.@val+rand(0xff))&0xff,0;" valid again.
- Fixed a bug in eye_of_hellion.txt and a bug in hunter.txt

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9569 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
FlavioJS
2006-12-25 06:15:46 +00:00
parent 2f7bd25279
commit 266f66cfff
7 changed files with 231 additions and 205 deletions

View File

@@ -10,10 +10,7 @@ extern int potion_target;
extern struct Script_Config {
unsigned verbose_mode : 1;
unsigned warn_func_no_comma : 1;
unsigned warn_cmd_no_comma : 1;
unsigned warn_func_mismatch_paramnum : 1;
unsigned warn_cmd_mismatch_paramnum : 1;
int check_cmdcount;
int check_gotocount;