Advertisement
Guest User

Accountid log

a guest
Feb 24th, 2012
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.58 KB | None | 0 0
  1. Index: log.c
  2. ===================================================================
  3. --- log.c   (revision 15604)
  4. +++ log.c   (working copy)
  5. @@ -166,7 +166,7 @@
  6.  }
  7.  
  8.  /// logs item transactions (generic)
  9. -void log_pick(int id, int m, e_log_pick_type type, int amount, struct item* itm)
  10. +void log_pick(int id, int accid, int m, e_log_pick_type type, int amount, struct item* itm)
  11.  {
  12.     nullpo_retv(itm);
  13.     if( ( log_config.enable_logs&type ) == 0 )
  14. @@ -179,8 +179,8 @@
  15.  
  16.     if( log_config.sql_logs )
  17.     {
  18. -       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')",
  19. -           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:"") )
  20. +       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')",
  21. +           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:"") )
  22.         {
  23.             Sql_ShowDebug(logmysql_handle);
  24.             return;
  25. @@ -196,7 +196,7 @@
  26.             return;
  27.         time(&curtime);
  28.         strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
  29. -       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:"");
  30. +       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:"");
  31.         fclose(logfp);
  32.     }
  33.  }
  34. @@ -205,7 +205,7 @@
  35.  void log_pick_pc(struct map_session_data* sd, e_log_pick_type type, int amount, struct item* itm)
  36.  {
  37.     nullpo_retv(sd);
  38. -   log_pick(sd->status.char_id, sd->bl.m, type, amount, itm);
  39. +   log_pick(sd->status.char_id, sd->status.account_id, sd->bl.m, type, amount, itm);
  40.  }
  41.  
  42.  
  43. @@ -213,7 +213,7 @@
  44.  void log_pick_mob(struct mob_data* md, e_log_pick_type type, int amount, struct item* itm)
  45.  {
  46.     nullpo_retv(md);
  47. -   log_pick(md->class_, md->bl.m, type, amount, itm);
  48. +   log_pick(md->class_, 0, md->bl.m, type, amount, itm);
  49.  }
  50.  
  51.  /// logs zeny transactions
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement