From a50c6281bbad73cd4155cbf55af4c899c9e2d1ea Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 1 Aug 2008 07:05:16 +0000 Subject: Removed unused guardian hp columns from the guild castles table in main.sql (should have been done in r11915). Corrected incorrect use of the datetime column in the `login` table (bugreport:1962). Refreshed txt account savefile. Cleaned up some random minor source code glitches. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13030 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char_sql/int_quest.c | 1 - src/login/login.c | 2 +- src/map/script.c | 5 ----- src/map/script.h | 9 ++++++++- src/map/skill.c | 2 +- src/map/unit.c | 2 +- 6 files changed, 11 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/char_sql/int_quest.c b/src/char_sql/int_quest.c index e198754f6..53c2d3cda 100644 --- a/src/char_sql/int_quest.c +++ b/src/char_sql/int_quest.c @@ -41,7 +41,6 @@ int mapif_quests_fromsql(int char_id, struct quest questlog[]) || SQL_ERROR == SqlStmt_Execute(stmt) || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &tmp_quest.quest_id, 0, NULL, NULL) || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_INT, &tmp_quest.state, 0, NULL, NULL) ) - //|| SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_INT, &tmp_quest.time, 0, NULL, NULL) SqlStmt_ShowDebug(stmt); for( i = 0; i < MAX_QUEST && SQL_SUCCESS == SqlStmt_NextRow(stmt); ++i ) diff --git a/src/login/login.c b/src/login/login.c index a36502194..9bcc5ba79 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -913,7 +913,7 @@ int mmo_auth_new(const char* userid, const char* pass, const char sex, const cha acc.sex = sex; safestrncpy(acc.email, "a@a.com", sizeof(acc.email)); acc.expiration_time = ( login_config.start_limited_time != -1 ) ? time(NULL) + login_config.start_limited_time : 0; - safestrncpy(acc.lastlogin, "-", sizeof(acc.lastlogin)); + safestrncpy(acc.lastlogin, "0000-00-00 00:00:00", sizeof(acc.lastlogin)); safestrncpy(acc.last_ip, last_ip, sizeof(acc.last_ip)); if( !accounts->create(accounts, &acc) ) diff --git a/src/map/script.c b/src/map/script.c index c9839a952..68828db85 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -2067,11 +2067,6 @@ struct script_code* parse_script(const char *src,const char *file,int line,int o return code; } -// -// Script state -// -enum {RUN = 0,STOP,END,RERUNLINE,GOTO,RETFUNC}; - /// Returns the player attached to this script, identified by the rid. /// If there is no player attached, the script is terminated. TBL_PC *script_rid2sd(struct script_state *st) diff --git a/src/map/script.h b/src/map/script.h index 981c5b985..d4225d8f8 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -90,10 +90,17 @@ struct script_stack { struct linkdb_node **var_function; // 関数依存変数 }; + +// +// Script state +// +enum e_script_state { RUN,STOP,END,RERUNLINE,GOTO,RETFUNC }; + struct script_state { struct script_stack* stack; int start,end; - int pos,state; + int pos; + enum e_script_state state; int rid,oid; struct script_code *script, *scriptroot; struct sleep_data { diff --git a/src/map/skill.c b/src/map/skill.c index e0dddd1f3..8e5b64b64 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -10220,7 +10220,7 @@ int skill_produce_mix (struct map_session_data *sd, int skill_id, int nameid, in if(battle_config.wp_rate != 100) make_per = make_per * battle_config.wp_rate / 100; } -// - Baby Class Penalty = 80% (from adult's chance) ----// + if (sd->class_&JOBL_BABY) //if it's a Baby Class make_per = (make_per * 70) / 100; //Baby penalty is 30% diff --git a/src/map/unit.c b/src/map/unit.c index e52d60782..521907c99 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1870,7 +1870,7 @@ int unit_free(struct block_list *bl, int clrtype) //Tell the script to end, not delete it, it will free itself when necessary [Kevin] if (sd->st) { sd->st->rid = 0; - sd->st->state = 2; + sd->st->state = END; } } else if( bl->type == BL_PET ) { struct pet_data *pd = (struct pet_data*)bl; -- cgit v1.2.3-60-g2f50