Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Index: log.c
- ===================================================================
- --- log.c (revision 15604)
- +++ log.c (working copy)
- @@ -166,7 +166,7 @@
- }
- /// logs item transactions (generic)
- -void log_pick(int id, int m, e_log_pick_type type, int amount, struct item* itm)
- +void log_pick(int id, int accid, int m, e_log_pick_type type, int amount, struct item* itm)
- {
- nullpo_retv(itm);
- if( ( log_config.enable_logs&type ) == 0 )
- @@ -179,8 +179,8 @@
- if( log_config.sql_logs )
- {
- - if( SQL_ERROR == Sql_Query(logmysql_handle, LOG_QUERY " INTO `%s` (`time`, `char_id`, `type`, `nameid`, `amount`, `refine`, `card0`, `card1`, `card2`, `card3`, `map`) VALUES (NOW(), '%d', '%c', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%s')",
- - log_config.log_pick, id, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], map[m].name?map[m].name:"") )
- + if( SQL_ERROR == Sql_Query(logmysql_handle, LOG_QUERY " INTO `%s` (`time`, `char_id`, `account_id`, `type`, `nameid`, `amount`, `refine`, `card0`, `card1`, `card2`, `card3`, `map`) VALUES (NOW(), '%d', '%d', '%c', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%s')",
- + log_config.log_pick, id, accid, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], map[m].name?map[m].name:"") )
- {
- Sql_ShowDebug(logmysql_handle);
- return;
- @@ -196,7 +196,7 @@
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- - fprintf(logfp,"%s - %d\t%c\t%d,%d,%d,%d,%d,%d,%d,%s\n", timestring, id, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], map[m].name?map[m].name:"");
- + fprintf(logfp,"%s - %d, %d\t%c\t%d,%d,%d,%d,%d,%d,%d,%s\n", timestring, id, accid, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], map[m].name?map[m].name:"");
- fclose(logfp);
- }
- }
- @@ -205,7 +205,7 @@
- void log_pick_pc(struct map_session_data* sd, e_log_pick_type type, int amount, struct item* itm)
- {
- nullpo_retv(sd);
- - log_pick(sd->status.char_id, sd->bl.m, type, amount, itm);
- + log_pick(sd->status.char_id, sd->status.account_id, sd->bl.m, type, amount, itm);
- }
- @@ -213,7 +213,7 @@
- void log_pick_mob(struct mob_data* md, e_log_pick_type type, int amount, struct item* itm)
- {
- nullpo_retv(md);
- - log_pick(md->class_, md->bl.m, type, amount, itm);
- + log_pick(md->class_, 0, md->bl.m, type, amount, itm);
- }
- /// logs zeny transactions
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement