123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
- // For more information, see LICENCE in the main folder
- #include "../common/sql.h" // SQL_INNODB
- #include "../common/strlib.h"
- #include "../common/nullpo.h"
- #include "../common/showmsg.h"
- #include "battle.h"
- #include "itemdb.h"
- #include "log.h"
- #include "map.h"
- #include "mob.h"
- #include "pc.h"
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- struct Log_Config log_config;
- #ifdef SQL_INNODB
- // database is using an InnoDB engine so do not use DELAYED
- #define LOG_QUERY "INSERT"
- #else
- // database is using a MyISAM engine so use DELAYED
- #define LOG_QUERY "INSERT DELAYED"
- #endif
- /// obtain log type character for item/zeny logs
- static char log_picktype2char(e_log_pick_type type)
- {
- switch( type )
- {
- case LOG_TYPE_TRADE: return 'T'; // (T)rade
- case LOG_TYPE_VENDING: return 'V'; // (V)ending
- case LOG_TYPE_PICKDROP_PLAYER: return 'P'; // (P)player
- case LOG_TYPE_PICKDROP_MONSTER: return 'M'; // (M)onster
- case LOG_TYPE_NPC: return 'S'; // NPC (S)hop
- case LOG_TYPE_SCRIPT: return 'N'; // (N)PC Script
- //case LOG_TYPE_STEAL: return 'D'; // Steal/Snatcher
- case LOG_TYPE_CONSUME: return 'C'; // (C)onsumed
- //case LOG_TYPE_PRODUCE: return 'O'; // Pr(O)duced/Ingredients
- //case LOG_TYPE_MVP: return 'U'; // MVP Rewards
- case LOG_TYPE_COMMAND: return 'A'; // (A)dmin command
- case LOG_TYPE_STORAGE: return 'R'; // Sto(R)age
- case LOG_TYPE_GSTORAGE: return 'G'; // (G)uild storage
- case LOG_TYPE_MAIL: return 'E'; // (E)mail attachment
- //case LOG_TYPE_AUCTION: return 'I'; // Auct(I)on
- case LOG_TYPE_BUYING_STORE: return 'B'; // (B)uying Store
- case LOG_TYPE_LOOT: return 'L'; // (L)oot (consumed monster pick/drop)
- }
- // should not get here, fallback
- ShowDebug("log_picktype2char: Unknown pick type %d.\n", type);
- return 'S';
- }
- /// obtain log type character for chat logs
- static char log_chattype2char(e_log_chat_type type)
- {
- switch( type )
- {
- case LOG_CHAT_GLOBAL: return 'O'; // Gl(O)bal
- case LOG_CHAT_WHISPER: return 'W'; // (W)hisper
- case LOG_CHAT_PARTY: return 'P'; // (P)arty
- case LOG_CHAT_GUILD: return 'G'; // (G)uild
- case LOG_CHAT_MAINCHAT: return 'M'; // (M)ain chat
- }
- // should not get here, fallback
- ShowDebug("log_chattype2char: Unknown chat type %d.\n", type);
- return 'O';
- }
- //FILTER OPTIONS
- //0 = Don't log
- //1 = Log any item
- //Bits: ||
- //2 - Healing items (0)
- //3 - Etc Items(3) + Arrows (10)
- //4 - Usable Items(2) + Scrolls,Lures(11) + Usable Cash Items(18)
- //5 - Weapon(4)
- //6 - Shields,Armor,Headgears,Accessories,etc(5)
- //7 - Cards(6)
- //8 - Pet Accessories(8) + Eggs(7) (well, monsters don't drop 'em but we'll use the same system for ALL logs)
- //9 - Log expensive items ( >= price_log)
- //10 - Log big amount of items ( >= amount_log)
- //11 - Log refined items (if their refine >= refine_log )
- //12 - Log rare items (if their drop chance <= rare_log )
- //check if this item should be logged according the settings
- bool should_log_item(int filter, int nameid, int amount)
- {
- struct item_data *item_data;
- if ((item_data= itemdb_exists(nameid)) == NULL) return false;
- if ((filter&1) || // Filter = 1, we log any item
- (filter&2 && item_data->type == IT_HEALING ) ||
- (filter&4 && (item_data->type == IT_ETC || item_data->type == IT_AMMO) ) ||
- (filter&8 && (item_data->type == IT_USABLE || item_data->type == IT_CASH) ) ||
- (filter&16 && item_data->type == IT_WEAPON ) ||
- (filter&32 && item_data->type == IT_ARMOR ) ||
- (filter&64 && item_data->type == IT_CARD ) ||
- (filter&128 && (item_data->type == IT_PETEGG || item_data->type == IT_PETARMOR) ) ||
- (filter&256 && item_data->value_buy >= log_config.price_items_log ) || //expensive items
- (filter&512 && abs(amount) >= log_config.amount_items_log ) || //big amount of items
- (filter&2048 && ((item_data->maxchance != -1 && item_data->maxchance <= log_config.rare_items_log) || item_data->nameid == 714) ) //Rare items or Emperium
- ) return true;
- return false;
- }
- void log_branch(struct map_session_data *sd)
- {
- if( !log_config.branch )
- return;
- nullpo_retv(sd);
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- SqlStmt* stmt;
- stmt = SqlStmt_Malloc(logmysql_handle);
- if( SQL_SUCCESS != SqlStmt_Prepare(stmt, LOG_QUERY " INTO `%s` (`branch_date`, `account_id`, `char_id`, `char_name`, `map`) VALUES (NOW(), '%d', '%d', ?, '%s')", log_config.log_branch_db, sd->status.account_id, sd->status.char_id, mapindex_id2name(sd->mapindex) )
- || SQL_SUCCESS != SqlStmt_BindParam(stmt, 0, SQLDT_STRING, sd->status.name, strnlen(sd->status.name, NAME_LENGTH))
- || SQL_SUCCESS != SqlStmt_Execute(stmt) )
- {
- SqlStmt_ShowDebug(stmt);
- SqlStmt_Free(stmt);
- return;
- }
- SqlStmt_Free(stmt);
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE* logfp;
- if((logfp = fopen(log_config.log_branch, "a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- fprintf(logfp,"%s - %s[%d:%d]\t%s\n", timestring, sd->status.name, sd->status.account_id, sd->status.char_id, mapindex_id2name(sd->mapindex));
- fclose(logfp);
- }
- }
- void log_pick_pc(struct map_session_data *sd, e_log_pick_type type, int nameid, int amount, struct item *itm)
- {
- nullpo_retv(sd);
- if( ( log_config.enable_logs&type ) == 0 )
- {// disabled
- return;
- }
- if (!should_log_item(log_config.filter, nameid, amount))
- return; //we skip logging this item set - it doesn't meet our logging conditions [Lupus]
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- if( itm == NULL ) { //We log common item
- if (SQL_ERROR == Sql_Query(logmysql_handle, LOG_QUERY " INTO `%s` (`time`, `char_id`, `type`, `nameid`, `amount`, `map`) VALUES (NOW(), '%d', '%c', '%d', '%d', '%s')",
- log_config.log_pick_db, sd->status.char_id, log_picktype2char(type), nameid, amount, mapindex_id2name(sd->mapindex)) )
- {
- Sql_ShowDebug(logmysql_handle);
- return;
- }
- } else { //We log Extended item
- 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_db, sd->status.char_id, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], mapindex_id2name(sd->mapindex)) )
- {
- Sql_ShowDebug(logmysql_handle);
- return;
- }
- }
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE* logfp;
- if((logfp = fopen(log_config.log_pick, "a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- if( itm == NULL ) { //We log common item
- fprintf(logfp,"%s - %d\t%c\t%d,%d,%s\n", timestring, sd->status.char_id, log_picktype2char(type), nameid, amount, mapindex_id2name(sd->mapindex));
- } else { //We log Extended item
- fprintf(logfp,"%s - %d\t%c\t%d,%d,%d,%d,%d,%d,%d,%s\n", timestring, sd->status.char_id, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], mapindex_id2name(sd->mapindex));
- }
- fclose(logfp);
- }
- }
- //Mob picked item
- void log_pick_mob(struct mob_data *md, e_log_pick_type type, int nameid, int amount, struct item *itm)
- {
- char* mapname;
- nullpo_retv(md);
- if( ( log_config.enable_logs&type ) == 0 )
- {// disabled
- return;
- }
- if (!should_log_item(log_config.filter, nameid, amount))
- return; //we skip logging this item set - it doesn't meet our logging conditions [Lupus]
- //either PLAYER or MOB (here we get map name and objects ID)
- mapname = map[md->bl.m].name;
- if(mapname==NULL)
- mapname="";
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- if( itm == NULL ) { //We log common item
- if (SQL_ERROR == Sql_Query(logmysql_handle, LOG_QUERY " INTO `%s` (`time`, `char_id`, `type`, `nameid`, `amount`, `map`) VALUES (NOW(), '%d', '%c', '%d', '%d', '%s')",
- log_config.log_pick_db, md->class_, log_picktype2char(type), nameid, amount, mapname) )
- {
- Sql_ShowDebug(logmysql_handle);
- return;
- }
- } else { //We log Extended item
- 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_db, md->class_, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], mapname) )
- {
- Sql_ShowDebug(logmysql_handle);
- return;
- }
- }
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE *logfp;
- if((logfp=fopen(log_config.log_pick,"a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- if( itm == NULL ) { //We log common item
- fprintf(logfp,"%s - %d\t%c\t%d,%d,%s\n", timestring, md->class_, log_picktype2char(type), nameid, amount, mapname);
- } else { //We log Extended item
- fprintf(logfp,"%s - %d\t%c\t%d,%d,%d,%d,%d,%d,%d,%s\n", timestring, md->class_, log_picktype2char(type), itm->nameid, amount, itm->refine, itm->card[0], itm->card[1], itm->card[2], itm->card[3], mapname);
- }
- fclose(logfp);
- }
- }
- void log_pick(struct block_list* bl, e_log_pick_type type, int nameid, int amount, struct item* itm)
- {
- if( bl == NULL )
- {
- ShowError("log_pick: bl == NULL\n");
- }
- else switch( bl->type )
- {
- case BL_PC: log_pick_pc((TBL_PC*)bl, type, nameid, amount, itm); break;
- case BL_MOB: log_pick_mob((TBL_MOB*)bl, type, nameid, amount, itm); break;
- default:
- ShowDebug("log_pick: Unhandled bl type %d.\n", bl->type);
- }
- }
- void log_zeny(struct map_session_data *sd, e_log_pick_type type, struct map_session_data *src_sd, int amount)
- {
- if( !log_config.zeny || ( log_config.zeny != 1 && abs(amount) < log_config.zeny ) )
- return;
- nullpo_retv(sd);
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- if (SQL_ERROR == Sql_Query(logmysql_handle, LOG_QUERY " INTO `%s` (`time`, `char_id`, `src_id`, `type`, `amount`, `map`) VALUES (NOW(), '%d', '%d', '%c', '%d', '%s')",
- log_config.log_zeny_db, sd->status.char_id, src_sd->status.char_id, log_picktype2char(type), amount, mapindex_id2name(sd->mapindex)) )
- {
- Sql_ShowDebug(logmysql_handle);
- return;
- }
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE* logfp;
- if((logfp=fopen(log_config.log_zeny,"a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- fprintf(logfp, "%s - %s[%d]\t%s[%d]\t%d\t\n", timestring, src_sd->status.name, src_sd->status.account_id, sd->status.name, sd->status.account_id, amount);
- fclose(logfp);
- }
- }
- void log_mvpdrop(struct map_session_data *sd, int monster_id, int *log_mvp)
- {
- if( !log_config.mvpdrop )
- return;
- nullpo_retv(sd);
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- if (SQL_ERROR == Sql_Query(logmysql_handle, LOG_QUERY " INTO `%s` (`mvp_date`, `kill_char_id`, `monster_id`, `prize`, `mvpexp`, `map`) VALUES (NOW(), '%d', '%d', '%d', '%d', '%s') ",
- log_config.log_mvpdrop_db, sd->status.char_id, monster_id, log_mvp[0], log_mvp[1], mapindex_id2name(sd->mapindex)) )
- {
- Sql_ShowDebug(logmysql_handle);
- return;
- }
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE* logfp;
- if((logfp=fopen(log_config.log_mvpdrop,"a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- fprintf(logfp,"%s - %s[%d:%d]\t%d\t%d,%d\n", timestring, sd->status.name, sd->status.account_id, sd->status.char_id, monster_id, log_mvp[0], log_mvp[1]);
- fclose(logfp);
- }
- }
- void log_atcommand(struct map_session_data* sd, int cmdlvl, const char* message)
- {
- if( cmdlvl < log_config.gm )
- return;
- nullpo_retv(sd);
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- SqlStmt* stmt;
- stmt = SqlStmt_Malloc(logmysql_handle);
- if( SQL_SUCCESS != SqlStmt_Prepare(stmt, LOG_QUERY " INTO `%s` (`atcommand_date`, `account_id`, `char_id`, `char_name`, `map`, `command`) VALUES (NOW(), '%d', '%d', ?, '%s', ?)", log_config.log_gm_db, sd->status.account_id, sd->status.char_id, mapindex_id2name(sd->mapindex) )
- || SQL_SUCCESS != SqlStmt_BindParam(stmt, 0, SQLDT_STRING, sd->status.name, strnlen(sd->status.name, NAME_LENGTH))
- || SQL_SUCCESS != SqlStmt_BindParam(stmt, 1, SQLDT_STRING, (char*)message, safestrnlen(message, 255))
- || SQL_SUCCESS != SqlStmt_Execute(stmt) )
- {
- SqlStmt_ShowDebug(stmt);
- SqlStmt_Free(stmt);
- return;
- }
- SqlStmt_Free(stmt);
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE* logfp;
- if((logfp = fopen(log_config.log_gm, "a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- fprintf(logfp, "%s - %s[%d]: %s\n", timestring, sd->status.name, sd->status.account_id, message);
- fclose(logfp);
- }
- }
- void log_npc(struct map_session_data* sd, const char* message)
- {
- if( !log_config.npc )
- return;
- nullpo_retv(sd);
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- SqlStmt* stmt;
- stmt = SqlStmt_Malloc(logmysql_handle);
- if( SQL_SUCCESS != SqlStmt_Prepare(stmt, LOG_QUERY " INTO `%s` (`npc_date`, `account_id`, `char_id`, `char_name`, `map`, `mes`) VALUES (NOW(), '%d', '%d', ?, '%s', ?)", log_config.log_npc_db, sd->status.account_id, sd->status.char_id, mapindex_id2name(sd->mapindex) )
- || SQL_SUCCESS != SqlStmt_BindParam(stmt, 0, SQLDT_STRING, sd->status.name, strnlen(sd->status.name, NAME_LENGTH))
- || SQL_SUCCESS != SqlStmt_BindParam(stmt, 1, SQLDT_STRING, (char*)message, safestrnlen(message, 255))
- || SQL_SUCCESS != SqlStmt_Execute(stmt) )
- {
- SqlStmt_ShowDebug(stmt);
- SqlStmt_Free(stmt);
- return;
- }
- SqlStmt_Free(stmt);
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE* logfp;
- if((logfp = fopen(log_config.log_npc, "a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- fprintf(logfp, "%s - %s[%d]: %s\n", timestring, sd->status.name, sd->status.account_id, message);
- fclose(logfp);
- }
- }
- void log_chat(e_log_chat_type type, int type_id, int src_charid, int src_accid, const char* map, int x, int y, const char* dst_charname, const char* message)
- {
- if( (log_config.chat&type) == 0 )
- {// disabled
- return;
- }
- if( log_config.log_chat_woe_disable && ( agit_flag || agit2_flag ) )
- {// no chat logging during woe
- return;
- }
- #ifndef TXT_ONLY
- if( log_config.sql_logs )
- {
- SqlStmt* stmt;
- stmt = SqlStmt_Malloc(logmysql_handle);
- if( SQL_SUCCESS != SqlStmt_Prepare(stmt, LOG_QUERY " INTO `%s` (`time`, `type`, `type_id`, `src_charid`, `src_accountid`, `src_map`, `src_map_x`, `src_map_y`, `dst_charname`, `message`) VALUES (NOW(), '%c', '%d', '%d', '%d', '%s', '%d', '%d', ?, ?)", log_config.log_chat_db, log_chattype2char(type), type_id, src_charid, src_accid, map, x, y)
- || SQL_SUCCESS != SqlStmt_BindParam(stmt, 0, SQLDT_STRING, (char*)dst_charname, safestrnlen(dst_charname, NAME_LENGTH))
- || SQL_SUCCESS != SqlStmt_BindParam(stmt, 1, SQLDT_STRING, (char*)message, safestrnlen(message, CHAT_SIZE_MAX))
- || SQL_SUCCESS != SqlStmt_Execute(stmt) )
- {
- SqlStmt_ShowDebug(stmt);
- SqlStmt_Free(stmt);
- return;
- }
- SqlStmt_Free(stmt);
- }
- else
- #endif
- {
- char timestring[255];
- time_t curtime;
- FILE* logfp;
- if((logfp = fopen(log_config.log_chat, "a+")) == NULL)
- return;
- time(&curtime);
- strftime(timestring, sizeof(timestring), "%m/%d/%Y %H:%M:%S", localtime(&curtime));
- fprintf(logfp, "%s - %c,%d,%d,%d,%s,%d,%d,%s,%s\n", timestring, log_chattype2char(type), type_id, src_charid, src_accid, map, x, y, dst_charname, message);
- fclose(logfp);
- }
- }
- void log_set_defaults(void)
- {
- memset(&log_config, 0, sizeof(log_config));
- //LOG FILTER Default values
- log_config.refine_items_log = 5; //log refined items, with refine >= +5
- log_config.rare_items_log = 100; //log rare items. drop chance <= 1%
- log_config.price_items_log = 1000; //1000z
- log_config.amount_items_log = 100;
- }
- int log_config_read(char *cfgName)
- {
- static int count = 0;
- char line[1024], w1[1024], w2[1024];
- FILE *fp;
- if ((count++) == 0)
- log_set_defaults();
- if((fp = fopen(cfgName, "r")) == NULL)
- {
- ShowError("Log configuration file not found at: %s\n", cfgName);
- return 1;
- }
- while(fgets(line, sizeof(line), fp))
- {
- if(line[0] == '/' && line[1] == '/')
- continue;
- if(sscanf(line, "%[^:]: %[^\r\n]", w1, w2) == 2)
- {
- if(strcmpi(w1,"enable_logs") == 0) {
- log_config.enable_logs = (e_log_pick_type)config_switch(w2);
- } else if(strcmpi(w1,"sql_logs") == 0) {
- log_config.sql_logs = (bool)config_switch(w2);
- //start of common filter settings
- } else if(strcmpi(w1,"rare_items_log") == 0) {
- log_config.rare_items_log = (atoi(w2));
- } else if(strcmpi(w1,"refine_items_log") == 0) {
- log_config.refine_items_log = (atoi(w2));
- } else if(strcmpi(w1,"price_items_log") == 0) {
- log_config.price_items_log = (atoi(w2));
- } else if(strcmpi(w1,"amount_items_log") == 0) {
- log_config.amount_items_log = (atoi(w2));
- //end of common filter settings
- } else if(strcmpi(w1,"log_branch") == 0) {
- log_config.branch = config_switch(w2);
- } else if(strcmpi(w1,"log_filter") == 0) {
- log_config.filter = config_switch(w2);
- } else if(strcmpi(w1,"log_zeny") == 0) {
- log_config.zeny = config_switch(w2);
- } else if(strcmpi(w1,"log_gm") == 0) {
- log_config.gm = config_switch(w2);
- } else if(strcmpi(w1,"log_npc") == 0) {
- log_config.npc = config_switch(w2);
- } else if(strcmpi(w1, "log_chat") == 0) {
- log_config.chat = config_switch(w2);
- } else if(strcmpi(w1,"log_mvpdrop") == 0) {
- log_config.mvpdrop = config_switch(w2);
- } else if(strcmpi(w1,"log_chat_woe_disable") == 0) {
- log_config.log_chat_woe_disable = (bool)config_switch(w2);
- }
- #ifndef TXT_ONLY
- else if(strcmpi(w1, "log_branch_db") == 0) {
- strcpy(log_config.log_branch_db, w2);
- if(log_config.branch == 1)
- ShowNotice("Logging Dead Branch Usage to table `%s`\n", w2);
- } else if(strcmpi(w1, "log_pick_db") == 0) {
- strcpy(log_config.log_pick_db, w2);
- if(log_config.filter)
- ShowNotice("Logging Item Picks to table `%s`\n", w2);
- } else if(strcmpi(w1, "log_zeny_db") == 0) {
- strcpy(log_config.log_zeny_db, w2);
- if(log_config.zeny == 1)
- ShowNotice("Logging Zeny to table `%s`\n", w2);
- } else if(strcmpi(w1, "log_mvpdrop_db") == 0) {
- strcpy(log_config.log_mvpdrop_db, w2);
- if(log_config.mvpdrop == 1)
- ShowNotice("Logging MVP Drops to table `%s`\n", w2);
- } else if(strcmpi(w1, "log_gm_db") == 0) {
- strcpy(log_config.log_gm_db, w2);
- if(log_config.gm > 0)
- ShowNotice("Logging GM Level %d Commands to table `%s`\n", log_config.gm, w2);
- } else if(strcmpi(w1, "log_npc_db") == 0) {
- strcpy(log_config.log_npc_db, w2);
- if(log_config.npc > 0)
- ShowNotice("Logging NPC 'logmes' to table `%s`\n", w2);
- } else if(strcmpi(w1, "log_chat_db") == 0) {
- strcpy(log_config.log_chat_db, w2);
- if(log_config.chat > 0)
- ShowNotice("Logging CHAT to table `%s`\n", w2);
- }
- #endif
- else if(strcmpi(w1, "log_branch_file") == 0) {
- strcpy(log_config.log_branch, w2);
- if(log_config.branch > 0 && !log_config.sql_logs)
- ShowNotice("Logging Dead Branch Usage to file `%s`\n", w2);
- } else if(strcmpi(w1, "log_pick_file") == 0) {
- strcpy(log_config.log_pick, w2);
- if(log_config.filter > 0 && !log_config.sql_logs)
- ShowNotice("Logging Item Picks to file `%s`\n", w2);
- } else if(strcmpi(w1, "log_zeny_file") == 0) {
- strcpy(log_config.log_zeny, w2);
- if(log_config.zeny > 0 && !log_config.sql_logs)
- ShowNotice("Logging Zeny to file `%s`\n", w2);
- } else if(strcmpi(w1, "log_mvpdrop_file") == 0) {
- strcpy(log_config.log_mvpdrop, w2);
- if(log_config.mvpdrop > 0 && !log_config.sql_logs)
- ShowNotice("Logging MVP Drops to file `%s`\n", w2);
- } else if(strcmpi(w1, "log_gm_file") == 0) {
- strcpy(log_config.log_gm, w2);
- if(log_config.gm > 0 && !log_config.sql_logs)
- ShowNotice("Logging GM Level %d Commands to file `%s`\n", log_config.gm, w2);
- } else if(strcmpi(w1, "log_npc_file") == 0) {
- strcpy(log_config.log_npc, w2);
- if(log_config.npc > 0 && !log_config.sql_logs)
- ShowNotice("Logging NPC 'logmes' to file `%s`\n", w2);
- } else if(strcmpi(w1, "log_chat_file") == 0) {
- strcpy(log_config.log_chat, w2);
- if(log_config.chat > 0 && !log_config.sql_logs)
- ShowNotice("Logging CHAT to file `%s`\n", w2);
- //support the import command, just like any other config
- } else if(strcmpi(w1,"import") == 0) {
- log_config_read(w2);
- }
- }
- }
- fclose(fp);
- return 0;
- }
|