char.cpp 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261
  1. // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #pragma warning(disable:4800)
  4. #include <time.h>
  5. #include <stdarg.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9. #include "../common/cbasetypes.h"
  10. #include "../common/core.h"
  11. #include "../common/db.h"
  12. #include "../common/malloc.h"
  13. #include "../common/mapindex.h"
  14. #include "../common/mmo.h"
  15. #include "../common/random.h"
  16. #include "../common/showmsg.h"
  17. #include "../common/socket.h"
  18. #include "../common/strlib.h"
  19. #include "../common/timer.h"
  20. #include "../common/cli.h"
  21. #include "int_guild.h"
  22. #include "int_homun.h"
  23. #include "int_mail.h"
  24. #include "int_mercenary.h"
  25. #include "int_elemental.h"
  26. #include "int_party.h"
  27. #include "int_storage.h"
  28. #include "inter.h"
  29. #include "char_logif.h"
  30. #include "char_mapif.h"
  31. #include "char_cnslif.h"
  32. #include "char_clif.h"
  33. //definition of exported var declared in .h
  34. int login_fd=-1; //login file descriptor
  35. int char_fd=-1; //char file descriptor
  36. struct Schema_Config schema_config;
  37. struct CharServ_Config charserv_config;
  38. struct mmo_map_server map_server[MAX_MAP_SERVERS];
  39. //Custom limits for the fame lists. [Skotlex]
  40. int fame_list_size_chemist = MAX_FAME_LIST;
  41. int fame_list_size_smith = MAX_FAME_LIST;
  42. int fame_list_size_taekwon = MAX_FAME_LIST;
  43. // Char-server-side stored fame lists [DracoRPG]
  44. struct fame_list smith_fame_list[MAX_FAME_LIST];
  45. struct fame_list chemist_fame_list[MAX_FAME_LIST];
  46. struct fame_list taekwon_fame_list[MAX_FAME_LIST];
  47. #define CHAR_MAX_MSG 300 //max number of msg_conf
  48. static char* msg_table[CHAR_MAX_MSG]; // Login Server messages_conf
  49. // check for exit signal
  50. // 0 is saving complete
  51. // other is char_id
  52. unsigned int save_flag = 0;
  53. // Advanced subnet check [LuzZza]
  54. struct s_subnet {
  55. uint32 mask;
  56. uint32 char_ip;
  57. uint32 map_ip;
  58. } subnet[16];
  59. int subnet_count = 0;
  60. int char_chardb_waiting_disconnect(int tid, unsigned int tick, int id, intptr_t data);
  61. DBMap* auth_db; // uint32 account_id -> struct auth_node*
  62. DBMap* online_char_db; // uint32 account_id -> struct online_char_data*
  63. DBMap* char_db_; // uint32 char_id -> struct mmo_charstatus*
  64. DBMap* char_get_authdb() { return auth_db; }
  65. DBMap* char_get_onlinedb() { return online_char_db; }
  66. DBMap* char_get_chardb() { return char_db_; }
  67. /**
  68. * @see DBCreateData
  69. */
  70. DBData char_create_online_data(DBKey key, va_list args){
  71. struct online_char_data* character;
  72. CREATE(character, struct online_char_data, 1);
  73. character->account_id = key.i;
  74. character->char_id = -1;
  75. character->server = -1;
  76. character->fd = -1;
  77. character->waiting_disconnect = INVALID_TIMER;
  78. return db_ptr2data(character);
  79. }
  80. void char_set_charselect(uint32 account_id) {
  81. struct online_char_data* character;
  82. character = (struct online_char_data*)idb_ensure(online_char_db, account_id, char_create_online_data);
  83. if( character->server > -1 )
  84. if( map_server[character->server].users > 0 ) // Prevent this value from going negative.
  85. map_server[character->server].users--;
  86. character->char_id = -1;
  87. character->server = -1;
  88. if(character->waiting_disconnect != INVALID_TIMER) {
  89. delete_timer(character->waiting_disconnect, char_chardb_waiting_disconnect);
  90. character->waiting_disconnect = INVALID_TIMER;
  91. }
  92. chlogif_send_setacconline(account_id);
  93. }
  94. void char_set_char_online(int map_id, uint32 char_id, uint32 account_id) {
  95. struct online_char_data* character;
  96. struct mmo_charstatus *cp;
  97. //Update DB
  98. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `online`='1', `last_login`=NOW() WHERE `char_id`='%d' LIMIT 1", schema_config.char_db, char_id) )
  99. Sql_ShowDebug(sql_handle);
  100. //Check to see for online conflicts
  101. character = (struct online_char_data*)idb_ensure(online_char_db, account_id, char_create_online_data);
  102. if( character->char_id != -1 && character->server > -1 && character->server != map_id )
  103. {
  104. ShowNotice("set_char_online: Character %d:%d marked in map server %d, but map server %d claims to have (%d:%d) online!\n",
  105. character->account_id, character->char_id, character->server, map_id, account_id, char_id);
  106. mapif_disconnectplayer(map_server[character->server].fd, character->account_id, character->char_id, 2);
  107. }
  108. //Update state data
  109. character->char_id = char_id;
  110. character->server = map_id;
  111. if( character->server > -1 )
  112. map_server[character->server].users++;
  113. //Get rid of disconnect timer
  114. if(character->waiting_disconnect != INVALID_TIMER) {
  115. delete_timer(character->waiting_disconnect, char_chardb_waiting_disconnect);
  116. character->waiting_disconnect = INVALID_TIMER;
  117. }
  118. //Set char online in guild cache. If char is in memory, use the guild id on it, otherwise seek it.
  119. cp = (struct mmo_charstatus*)idb_get(char_db_,char_id);
  120. inter_guild_CharOnline(char_id, cp?cp->guild_id:-1);
  121. //Notify login server
  122. chlogif_send_setacconline(account_id);
  123. }
  124. void char_set_char_offline(uint32 char_id, uint32 account_id){
  125. struct online_char_data* character;
  126. if ( char_id == -1 )
  127. {
  128. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `online`='0' WHERE `account_id`='%d'", schema_config.char_db, account_id) )
  129. Sql_ShowDebug(sql_handle);
  130. }
  131. else
  132. {
  133. struct mmo_charstatus* cp = (struct mmo_charstatus*)idb_get(char_db_,char_id);
  134. inter_guild_CharOffline(char_id, cp?cp->guild_id:-1);
  135. if (cp)
  136. idb_remove(char_db_,char_id);
  137. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `online`='0' WHERE `char_id`='%d' LIMIT 1", schema_config.char_db, char_id) )
  138. Sql_ShowDebug(sql_handle);
  139. }
  140. if ((character = (struct online_char_data*)idb_get(online_char_db, account_id)) != NULL)
  141. { //We don't free yet to avoid aCalloc/aFree spamming during char change. [Skotlex]
  142. if( character->server > -1 )
  143. if( map_server[character->server].users > 0 ) // Prevent this value from going negative.
  144. map_server[character->server].users--;
  145. if(character->waiting_disconnect != INVALID_TIMER){
  146. delete_timer(character->waiting_disconnect, char_chardb_waiting_disconnect);
  147. character->waiting_disconnect = INVALID_TIMER;
  148. }
  149. if(character->char_id == char_id)
  150. {
  151. character->char_id = -1;
  152. character->server = -1;
  153. // needed if player disconnects completely since Skotlex did not want to free the session
  154. character->pincode_success = false;
  155. }
  156. //FIXME? Why Kevin free'd the online information when the char was effectively in the map-server?
  157. }
  158. //Remove char if 1- Set all offline, or 2- character is no longer connected to char-server.
  159. if (char_id == -1 || character == NULL || character->fd == -1){
  160. chlogif_send_setaccoffline(login_fd,account_id);
  161. }
  162. }
  163. /**
  164. * @see DBApply
  165. */
  166. int char_db_setoffline(DBKey key, DBData *data, va_list ap) {
  167. struct online_char_data* character = (struct online_char_data*)db_data2ptr(data);
  168. int server = va_arg(ap, int);
  169. if (server == -1) {
  170. character->char_id = -1;
  171. character->server = -1;
  172. if(character->waiting_disconnect != INVALID_TIMER){
  173. delete_timer(character->waiting_disconnect, char_chardb_waiting_disconnect);
  174. character->waiting_disconnect = INVALID_TIMER;
  175. }
  176. } else if (character->server == server)
  177. character->server = -2; //In some map server that we aren't connected to.
  178. return 0;
  179. }
  180. /**
  181. * @see DBApply
  182. */
  183. static int char_db_kickoffline(DBKey key, DBData *data, va_list ap){
  184. struct online_char_data* character = (struct online_char_data*)db_data2ptr(data);
  185. int server_id = va_arg(ap, int);
  186. if (server_id > -1 && character->server != server_id)
  187. return 0;
  188. //Kick out any connected characters, and set them offline as appropriate.
  189. if (character->server > -1)
  190. mapif_disconnectplayer(map_server[character->server].fd, character->account_id, character->char_id, 1);
  191. else if (character->waiting_disconnect == INVALID_TIMER)
  192. char_set_char_offline(character->char_id, character->account_id);
  193. else
  194. return 0; // fail
  195. return 1;
  196. }
  197. void char_set_all_offline(int id){
  198. if (id < 0)
  199. ShowNotice("Sending all users offline.\n");
  200. else
  201. ShowNotice("Sending users of map-server %d offline.\n",id);
  202. online_char_db->foreach(online_char_db,char_db_kickoffline,id);
  203. if (id >= 0 || !chlogif_isconnected())
  204. return;
  205. //Tell login-server to also mark all our characters as offline.
  206. chlogif_send_setallaccoffline(login_fd);
  207. }
  208. void char_set_all_offline_sql(void){
  209. //Set all players to 'OFFLINE'
  210. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `online` = '0'", schema_config.char_db) )
  211. Sql_ShowDebug(sql_handle);
  212. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `online` = '0'", schema_config.guild_member_db) )
  213. Sql_ShowDebug(sql_handle);
  214. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `connect_member` = '0'", schema_config.guild_db) )
  215. Sql_ShowDebug(sql_handle);
  216. }
  217. /**
  218. * @see DBCreateData
  219. */
  220. static DBData char_create_charstatus(DBKey key, va_list args) {
  221. struct mmo_charstatus *cp;
  222. cp = (struct mmo_charstatus *) aCalloc(1,sizeof(struct mmo_charstatus));
  223. cp->char_id = key.i;
  224. return db_ptr2data(cp);
  225. }
  226. int char_mmo_char_tosql(uint32 char_id, struct mmo_charstatus* p){
  227. int i = 0;
  228. int count = 0;
  229. int diff = 0;
  230. char save_status[128]; //For displaying save information. [Skotlex]
  231. struct mmo_charstatus *cp;
  232. int errors = 0; //If there are any errors while saving, "cp" will not be updated at the end.
  233. StringBuf buf;
  234. if (char_id!=p->char_id) return 0;
  235. cp = (struct mmo_charstatus *)idb_ensure(char_db_, char_id, char_create_charstatus);
  236. StringBuf_Init(&buf);
  237. memset(save_status, 0, sizeof(save_status));
  238. if (
  239. (p->base_exp != cp->base_exp) || (p->base_level != cp->base_level) ||
  240. (p->job_level != cp->job_level) || (p->job_exp != cp->job_exp) ||
  241. (p->zeny != cp->zeny) ||
  242. (p->last_point.map != cp->last_point.map) ||
  243. (p->last_point.x != cp->last_point.x) || (p->last_point.y != cp->last_point.y) ||
  244. (p->max_hp != cp->max_hp) || (p->hp != cp->hp) ||
  245. (p->max_sp != cp->max_sp) || (p->sp != cp->sp) ||
  246. (p->status_point != cp->status_point) || (p->skill_point != cp->skill_point) ||
  247. (p->str != cp->str) || (p->agi != cp->agi) || (p->vit != cp->vit) ||
  248. (p->int_ != cp->int_) || (p->dex != cp->dex) || (p->luk != cp->luk) ||
  249. (p->option != cp->option) ||
  250. (p->party_id != cp->party_id) || (p->guild_id != cp->guild_id) ||
  251. (p->pet_id != cp->pet_id) || (p->weapon != cp->weapon) || (p->hom_id != cp->hom_id) ||
  252. (p->ele_id != cp->ele_id) || (p->shield != cp->shield) || (p->head_top != cp->head_top) ||
  253. (p->head_mid != cp->head_mid) || (p->head_bottom != cp->head_bottom) || (p->delete_date != cp->delete_date) ||
  254. (p->rename != cp->rename) || (p->robe != cp->robe) || (p->character_moves != cp->character_moves) ||
  255. (p->unban_time != cp->unban_time) || (p->font != cp->font) || (p->uniqueitem_counter != cp->uniqueitem_counter) ||
  256. (p->hotkey_rowshift != cp->hotkey_rowshift) || (p->clan_id != cp->clan_id ) || (p->title_id != cp->title_id) ||
  257. (p->show_equip != cp->show_equip)
  258. )
  259. { //Save status
  260. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `base_level`='%d', `job_level`='%d',"
  261. "`base_exp`='%u', `job_exp`='%u', `zeny`='%d',"
  262. "`max_hp`='%d',`hp`='%d',`max_sp`='%d',`sp`='%d',`status_point`='%d',`skill_point`='%d',"
  263. "`str`='%d',`agi`='%d',`vit`='%d',`int`='%d',`dex`='%d',`luk`='%d',"
  264. "`option`='%d',`party_id`='%d',`guild_id`='%d',`pet_id`='%d',`homun_id`='%d',`elemental_id`='%d',"
  265. "`weapon`='%d',`shield`='%d',`head_top`='%d',`head_mid`='%d',`head_bottom`='%d',"
  266. "`last_map`='%s',`last_x`='%d',`last_y`='%d',`save_map`='%s',`save_x`='%d',`save_y`='%d', `rename`='%d',"
  267. "`delete_date`='%lu',`robe`='%d',`moves`='%d',`font`='%u',`uniqueitem_counter`='%u',"
  268. "`hotkey_rowshift`='%d', `clan_id`='%d', `title_id`='%lu', `show_equip`='%d'"
  269. " WHERE `account_id`='%d' AND `char_id` = '%d'",
  270. schema_config.char_db, p->base_level, p->job_level,
  271. p->base_exp, p->job_exp, p->zeny,
  272. p->max_hp, p->hp, p->max_sp, p->sp, p->status_point, p->skill_point,
  273. p->str, p->agi, p->vit, p->int_, p->dex, p->luk,
  274. p->option, p->party_id, p->guild_id, p->pet_id, p->hom_id, p->ele_id,
  275. p->weapon, p->shield, p->head_top, p->head_mid, p->head_bottom,
  276. mapindex_id2name(p->last_point.map), p->last_point.x, p->last_point.y,
  277. mapindex_id2name(p->save_point.map), p->save_point.x, p->save_point.y, p->rename,
  278. (unsigned long)p->delete_date, // FIXME: platform-dependent size
  279. p->robe, p->character_moves, p->font, p->uniqueitem_counter,
  280. p->hotkey_rowshift, p->clan_id, p->title_id, p->show_equip,
  281. p->account_id, p->char_id) )
  282. {
  283. Sql_ShowDebug(sql_handle);
  284. errors++;
  285. } else
  286. strcat(save_status, " status");
  287. }
  288. //Values that will seldom change (to speed up saving)
  289. if (
  290. (p->hair != cp->hair) || (p->hair_color != cp->hair_color) || (p->clothes_color != cp->clothes_color) ||
  291. (p->body != cp->body) || (p->class_ != cp->class_) ||
  292. (p->partner_id != cp->partner_id) || (p->father != cp->father) ||
  293. (p->mother != cp->mother) || (p->child != cp->child) ||
  294. (p->karma != cp->karma) || (p->manner != cp->manner) ||
  295. (p->fame != cp->fame)
  296. )
  297. {
  298. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `class`='%d',"
  299. "`hair`='%d', `hair_color`='%d', `clothes_color`='%d', `body`='%d',"
  300. "`partner_id`='%u', `father`='%u', `mother`='%u', `child`='%u',"
  301. "`karma`='%d',`manner`='%d', `fame`='%d'"
  302. " WHERE `account_id`='%d' AND `char_id` = '%d'",
  303. schema_config.char_db, p->class_,
  304. p->hair, p->hair_color, p->clothes_color, p->body,
  305. p->partner_id, p->father, p->mother, p->child,
  306. p->karma, p->manner, p->fame,
  307. p->account_id, p->char_id) )
  308. {
  309. Sql_ShowDebug(sql_handle);
  310. errors++;
  311. } else
  312. strcat(save_status, " status2");
  313. }
  314. /* Mercenary Owner */
  315. if( (p->mer_id != cp->mer_id) ||
  316. (p->arch_calls != cp->arch_calls) || (p->arch_faith != cp->arch_faith) ||
  317. (p->spear_calls != cp->spear_calls) || (p->spear_faith != cp->spear_faith) ||
  318. (p->sword_calls != cp->sword_calls) || (p->sword_faith != cp->sword_faith) )
  319. {
  320. if (mercenary_owner_tosql(char_id, p))
  321. strcat(save_status, " mercenary");
  322. else
  323. errors++;
  324. }
  325. //memo points
  326. if( memcmp(p->memo_point, cp->memo_point, sizeof(p->memo_point)) )
  327. {
  328. char esc_mapname[NAME_LENGTH*2+1];
  329. //`memo` (`memo_id`,`char_id`,`map`,`x`,`y`)
  330. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.memo_db, p->char_id) )
  331. {
  332. Sql_ShowDebug(sql_handle);
  333. errors++;
  334. }
  335. //insert here.
  336. StringBuf_Clear(&buf);
  337. StringBuf_Printf(&buf, "INSERT INTO `%s`(`char_id`,`map`,`x`,`y`) VALUES ", schema_config.memo_db);
  338. for( i = 0, count = 0; i < MAX_MEMOPOINTS; ++i )
  339. {
  340. if( p->memo_point[i].map )
  341. {
  342. if( count )
  343. StringBuf_AppendStr(&buf, ",");
  344. Sql_EscapeString(sql_handle, esc_mapname, mapindex_id2name(p->memo_point[i].map));
  345. StringBuf_Printf(&buf, "('%d', '%s', '%d', '%d')", char_id, esc_mapname, p->memo_point[i].x, p->memo_point[i].y);
  346. ++count;
  347. }
  348. }
  349. if( count )
  350. {
  351. if( SQL_ERROR == Sql_QueryStr(sql_handle, StringBuf_Value(&buf)) )
  352. {
  353. Sql_ShowDebug(sql_handle);
  354. errors++;
  355. }
  356. }
  357. strcat(save_status, " memo");
  358. }
  359. //skills
  360. if( memcmp(p->skill, cp->skill, sizeof(p->skill)) )
  361. {
  362. //`skill` (`char_id`, `id`, `lv`)
  363. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.skill_db, p->char_id) )
  364. {
  365. Sql_ShowDebug(sql_handle);
  366. errors++;
  367. }
  368. StringBuf_Clear(&buf);
  369. StringBuf_Printf(&buf, "INSERT INTO `%s`(`char_id`,`id`,`lv`,`flag`) VALUES ", schema_config.skill_db);
  370. //insert here.
  371. for( i = 0, count = 0; i < MAX_SKILL; ++i ) {
  372. if( p->skill[i].id != 0 && p->skill[i].flag != SKILL_FLAG_TEMPORARY ) {
  373. if( p->skill[i].lv == 0 && ( p->skill[i].flag == SKILL_FLAG_PERM_GRANTED || p->skill[i].flag == SKILL_FLAG_PERMANENT ) )
  374. continue;
  375. if( p->skill[i].flag != SKILL_FLAG_PERMANENT && p->skill[i].flag != SKILL_FLAG_PERM_GRANTED && (p->skill[i].flag - SKILL_FLAG_REPLACED_LV_0) == 0 )
  376. continue;
  377. if( count )
  378. StringBuf_AppendStr(&buf, ",");
  379. StringBuf_Printf(&buf, "('%d','%d','%d','%d')", char_id, p->skill[i].id,
  380. ( (p->skill[i].flag == SKILL_FLAG_PERMANENT || p->skill[i].flag == SKILL_FLAG_PERM_GRANTED) ? p->skill[i].lv : p->skill[i].flag - SKILL_FLAG_REPLACED_LV_0),
  381. p->skill[i].flag == SKILL_FLAG_PERM_GRANTED ? p->skill[i].flag : 0);/* other flags do not need to be saved */
  382. ++count;
  383. }
  384. }
  385. if( count )
  386. {
  387. if( SQL_ERROR == Sql_QueryStr(sql_handle, StringBuf_Value(&buf)) )
  388. {
  389. Sql_ShowDebug(sql_handle);
  390. errors++;
  391. }
  392. }
  393. strcat(save_status, " skills");
  394. }
  395. diff = 0;
  396. for(i = 0; i < MAX_FRIENDS; i++){
  397. if(p->friends[i].char_id != cp->friends[i].char_id ||
  398. p->friends[i].account_id != cp->friends[i].account_id){
  399. diff = 1;
  400. break;
  401. }
  402. }
  403. if(diff == 1)
  404. { //Save friends
  405. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.friend_db, char_id) )
  406. {
  407. Sql_ShowDebug(sql_handle);
  408. errors++;
  409. }
  410. StringBuf_Clear(&buf);
  411. StringBuf_Printf(&buf, "INSERT INTO `%s` (`char_id`, `friend_account`, `friend_id`) VALUES ", schema_config.friend_db);
  412. for( i = 0, count = 0; i < MAX_FRIENDS; ++i )
  413. {
  414. if( p->friends[i].char_id > 0 )
  415. {
  416. if( count )
  417. StringBuf_AppendStr(&buf, ",");
  418. StringBuf_Printf(&buf, "('%d','%d','%d')", char_id, p->friends[i].account_id, p->friends[i].char_id);
  419. count++;
  420. }
  421. }
  422. if( count )
  423. {
  424. if( SQL_ERROR == Sql_QueryStr(sql_handle, StringBuf_Value(&buf)) )
  425. {
  426. Sql_ShowDebug(sql_handle);
  427. errors++;
  428. }
  429. }
  430. strcat(save_status, " friends");
  431. }
  432. #ifdef HOTKEY_SAVING
  433. // hotkeys
  434. StringBuf_Clear(&buf);
  435. StringBuf_Printf(&buf, "REPLACE INTO `%s` (`char_id`, `hotkey`, `type`, `itemskill_id`, `skill_lvl`) VALUES ", schema_config.hotkey_db);
  436. diff = 0;
  437. for(i = 0; i < ARRAYLENGTH(p->hotkeys); i++){
  438. if(memcmp(&p->hotkeys[i], &cp->hotkeys[i], sizeof(struct hotkey)))
  439. {
  440. if( diff )
  441. StringBuf_AppendStr(&buf, ",");// not the first hotkey
  442. StringBuf_Printf(&buf, "('%d','%u','%u','%u','%u')", char_id, (unsigned int)i, (unsigned int)p->hotkeys[i].type, p->hotkeys[i].id , (unsigned int)p->hotkeys[i].lv);
  443. diff = 1;
  444. }
  445. }
  446. if(diff) {
  447. if( SQL_ERROR == Sql_QueryStr(sql_handle, StringBuf_Value(&buf)) )
  448. {
  449. Sql_ShowDebug(sql_handle);
  450. errors++;
  451. } else
  452. strcat(save_status, " hotkeys");
  453. }
  454. #endif
  455. StringBuf_Destroy(&buf);
  456. if (save_status[0]!='\0' && charserv_config.save_log)
  457. ShowInfo("Saved char %d - %s:%s.\n", char_id, p->name, save_status);
  458. if (!errors)
  459. memcpy(cp, p, sizeof(struct mmo_charstatus));
  460. return 0;
  461. }
  462. /// Saves an array of 'item' entries into the specified table.
  463. int char_memitemdata_to_sql(const struct item items[], int max, int id, enum storage_type tableswitch, uint8 stor_id) {
  464. StringBuf buf;
  465. SqlStmt* stmt;
  466. int i, j, offset = 0, errors = 0;
  467. const char *tablename, *selectoption, *printname;
  468. struct item item; // temp storage variable
  469. bool* flag; // bit array for inventory matching
  470. bool found;
  471. switch (tableswitch) {
  472. case TABLE_INVENTORY:
  473. printname = "Inventory";
  474. tablename = schema_config.inventory_db;
  475. selectoption = "char_id";
  476. break;
  477. case TABLE_CART:
  478. printname = "Cart";
  479. tablename = schema_config.cart_db;
  480. selectoption = "char_id";
  481. break;
  482. case TABLE_STORAGE:
  483. printname = inter_premiumStorage_getPrintableName(stor_id);
  484. tablename = inter_premiumStorage_getTableName(stor_id);
  485. selectoption = "account_id";
  486. break;
  487. case TABLE_GUILD_STORAGE:
  488. printname = "Guild Storage";
  489. tablename = schema_config.guild_storage_db;
  490. selectoption = "guild_id";
  491. break;
  492. default:
  493. ShowError("Invalid table name!\n");
  494. return 1;
  495. }
  496. // The following code compares inventory with current database values
  497. // and performs modification/deletion/insertion only on relevant rows.
  498. // This approach is more complicated than a trivial delete&insert, but
  499. // it significantly reduces cpu load on the database server.
  500. StringBuf_Init(&buf);
  501. StringBuf_AppendStr(&buf, "SELECT `id`, `nameid`, `amount`, `equip`, `identify`, `refine`, `attribute`, `expire_time`, `bound`, `unique_id`");
  502. if (tableswitch == TABLE_INVENTORY) {
  503. StringBuf_Printf(&buf, ", `favorite`");
  504. offset = 1;
  505. }
  506. for( i = 0; i < MAX_SLOTS; ++i )
  507. StringBuf_Printf(&buf, ", `card%d`", i);
  508. for( i = 0; i < MAX_ITEM_RDM_OPT; ++i ) {
  509. StringBuf_Printf(&buf, ", `option_id%d`", i);
  510. StringBuf_Printf(&buf, ", `option_val%d`", i);
  511. StringBuf_Printf(&buf, ", `option_parm%d`", i);
  512. }
  513. StringBuf_Printf(&buf, " FROM `%s` WHERE `%s`='%d'", tablename, selectoption, id);
  514. stmt = SqlStmt_Malloc(sql_handle);
  515. if( SQL_ERROR == SqlStmt_PrepareStr(stmt, StringBuf_Value(&buf))
  516. || SQL_ERROR == SqlStmt_Execute(stmt) )
  517. {
  518. SqlStmt_ShowDebug(stmt);
  519. SqlStmt_Free(stmt);
  520. StringBuf_Destroy(&buf);
  521. return 1;
  522. }
  523. SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &item.id, 0, NULL, NULL);
  524. SqlStmt_BindColumn(stmt, 1, SQLDT_USHORT, &item.nameid, 0, NULL, NULL);
  525. SqlStmt_BindColumn(stmt, 2, SQLDT_SHORT, &item.amount, 0, NULL, NULL);
  526. SqlStmt_BindColumn(stmt, 3, SQLDT_UINT, &item.equip, 0, NULL, NULL);
  527. SqlStmt_BindColumn(stmt, 4, SQLDT_CHAR, &item.identify, 0, NULL, NULL);
  528. SqlStmt_BindColumn(stmt, 5, SQLDT_CHAR, &item.refine, 0, NULL, NULL);
  529. SqlStmt_BindColumn(stmt, 6, SQLDT_CHAR, &item.attribute, 0, NULL, NULL);
  530. SqlStmt_BindColumn(stmt, 7, SQLDT_UINT, &item.expire_time, 0, NULL, NULL);
  531. SqlStmt_BindColumn(stmt, 8, SQLDT_UINT, &item.bound, 0, NULL, NULL);
  532. SqlStmt_BindColumn(stmt, 9, SQLDT_UINT64, &item.unique_id, 0, NULL, NULL);
  533. if (tableswitch == TABLE_INVENTORY)
  534. SqlStmt_BindColumn(stmt, 10, SQLDT_CHAR, &item.favorite, 0, NULL, NULL);
  535. for( i = 0; i < MAX_SLOTS; ++i )
  536. SqlStmt_BindColumn(stmt, 10+offset+i, SQLDT_USHORT, &item.card[i], 0, NULL, NULL);
  537. for( i = 0; i < MAX_ITEM_RDM_OPT; ++i ) {
  538. SqlStmt_BindColumn(stmt, 10+offset+MAX_SLOTS+i*3, SQLDT_SHORT, &item.option[i].id, 0, NULL, NULL);
  539. SqlStmt_BindColumn(stmt, 11+offset+MAX_SLOTS+i*3, SQLDT_SHORT, &item.option[i].value, 0, NULL, NULL);
  540. SqlStmt_BindColumn(stmt, 12+offset+MAX_SLOTS+i*3, SQLDT_CHAR, &item.option[i].param, 0, NULL, NULL);
  541. }
  542. // bit array indicating which inventory items have already been matched
  543. flag = (bool*) aCalloc(max, sizeof(bool));
  544. while( SQL_SUCCESS == SqlStmt_NextRow(stmt) )
  545. {
  546. found = false;
  547. // search for the presence of the item in the char's inventory
  548. for( i = 0; i < max; ++i )
  549. {
  550. // skip empty and already matched entries
  551. if( items[i].nameid == 0 || flag[i] )
  552. continue;
  553. if( items[i].nameid == item.nameid
  554. && items[i].card[0] == item.card[0]
  555. && items[i].card[2] == item.card[2]
  556. && items[i].card[3] == item.card[3]
  557. && items[i].unique_id == item.unique_id
  558. ) { //They are the same item.
  559. int k;
  560. ARR_FIND( 0, MAX_SLOTS, j, items[i].card[j] != item.card[j] );
  561. ARR_FIND( 0, MAX_ITEM_RDM_OPT, k, items[i].option[k].id != item.option[k].id || items[i].option[k].value != item.option[k].value || items[i].option[k].param != item.option[k].param );
  562. if( j == MAX_SLOTS &&
  563. k == MAX_ITEM_RDM_OPT &&
  564. items[i].amount == item.amount &&
  565. items[i].equip == item.equip &&
  566. items[i].identify == item.identify &&
  567. items[i].refine == item.refine &&
  568. items[i].attribute == item.attribute &&
  569. items[i].expire_time == item.expire_time &&
  570. items[i].bound == item.bound &&
  571. (tableswitch != TABLE_INVENTORY || items[i].favorite == item.favorite) )
  572. ; //Do nothing.
  573. else
  574. {
  575. // update all fields.
  576. StringBuf_Clear(&buf);
  577. StringBuf_Printf(&buf, "UPDATE `%s` SET `amount`='%d', `equip`='%d', `identify`='%d', `refine`='%d',`attribute`='%d', `expire_time`='%u', `bound`='%d', `unique_id`='%" PRIu64 "'",
  578. tablename, items[i].amount, items[i].equip, items[i].identify, items[i].refine, items[i].attribute, items[i].expire_time, items[i].bound, items[i].unique_id);
  579. if (tableswitch == TABLE_INVENTORY)
  580. StringBuf_Printf(&buf, ", `favorite`='%d'", items[i].favorite);
  581. for( j = 0; j < MAX_SLOTS; ++j )
  582. StringBuf_Printf(&buf, ", `card%d`=%hu", j, items[i].card[j]);
  583. for( j = 0; j < MAX_ITEM_RDM_OPT; ++j ) {
  584. StringBuf_Printf(&buf, ", `option_id%d`=%d", j, items[i].option[j].id);
  585. StringBuf_Printf(&buf, ", `option_val%d`=%d", j, items[i].option[j].value);
  586. StringBuf_Printf(&buf, ", `option_parm%d`=%d", j, items[i].option[j].param);
  587. }
  588. StringBuf_Printf(&buf, " WHERE `id`='%d' LIMIT 1", item.id);
  589. if( SQL_ERROR == Sql_QueryStr(sql_handle, StringBuf_Value(&buf)) )
  590. {
  591. Sql_ShowDebug(sql_handle);
  592. errors++;
  593. }
  594. }
  595. found = flag[i] = true; //Item dealt with,
  596. break; //skip to next item in the db.
  597. }
  598. }
  599. if( !found )
  600. {// Item not present in inventory, remove it.
  601. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE from `%s` where `id`='%d' LIMIT 1", tablename, item.id) )
  602. {
  603. Sql_ShowDebug(sql_handle);
  604. errors++;
  605. }
  606. }
  607. }
  608. SqlStmt_Free(stmt);
  609. StringBuf_Clear(&buf);
  610. StringBuf_Printf(&buf, "INSERT INTO `%s`(`%s`, `nameid`, `amount`, `equip`, `identify`, `refine`, `attribute`, `expire_time`, `bound`, `unique_id`", tablename, selectoption);
  611. if (tableswitch == TABLE_INVENTORY)
  612. StringBuf_Printf(&buf, ", `favorite`");
  613. for( j = 0; j < MAX_SLOTS; ++j )
  614. StringBuf_Printf(&buf, ", `card%d`", j);
  615. for( j = 0; j < MAX_ITEM_RDM_OPT; ++j ) {
  616. StringBuf_Printf(&buf, ", `option_id%d`", j);
  617. StringBuf_Printf(&buf, ", `option_val%d`", j);
  618. StringBuf_Printf(&buf, ", `option_parm%d`", j);
  619. }
  620. StringBuf_AppendStr(&buf, ") VALUES ");
  621. found = false;
  622. // insert non-matched items into the db as new items
  623. for( i = 0; i < max; ++i )
  624. {
  625. // skip empty and already matched entries
  626. if( items[i].nameid == 0 || flag[i] )
  627. continue;
  628. if( found )
  629. StringBuf_AppendStr(&buf, ",");
  630. else
  631. found = true;
  632. StringBuf_Printf(&buf, "('%d', '%hu', '%d', '%d', '%d', '%d', '%d', '%u', '%d', '%" PRIu64 "'",
  633. id, items[i].nameid, items[i].amount, items[i].equip, items[i].identify, items[i].refine, items[i].attribute, items[i].expire_time, items[i].bound, items[i].unique_id);
  634. if (tableswitch == TABLE_INVENTORY)
  635. StringBuf_Printf(&buf, ", '%d'", items[i].favorite);
  636. for( j = 0; j < MAX_SLOTS; ++j )
  637. StringBuf_Printf(&buf, ", '%hu'", items[i].card[j]);
  638. for( j = 0; j < MAX_ITEM_RDM_OPT; ++j ) {
  639. StringBuf_Printf(&buf, ", '%d'", items[i].option[j].id);
  640. StringBuf_Printf(&buf, ", '%d'", items[i].option[j].value);
  641. StringBuf_Printf(&buf, ", '%d'", items[i].option[j].param);
  642. }
  643. StringBuf_AppendStr(&buf, ")");
  644. }
  645. if( found && SQL_ERROR == Sql_QueryStr(sql_handle, StringBuf_Value(&buf)) )
  646. {
  647. Sql_ShowDebug(sql_handle);
  648. errors++;
  649. }
  650. ShowInfo("Saved %s (%d) data to table %s for %s: %d\n", printname, stor_id, tablename, selectoption, id);
  651. StringBuf_Destroy(&buf);
  652. aFree(flag);
  653. return errors;
  654. }
  655. bool char_memitemdata_from_sql(struct s_storage* p, int max, int id, enum storage_type tableswitch, uint8 stor_id) {
  656. StringBuf buf;
  657. SqlStmt* stmt;
  658. int i,j, offset = 0;
  659. struct item item, *storage;
  660. const char *tablename, *selectoption, *printname;
  661. switch (tableswitch) {
  662. case TABLE_INVENTORY:
  663. printname = "Inventory";
  664. tablename = schema_config.inventory_db;
  665. selectoption = "char_id";
  666. storage = p->u.items_inventory;
  667. break;
  668. case TABLE_CART:
  669. printname = "Cart";
  670. tablename = schema_config.cart_db;
  671. selectoption = "char_id";
  672. storage = p->u.items_cart;
  673. break;
  674. case TABLE_STORAGE:
  675. printname = "Storage";
  676. tablename = inter_premiumStorage_getTableName(stor_id);
  677. selectoption = "account_id";
  678. storage = p->u.items_storage;
  679. break;
  680. case TABLE_GUILD_STORAGE:
  681. printname = "Guild Storage";
  682. tablename = schema_config.guild_storage_db;
  683. selectoption = "guild_id";
  684. storage = p->u.items_guild;
  685. break;
  686. default:
  687. ShowError("Invalid table name!\n");
  688. return false;
  689. }
  690. memset(p, 0, sizeof(struct s_storage)); //clean up memory
  691. p->id = id;
  692. p->type = tableswitch;
  693. p->stor_id = stor_id;
  694. p->max_amount = inter_premiumStorage_getMax(p->stor_id);
  695. stmt = SqlStmt_Malloc(sql_handle);
  696. if (stmt == NULL) {
  697. SqlStmt_ShowDebug(stmt);
  698. return false;
  699. }
  700. StringBuf_Init(&buf);
  701. StringBuf_AppendStr(&buf, "SELECT `id`,`nameid`,`amount`,`equip`,`identify`,`refine`,`attribute`,`expire_time`,`bound`,`unique_id`");
  702. if (tableswitch == TABLE_INVENTORY) {
  703. StringBuf_Printf(&buf, ", `favorite`");
  704. offset = 1;
  705. }
  706. for( j = 0; j < MAX_SLOTS; ++j )
  707. StringBuf_Printf(&buf, ",`card%d`", j);
  708. for( j = 0; j < MAX_ITEM_RDM_OPT; ++j ) {
  709. StringBuf_Printf(&buf, ", `option_id%d`", j);
  710. StringBuf_Printf(&buf, ", `option_val%d`", j);
  711. StringBuf_Printf(&buf, ", `option_parm%d`", j);
  712. }
  713. StringBuf_Printf(&buf, " FROM `%s` WHERE `%s`=? ORDER BY `nameid`", tablename, selectoption );
  714. if( SQL_ERROR == SqlStmt_PrepareStr(stmt, StringBuf_Value(&buf))
  715. || SQL_ERROR == SqlStmt_BindParam(stmt, 0, SQLDT_INT, &id, 0)
  716. || SQL_ERROR == SqlStmt_Execute(stmt) )
  717. {
  718. SqlStmt_ShowDebug(stmt);
  719. SqlStmt_Free(stmt);
  720. StringBuf_Destroy(&buf);
  721. return false;
  722. }
  723. SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &item.id, 0, NULL, NULL);
  724. SqlStmt_BindColumn(stmt, 1, SQLDT_USHORT, &item.nameid, 0, NULL, NULL);
  725. SqlStmt_BindColumn(stmt, 2, SQLDT_SHORT, &item.amount, 0, NULL, NULL);
  726. SqlStmt_BindColumn(stmt, 3, SQLDT_UINT, &item.equip, 0, NULL, NULL);
  727. SqlStmt_BindColumn(stmt, 4, SQLDT_CHAR, &item.identify, 0, NULL, NULL);
  728. SqlStmt_BindColumn(stmt, 5, SQLDT_CHAR, &item.refine, 0, NULL, NULL);
  729. SqlStmt_BindColumn(stmt, 6, SQLDT_CHAR, &item.attribute, 0, NULL, NULL);
  730. SqlStmt_BindColumn(stmt, 7, SQLDT_UINT, &item.expire_time, 0, NULL, NULL);
  731. SqlStmt_BindColumn(stmt, 8, SQLDT_CHAR, &item.bound, 0, NULL, NULL);
  732. SqlStmt_BindColumn(stmt, 9, SQLDT_ULONGLONG, &item.unique_id, 0, NULL, NULL);
  733. if (tableswitch == TABLE_INVENTORY)
  734. SqlStmt_BindColumn(stmt, 10, SQLDT_CHAR, &item.favorite, 0, NULL, NULL);
  735. for( i = 0; i < MAX_SLOTS; ++i )
  736. SqlStmt_BindColumn(stmt, 10+offset+i, SQLDT_USHORT, &item.card[i], 0, NULL, NULL);
  737. for( i = 0; i < MAX_ITEM_RDM_OPT; ++i ) {
  738. SqlStmt_BindColumn(stmt, 10+offset+MAX_SLOTS+i*3, SQLDT_SHORT, &item.option[i].id, 0, NULL, NULL);
  739. SqlStmt_BindColumn(stmt, 11+offset+MAX_SLOTS+i*3, SQLDT_SHORT, &item.option[i].value, 0, NULL, NULL);
  740. SqlStmt_BindColumn(stmt, 12+offset+MAX_SLOTS+i*3, SQLDT_CHAR, &item.option[i].param, 0, NULL, NULL);
  741. }
  742. for( i = 0; i < max && SQL_SUCCESS == SqlStmt_NextRow(stmt); ++i )
  743. memcpy(&storage[i], &item, sizeof(item));
  744. p->amount = i;
  745. ShowInfo("Loaded %s data from table %s for %s: %d (total: %d)\n", printname, tablename, selectoption, id, p->amount);
  746. SqlStmt_FreeResult(stmt);
  747. SqlStmt_Free(stmt);
  748. StringBuf_Destroy(&buf);
  749. return true;
  750. }
  751. /**
  752. * Returns the correct gender ID for the given character and enum value.
  753. *
  754. * If the per-character sex is defined but not supported by the current packetver, the database entries are corrected.
  755. *
  756. * @param sd Character data, if available.
  757. * @param p Character status.
  758. * @param sex Character sex (database enum)
  759. *
  760. * @retval SEX_MALE if the per-character sex is male
  761. * @retval SEX_FEMALE if the per-character sex is female
  762. * @retval SEX_ACCOUNT if the per-character sex is not defined or the current PACKETVER doesn't support it.
  763. */
  764. int char_mmo_gender(const struct char_session_data *sd, const struct mmo_charstatus *p, char sex)
  765. {
  766. #if PACKETVER >= 20141016
  767. (void)sd; (void)p; // Unused
  768. switch (sex) {
  769. case 'M':
  770. return SEX_MALE;
  771. case 'F':
  772. return SEX_FEMALE;
  773. case 'U':
  774. default:
  775. return SEX_ACCOUNT;
  776. }
  777. #else
  778. if (sex == 'M' || sex == 'F') {
  779. if (!sd) {
  780. // sd is not available, there isn't much we can do. Just return and print a warning.
  781. ShowWarning("Character '%s' (CID: %d, AID: %d) has sex '%c', but PACKETVER does not support per-character sex. Defaulting to 'U'.\n",
  782. p->name, p->char_id, p->account_id, sex);
  783. return SEX_ACCOUNT;
  784. }
  785. if ((sex == 'M' && sd->sex == SEX_FEMALE)
  786. || (sex == 'F' && sd->sex == SEX_MALE)) {
  787. ShowWarning("Changing sex of character '%s' (CID: %d, AID: %d) to 'U' due to incompatible PACKETVER.\n", p->name, p->char_id, p->account_id);
  788. chlogif_parse_ackchangecharsex(p->char_id, sd->sex);
  789. } else {
  790. ShowInfo("Resetting sex of character '%s' (CID: %d, AID: %d) to 'U' due to incompatible PACKETVER.\n", p->name, p->char_id, p->account_id);
  791. }
  792. if (SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `sex` = 'U' WHERE `char_id` = '%d'", schema_config.char_db, p->char_id)) {
  793. Sql_ShowDebug(sql_handle);
  794. }
  795. }
  796. return SEX_ACCOUNT;
  797. #endif
  798. }
  799. int char_mmo_char_tobuf(uint8* buf, struct mmo_charstatus* p);
  800. //=====================================================================================================
  801. // Loads the basic character rooster for the given account. Returns total buffer used.
  802. int char_mmo_chars_fromsql(struct char_session_data* sd, uint8* buf) {
  803. SqlStmt* stmt;
  804. struct mmo_charstatus p;
  805. int j = 0, i;
  806. char last_map[MAP_NAME_LENGTH_EXT];
  807. char sex[2];
  808. stmt = SqlStmt_Malloc(sql_handle);
  809. if( stmt == NULL ) {
  810. SqlStmt_ShowDebug(stmt);
  811. return 0;
  812. }
  813. memset(&p, 0, sizeof(p));
  814. for( i = 0; i < MAX_CHARS; i++ ) {
  815. sd->found_char[i] = -1;
  816. sd->unban_time[i] = 0;
  817. }
  818. // read char data
  819. if( SQL_ERROR == SqlStmt_Prepare(stmt, "SELECT "
  820. "`char_id`,`char_num`,`name`,`class`,`base_level`,`job_level`,`base_exp`,`job_exp`,`zeny`,"
  821. "`str`,`agi`,`vit`,`int`,`dex`,`luk`,`max_hp`,`hp`,`max_sp`,`sp`,"
  822. "`status_point`,`skill_point`,`option`,`karma`,`manner`,`hair`,`hair_color`,"
  823. "`clothes_color`,`body`,`weapon`,`shield`,`head_top`,`head_mid`,`head_bottom`,`last_map`,`rename`,`delete_date`,"
  824. "`robe`,`moves`,`unban_time`,`font`,`uniqueitem_counter`,`sex`,`hotkey_rowshift`,`title_id`,`show_equip`"
  825. " FROM `%s` WHERE `account_id`='%d' AND `char_num` < '%d'", schema_config.char_db, sd->account_id, MAX_CHARS)
  826. || SQL_ERROR == SqlStmt_Execute(stmt)
  827. || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &p.char_id, 0, NULL, NULL)
  828. || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_UCHAR, &p.slot, 0, NULL, NULL)
  829. || SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_STRING, &p.name, sizeof(p.name), NULL, NULL)
  830. || SQL_ERROR == SqlStmt_BindColumn(stmt, 3, SQLDT_SHORT, &p.class_, 0, NULL, NULL)
  831. || SQL_ERROR == SqlStmt_BindColumn(stmt, 4, SQLDT_UINT, &p.base_level, 0, NULL, NULL)
  832. || SQL_ERROR == SqlStmt_BindColumn(stmt, 5, SQLDT_UINT, &p.job_level, 0, NULL, NULL)
  833. || SQL_ERROR == SqlStmt_BindColumn(stmt, 6, SQLDT_UINT, &p.base_exp, 0, NULL, NULL)
  834. || SQL_ERROR == SqlStmt_BindColumn(stmt, 7, SQLDT_UINT, &p.job_exp, 0, NULL, NULL)
  835. || SQL_ERROR == SqlStmt_BindColumn(stmt, 8, SQLDT_INT, &p.zeny, 0, NULL, NULL)
  836. || SQL_ERROR == SqlStmt_BindColumn(stmt, 9, SQLDT_SHORT, &p.str, 0, NULL, NULL)
  837. || SQL_ERROR == SqlStmt_BindColumn(stmt, 10, SQLDT_SHORT, &p.agi, 0, NULL, NULL)
  838. || SQL_ERROR == SqlStmt_BindColumn(stmt, 11, SQLDT_SHORT, &p.vit, 0, NULL, NULL)
  839. || SQL_ERROR == SqlStmt_BindColumn(stmt, 12, SQLDT_SHORT, &p.int_, 0, NULL, NULL)
  840. || SQL_ERROR == SqlStmt_BindColumn(stmt, 13, SQLDT_SHORT, &p.dex, 0, NULL, NULL)
  841. || SQL_ERROR == SqlStmt_BindColumn(stmt, 14, SQLDT_SHORT, &p.luk, 0, NULL, NULL)
  842. || SQL_ERROR == SqlStmt_BindColumn(stmt, 15, SQLDT_INT, &p.max_hp, 0, NULL, NULL)
  843. || SQL_ERROR == SqlStmt_BindColumn(stmt, 16, SQLDT_INT, &p.hp, 0, NULL, NULL)
  844. || SQL_ERROR == SqlStmt_BindColumn(stmt, 17, SQLDT_INT, &p.max_sp, 0, NULL, NULL)
  845. || SQL_ERROR == SqlStmt_BindColumn(stmt, 18, SQLDT_INT, &p.sp, 0, NULL, NULL)
  846. || SQL_ERROR == SqlStmt_BindColumn(stmt, 19, SQLDT_UINT, &p.status_point, 0, NULL, NULL)
  847. || SQL_ERROR == SqlStmt_BindColumn(stmt, 20, SQLDT_UINT, &p.skill_point, 0, NULL, NULL)
  848. || SQL_ERROR == SqlStmt_BindColumn(stmt, 21, SQLDT_UINT, &p.option, 0, NULL, NULL)
  849. || SQL_ERROR == SqlStmt_BindColumn(stmt, 22, SQLDT_UCHAR, &p.karma, 0, NULL, NULL)
  850. || SQL_ERROR == SqlStmt_BindColumn(stmt, 23, SQLDT_SHORT, &p.manner, 0, NULL, NULL)
  851. || SQL_ERROR == SqlStmt_BindColumn(stmt, 24, SQLDT_SHORT, &p.hair, 0, NULL, NULL)
  852. || SQL_ERROR == SqlStmt_BindColumn(stmt, 25, SQLDT_SHORT, &p.hair_color, 0, NULL, NULL)
  853. || SQL_ERROR == SqlStmt_BindColumn(stmt, 26, SQLDT_SHORT, &p.clothes_color, 0, NULL, NULL)
  854. || SQL_ERROR == SqlStmt_BindColumn(stmt, 27, SQLDT_SHORT, &p.body, 0, NULL, NULL)
  855. || SQL_ERROR == SqlStmt_BindColumn(stmt, 28, SQLDT_SHORT, &p.weapon, 0, NULL, NULL)
  856. || SQL_ERROR == SqlStmt_BindColumn(stmt, 29, SQLDT_SHORT, &p.shield, 0, NULL, NULL)
  857. || SQL_ERROR == SqlStmt_BindColumn(stmt, 30, SQLDT_SHORT, &p.head_top, 0, NULL, NULL)
  858. || SQL_ERROR == SqlStmt_BindColumn(stmt, 31, SQLDT_SHORT, &p.head_mid, 0, NULL, NULL)
  859. || SQL_ERROR == SqlStmt_BindColumn(stmt, 32, SQLDT_SHORT, &p.head_bottom, 0, NULL, NULL)
  860. || SQL_ERROR == SqlStmt_BindColumn(stmt, 33, SQLDT_STRING, &last_map, sizeof(last_map), NULL, NULL)
  861. || SQL_ERROR == SqlStmt_BindColumn(stmt, 34, SQLDT_SHORT, &p.rename, 0, NULL, NULL)
  862. || SQL_ERROR == SqlStmt_BindColumn(stmt, 35, SQLDT_UINT32, &p.delete_date, 0, NULL, NULL)
  863. || SQL_ERROR == SqlStmt_BindColumn(stmt, 36, SQLDT_SHORT, &p.robe, 0, NULL, NULL)
  864. || SQL_ERROR == SqlStmt_BindColumn(stmt, 37, SQLDT_UINT, &p.character_moves, 0, NULL, NULL)
  865. || SQL_ERROR == SqlStmt_BindColumn(stmt, 38, SQLDT_LONG, &p.unban_time, 0, NULL, NULL)
  866. || SQL_ERROR == SqlStmt_BindColumn(stmt, 39, SQLDT_UCHAR, &p.font, 0, NULL, NULL)
  867. || SQL_ERROR == SqlStmt_BindColumn(stmt, 40, SQLDT_UINT, &p.uniqueitem_counter, 0, NULL, NULL)
  868. || SQL_ERROR == SqlStmt_BindColumn(stmt, 41, SQLDT_ENUM, &sex, sizeof(sex), NULL, NULL)
  869. || SQL_ERROR == SqlStmt_BindColumn(stmt, 42, SQLDT_UCHAR, &p.hotkey_rowshift, 0, NULL, NULL)
  870. || SQL_ERROR == SqlStmt_BindColumn(stmt, 43, SQLDT_ULONG, &p.title_id, 0, NULL, NULL)
  871. || SQL_ERROR == SqlStmt_BindColumn(stmt, 44, SQLDT_UINT16, &p.show_equip, 0, NULL, NULL)
  872. )
  873. {
  874. SqlStmt_ShowDebug(stmt);
  875. SqlStmt_Free(stmt);
  876. return 0;
  877. }
  878. for( i = 0; i < MAX_CHARS && SQL_SUCCESS == SqlStmt_NextRow(stmt); i++ )
  879. {
  880. p.last_point.map = mapindex_name2id(last_map);
  881. sd->found_char[p.slot] = p.char_id;
  882. sd->unban_time[p.slot] = p.unban_time;
  883. p.sex = char_mmo_gender(sd, &p, sex[0]);
  884. j += char_mmo_char_tobuf(WBUFP(buf, j), &p);
  885. // Addon System
  886. // store the required info into the session
  887. sd->char_moves[p.slot] = p.character_moves;
  888. }
  889. memset(sd->new_name,0,sizeof(sd->new_name));
  890. SqlStmt_Free(stmt);
  891. return j;
  892. }
  893. //=====================================================================================================
  894. int char_mmo_char_fromsql(uint32 char_id, struct mmo_charstatus* p, bool load_everything) {
  895. int i;
  896. struct mmo_charstatus* cp;
  897. SqlStmt* stmt;
  898. char last_map[MAP_NAME_LENGTH_EXT];
  899. char save_map[MAP_NAME_LENGTH_EXT];
  900. char point_map[MAP_NAME_LENGTH_EXT];
  901. struct point tmp_point;
  902. struct s_skill tmp_skill;
  903. uint16 skill_count = 0;
  904. struct s_friend tmp_friend;
  905. #ifdef HOTKEY_SAVING
  906. struct hotkey tmp_hotkey;
  907. int hotkey_num;
  908. #endif
  909. StringBuf msg_buf;
  910. char sex[2];
  911. memset(p, 0, sizeof(struct mmo_charstatus));
  912. if (charserv_config.save_log) ShowInfo("Char load request (%d)\n", char_id);
  913. stmt = SqlStmt_Malloc(sql_handle);
  914. if( stmt == NULL )
  915. {
  916. SqlStmt_ShowDebug(stmt);
  917. return 0;
  918. }
  919. // read char data
  920. if( SQL_ERROR == SqlStmt_Prepare(stmt, "SELECT "
  921. "`char_id`,`account_id`,`char_num`,`name`,`class`,`base_level`,`job_level`,`base_exp`,`job_exp`,`zeny`,"
  922. "`str`,`agi`,`vit`,`int`,`dex`,`luk`,`max_hp`,`hp`,`max_sp`,`sp`,"
  923. "`status_point`,`skill_point`,`option`,`karma`,`manner`,`party_id`,`guild_id`,`pet_id`,`homun_id`,`elemental_id`,`hair`,"
  924. "`hair_color`,`clothes_color`,`body`,`weapon`,`shield`,`head_top`,`head_mid`,`head_bottom`,`last_map`,`last_x`,`last_y`,"
  925. "`save_map`,`save_x`,`save_y`,`partner_id`,`father`,`mother`,`child`,`fame`,`rename`,`delete_date`,`robe`, `moves`,"
  926. "`unban_time`,`font`,`uniqueitem_counter`,`sex`,`hotkey_rowshift`,`clan_id`,`title_id`,`show_equip`"
  927. " FROM `%s` WHERE `char_id`=? LIMIT 1", schema_config.char_db)
  928. || SQL_ERROR == SqlStmt_BindParam(stmt, 0, SQLDT_INT, &char_id, 0)
  929. || SQL_ERROR == SqlStmt_Execute(stmt)
  930. || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &p->char_id, 0, NULL, NULL)
  931. || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_INT, &p->account_id, 0, NULL, NULL)
  932. || SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_UCHAR, &p->slot, 0, NULL, NULL)
  933. || SQL_ERROR == SqlStmt_BindColumn(stmt, 3, SQLDT_STRING, &p->name, sizeof(p->name), NULL, NULL)
  934. || SQL_ERROR == SqlStmt_BindColumn(stmt, 4, SQLDT_SHORT, &p->class_, 0, NULL, NULL)
  935. || SQL_ERROR == SqlStmt_BindColumn(stmt, 5, SQLDT_UINT, &p->base_level, 0, NULL, NULL)
  936. || SQL_ERROR == SqlStmt_BindColumn(stmt, 6, SQLDT_UINT, &p->job_level, 0, NULL, NULL)
  937. || SQL_ERROR == SqlStmt_BindColumn(stmt, 7, SQLDT_UINT, &p->base_exp, 0, NULL, NULL)
  938. || SQL_ERROR == SqlStmt_BindColumn(stmt, 8, SQLDT_UINT, &p->job_exp, 0, NULL, NULL)
  939. || SQL_ERROR == SqlStmt_BindColumn(stmt, 9, SQLDT_INT, &p->zeny, 0, NULL, NULL)
  940. || SQL_ERROR == SqlStmt_BindColumn(stmt, 10, SQLDT_SHORT, &p->str, 0, NULL, NULL)
  941. || SQL_ERROR == SqlStmt_BindColumn(stmt, 11, SQLDT_SHORT, &p->agi, 0, NULL, NULL)
  942. || SQL_ERROR == SqlStmt_BindColumn(stmt, 12, SQLDT_SHORT, &p->vit, 0, NULL, NULL)
  943. || SQL_ERROR == SqlStmt_BindColumn(stmt, 13, SQLDT_SHORT, &p->int_, 0, NULL, NULL)
  944. || SQL_ERROR == SqlStmt_BindColumn(stmt, 14, SQLDT_SHORT, &p->dex, 0, NULL, NULL)
  945. || SQL_ERROR == SqlStmt_BindColumn(stmt, 15, SQLDT_SHORT, &p->luk, 0, NULL, NULL)
  946. || SQL_ERROR == SqlStmt_BindColumn(stmt, 16, SQLDT_INT, &p->max_hp, 0, NULL, NULL)
  947. || SQL_ERROR == SqlStmt_BindColumn(stmt, 17, SQLDT_INT, &p->hp, 0, NULL, NULL)
  948. || SQL_ERROR == SqlStmt_BindColumn(stmt, 18, SQLDT_INT, &p->max_sp, 0, NULL, NULL)
  949. || SQL_ERROR == SqlStmt_BindColumn(stmt, 19, SQLDT_INT, &p->sp, 0, NULL, NULL)
  950. || SQL_ERROR == SqlStmt_BindColumn(stmt, 20, SQLDT_UINT, &p->status_point, 0, NULL, NULL)
  951. || SQL_ERROR == SqlStmt_BindColumn(stmt, 21, SQLDT_UINT, &p->skill_point, 0, NULL, NULL)
  952. || SQL_ERROR == SqlStmt_BindColumn(stmt, 22, SQLDT_UINT, &p->option, 0, NULL, NULL)
  953. || SQL_ERROR == SqlStmt_BindColumn(stmt, 23, SQLDT_UCHAR, &p->karma, 0, NULL, NULL)
  954. || SQL_ERROR == SqlStmt_BindColumn(stmt, 24, SQLDT_SHORT, &p->manner, 0, NULL, NULL)
  955. || SQL_ERROR == SqlStmt_BindColumn(stmt, 25, SQLDT_INT, &p->party_id, 0, NULL, NULL)
  956. || SQL_ERROR == SqlStmt_BindColumn(stmt, 26, SQLDT_INT, &p->guild_id, 0, NULL, NULL)
  957. || SQL_ERROR == SqlStmt_BindColumn(stmt, 27, SQLDT_INT, &p->pet_id, 0, NULL, NULL)
  958. || SQL_ERROR == SqlStmt_BindColumn(stmt, 28, SQLDT_INT, &p->hom_id, 0, NULL, NULL)
  959. || SQL_ERROR == SqlStmt_BindColumn(stmt, 29, SQLDT_INT, &p->ele_id, 0, NULL, NULL)
  960. || SQL_ERROR == SqlStmt_BindColumn(stmt, 30, SQLDT_SHORT, &p->hair, 0, NULL, NULL)
  961. || SQL_ERROR == SqlStmt_BindColumn(stmt, 31, SQLDT_SHORT, &p->hair_color, 0, NULL, NULL)
  962. || SQL_ERROR == SqlStmt_BindColumn(stmt, 32, SQLDT_SHORT, &p->clothes_color, 0, NULL, NULL)
  963. || SQL_ERROR == SqlStmt_BindColumn(stmt, 33, SQLDT_SHORT, &p->body, 0, NULL, NULL)
  964. || SQL_ERROR == SqlStmt_BindColumn(stmt, 34, SQLDT_SHORT, &p->weapon, 0, NULL, NULL)
  965. || SQL_ERROR == SqlStmt_BindColumn(stmt, 35, SQLDT_SHORT, &p->shield, 0, NULL, NULL)
  966. || SQL_ERROR == SqlStmt_BindColumn(stmt, 36, SQLDT_SHORT, &p->head_top, 0, NULL, NULL)
  967. || SQL_ERROR == SqlStmt_BindColumn(stmt, 37, SQLDT_SHORT, &p->head_mid, 0, NULL, NULL)
  968. || SQL_ERROR == SqlStmt_BindColumn(stmt, 38, SQLDT_SHORT, &p->head_bottom, 0, NULL, NULL)
  969. || SQL_ERROR == SqlStmt_BindColumn(stmt, 39, SQLDT_STRING, &last_map, sizeof(last_map), NULL, NULL)
  970. || SQL_ERROR == SqlStmt_BindColumn(stmt, 40, SQLDT_SHORT, &p->last_point.x, 0, NULL, NULL)
  971. || SQL_ERROR == SqlStmt_BindColumn(stmt, 41, SQLDT_SHORT, &p->last_point.y, 0, NULL, NULL)
  972. || SQL_ERROR == SqlStmt_BindColumn(stmt, 42, SQLDT_STRING, &save_map, sizeof(save_map), NULL, NULL)
  973. || SQL_ERROR == SqlStmt_BindColumn(stmt, 43, SQLDT_SHORT, &p->save_point.x, 0, NULL, NULL)
  974. || SQL_ERROR == SqlStmt_BindColumn(stmt, 44, SQLDT_SHORT, &p->save_point.y, 0, NULL, NULL)
  975. || SQL_ERROR == SqlStmt_BindColumn(stmt, 45, SQLDT_UINT32, &p->partner_id, 0, NULL, NULL)
  976. || SQL_ERROR == SqlStmt_BindColumn(stmt, 46, SQLDT_UINT32, &p->father, 0, NULL, NULL)
  977. || SQL_ERROR == SqlStmt_BindColumn(stmt, 47, SQLDT_UINT32, &p->mother, 0, NULL, NULL)
  978. || SQL_ERROR == SqlStmt_BindColumn(stmt, 48, SQLDT_UINT32, &p->child, 0, NULL, NULL)
  979. || SQL_ERROR == SqlStmt_BindColumn(stmt, 49, SQLDT_INT, &p->fame, 0, NULL, NULL)
  980. || SQL_ERROR == SqlStmt_BindColumn(stmt, 50, SQLDT_SHORT, &p->rename, 0, NULL, NULL)
  981. || SQL_ERROR == SqlStmt_BindColumn(stmt, 51, SQLDT_UINT32, &p->delete_date, 0, NULL, NULL)
  982. || SQL_ERROR == SqlStmt_BindColumn(stmt, 52, SQLDT_SHORT, &p->robe, 0, NULL, NULL)
  983. || SQL_ERROR == SqlStmt_BindColumn(stmt, 53, SQLDT_UINT32, &p->character_moves, 0, NULL, NULL)
  984. || SQL_ERROR == SqlStmt_BindColumn(stmt, 54, SQLDT_LONG, &p->unban_time, 0, NULL, NULL)
  985. || SQL_ERROR == SqlStmt_BindColumn(stmt, 55, SQLDT_UCHAR, &p->font, 0, NULL, NULL)
  986. || SQL_ERROR == SqlStmt_BindColumn(stmt, 56, SQLDT_UINT, &p->uniqueitem_counter, 0, NULL, NULL)
  987. || SQL_ERROR == SqlStmt_BindColumn(stmt, 57, SQLDT_ENUM, &sex, sizeof(sex), NULL, NULL)
  988. || SQL_ERROR == SqlStmt_BindColumn(stmt, 58, SQLDT_UCHAR, &p->hotkey_rowshift, 0, NULL, NULL)
  989. || SQL_ERROR == SqlStmt_BindColumn(stmt, 59, SQLDT_INT, &p->clan_id, 0, NULL, NULL)
  990. || SQL_ERROR == SqlStmt_BindColumn(stmt, 60, SQLDT_ULONG, &p->title_id, 0, NULL, NULL)
  991. || SQL_ERROR == SqlStmt_BindColumn(stmt, 61, SQLDT_UINT16, &p->show_equip, 0, NULL, NULL)
  992. )
  993. {
  994. SqlStmt_ShowDebug(stmt);
  995. SqlStmt_Free(stmt);
  996. return 0;
  997. }
  998. if( SQL_ERROR == SqlStmt_NextRow(stmt) )
  999. {
  1000. ShowError("Requested non-existant character id: %d!\n", char_id);
  1001. SqlStmt_Free(stmt);
  1002. return 0;
  1003. }
  1004. p->sex = char_mmo_gender(NULL, p, sex[0]);
  1005. p->last_point.map = mapindex_name2id(last_map);
  1006. p->save_point.map = mapindex_name2id(save_map);
  1007. if( p->last_point.map == 0 ) {
  1008. p->last_point.map = mapindex_name2id(charserv_config.default_map);
  1009. p->last_point.x = charserv_config.default_map_x;
  1010. p->last_point.y = charserv_config.default_map_y;
  1011. }
  1012. if( p->save_point.map == 0 ) {
  1013. p->save_point.map = mapindex_name2id(charserv_config.default_map);
  1014. p->save_point.x = charserv_config.default_map_x;
  1015. p->save_point.y = charserv_config.default_map_y;
  1016. }
  1017. StringBuf_Init(&msg_buf);
  1018. StringBuf_AppendStr(&msg_buf, " status");
  1019. if (!load_everything) // For quick selection of data when displaying the char menu
  1020. {
  1021. SqlStmt_Free(stmt);
  1022. StringBuf_Destroy(&msg_buf);
  1023. return 1;
  1024. }
  1025. //read memo data
  1026. //`memo` (`memo_id`,`char_id`,`map`,`x`,`y`)
  1027. if( SQL_ERROR == SqlStmt_Prepare(stmt, "SELECT `map`,`x`,`y` FROM `%s` WHERE `char_id`=? ORDER by `memo_id` LIMIT %d", schema_config.memo_db, MAX_MEMOPOINTS)
  1028. || SQL_ERROR == SqlStmt_BindParam(stmt, 0, SQLDT_INT, &char_id, 0)
  1029. || SQL_ERROR == SqlStmt_Execute(stmt)
  1030. || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_STRING, &point_map, sizeof(point_map), NULL, NULL)
  1031. || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_SHORT, &tmp_point.x, 0, NULL, NULL)
  1032. || SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_SHORT, &tmp_point.y, 0, NULL, NULL) )
  1033. SqlStmt_ShowDebug(stmt);
  1034. for( i = 0; i < MAX_MEMOPOINTS && SQL_SUCCESS == SqlStmt_NextRow(stmt); ++i )
  1035. {
  1036. tmp_point.map = mapindex_name2id(point_map);
  1037. memcpy(&p->memo_point[i], &tmp_point, sizeof(tmp_point));
  1038. }
  1039. StringBuf_AppendStr(&msg_buf, " memo");
  1040. //read skill
  1041. //`skill` (`char_id`, `id`, `lv`)
  1042. if( SQL_ERROR == SqlStmt_Prepare(stmt, "SELECT `id`, `lv`,`flag` FROM `%s` WHERE `char_id`=? LIMIT %d", schema_config.skill_db, MAX_SKILL)
  1043. || SQL_ERROR == SqlStmt_BindParam(stmt, 0, SQLDT_INT, &char_id, 0)
  1044. || SQL_ERROR == SqlStmt_Execute(stmt)
  1045. || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_UINT16, &tmp_skill.id , 0, NULL, NULL)
  1046. || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_UINT8 , &tmp_skill.lv , 0, NULL, NULL)
  1047. || SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_UINT8 , &tmp_skill.flag, 0, NULL, NULL) )
  1048. SqlStmt_ShowDebug(stmt);
  1049. if( tmp_skill.flag != SKILL_FLAG_PERM_GRANTED )
  1050. tmp_skill.flag = SKILL_FLAG_PERMANENT;
  1051. for( i = 0; skill_count < MAX_SKILL && SQL_SUCCESS == SqlStmt_NextRow(stmt); i++ ) {
  1052. if( tmp_skill.id > 0 && tmp_skill.id < MAX_SKILL_ID ) {
  1053. memcpy(&p->skill[i], &tmp_skill, sizeof(tmp_skill));
  1054. skill_count++;
  1055. }
  1056. else
  1057. ShowWarning("mmo_char_fromsql: ignoring invalid skill (id=%u,lv=%u) of character %s (AID=%d,CID=%d)\n", tmp_skill.id, tmp_skill.lv, p->name, p->account_id, p->char_id);
  1058. }
  1059. StringBuf_Printf(&msg_buf, " %d skills", skill_count);
  1060. //read friends
  1061. //`friends` (`char_id`, `friend_account`, `friend_id`)
  1062. if( SQL_ERROR == SqlStmt_Prepare(stmt, "SELECT c.`account_id`, c.`char_id`, c.`name` FROM `%s` c LEFT JOIN `%s` f ON f.`friend_account` = c.`account_id` AND f.`friend_id` = c.`char_id` WHERE f.`char_id`=? LIMIT %d", schema_config.char_db, schema_config.friend_db, MAX_FRIENDS)
  1063. || SQL_ERROR == SqlStmt_BindParam(stmt, 0, SQLDT_INT, &char_id, 0)
  1064. || SQL_ERROR == SqlStmt_Execute(stmt)
  1065. || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &tmp_friend.account_id, 0, NULL, NULL)
  1066. || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_INT, &tmp_friend.char_id, 0, NULL, NULL)
  1067. || SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_STRING, &tmp_friend.name, sizeof(tmp_friend.name), NULL, NULL) )
  1068. SqlStmt_ShowDebug(stmt);
  1069. for( i = 0; i < MAX_FRIENDS && SQL_SUCCESS == SqlStmt_NextRow(stmt); ++i )
  1070. memcpy(&p->friends[i], &tmp_friend, sizeof(tmp_friend));
  1071. StringBuf_AppendStr(&msg_buf, " friends");
  1072. #ifdef HOTKEY_SAVING
  1073. //read hotkeys
  1074. //`hotkey` (`char_id`, `hotkey`, `type`, `itemskill_id`, `skill_lvl`
  1075. if( SQL_ERROR == SqlStmt_Prepare(stmt, "SELECT `hotkey`, `type`, `itemskill_id`, `skill_lvl` FROM `%s` WHERE `char_id`=?", schema_config.hotkey_db)
  1076. || SQL_ERROR == SqlStmt_BindParam(stmt, 0, SQLDT_INT, &char_id, 0)
  1077. || SQL_ERROR == SqlStmt_Execute(stmt)
  1078. || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &hotkey_num, 0, NULL, NULL)
  1079. || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_UCHAR, &tmp_hotkey.type, 0, NULL, NULL)
  1080. || SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_UINT, &tmp_hotkey.id, 0, NULL, NULL)
  1081. || SQL_ERROR == SqlStmt_BindColumn(stmt, 3, SQLDT_USHORT, &tmp_hotkey.lv, 0, NULL, NULL) )
  1082. SqlStmt_ShowDebug(stmt);
  1083. while( SQL_SUCCESS == SqlStmt_NextRow(stmt) )
  1084. {
  1085. if( hotkey_num >= 0 && hotkey_num < MAX_HOTKEYS )
  1086. memcpy(&p->hotkeys[hotkey_num], &tmp_hotkey, sizeof(tmp_hotkey));
  1087. else
  1088. ShowWarning("mmo_char_fromsql: ignoring invalid hotkey (hotkey=%d,type=%u,id=%u,lv=%u) of character %s (AID=%d,CID=%d)\n", hotkey_num, tmp_hotkey.type, tmp_hotkey.id, tmp_hotkey.lv, p->name, p->account_id, p->char_id);
  1089. }
  1090. StringBuf_AppendStr(&msg_buf, " hotkeys");
  1091. #endif
  1092. /* Mercenary Owner DataBase */
  1093. mercenary_owner_fromsql(char_id, p);
  1094. StringBuf_AppendStr(&msg_buf, " mercenary");
  1095. if (charserv_config.save_log)
  1096. ShowInfo("Loaded char (%d - %s): %s\n", char_id, p->name, StringBuf_Value(&msg_buf)); //ok. all data load successfully!
  1097. SqlStmt_Free(stmt);
  1098. cp = (struct mmo_charstatus *)idb_ensure(char_db_, char_id, char_create_charstatus);
  1099. memcpy(cp, p, sizeof(struct mmo_charstatus));
  1100. StringBuf_Destroy(&msg_buf);
  1101. return 1;
  1102. }
  1103. //==========================================================================================================
  1104. int char_mmo_sql_init(void) {
  1105. char_db_= idb_alloc(DB_OPT_RELEASE_DATA);
  1106. ShowStatus("Characters per Account: '%d'.\n", charserv_config.char_config.char_per_account);
  1107. //the 'set offline' part is now in check_login_conn ...
  1108. //if the server connects to loginserver
  1109. //it will dc all off players
  1110. //and send the loginserver the new state....
  1111. // Force all users offline in sql when starting char-server
  1112. // (useful when servers crashs and don't clean the database)
  1113. char_set_all_offline_sql();
  1114. return 0;
  1115. }
  1116. //-----------------------------------
  1117. // Function to change chararcter's names
  1118. //-----------------------------------
  1119. int char_rename_char_sql(struct char_session_data *sd, uint32 char_id)
  1120. {
  1121. struct mmo_charstatus char_dat;
  1122. char esc_name[NAME_LENGTH*2+1];
  1123. if( sd->new_name[0] == 0 ) // Not ready for rename
  1124. return 2;
  1125. if( !char_mmo_char_fromsql(char_id, &char_dat, false) ) // Only the short data is needed.
  1126. return 2;
  1127. // If the new name is exactly the same as the old one
  1128. if( !strcmp( sd->new_name, char_dat.name ) )
  1129. return 0;
  1130. if( char_dat.rename == 0 )
  1131. return 1;
  1132. if( !charserv_config.char_config.char_rename_party && char_dat.party_id ){
  1133. return 6;
  1134. }
  1135. if( !charserv_config.char_config.char_rename_guild && char_dat.guild_id ){
  1136. return 5;
  1137. }
  1138. Sql_EscapeStringLen(sql_handle, esc_name, sd->new_name, strnlen(sd->new_name, NAME_LENGTH));
  1139. switch( char_check_char_name( sd->new_name, esc_name ) ){
  1140. case 0:
  1141. break;
  1142. case -1:
  1143. // character already exists
  1144. return 4;
  1145. default:
  1146. return 8;
  1147. }
  1148. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `name` = '%s', `rename` = '%d' WHERE `char_id` = '%d'", schema_config.char_db, esc_name, --char_dat.rename, char_id) )
  1149. {
  1150. Sql_ShowDebug(sql_handle);
  1151. return 3;
  1152. }
  1153. // Update party and party members with the new player name
  1154. if( char_dat.party_id )
  1155. inter_party_charname_changed(char_dat.party_id, char_id, sd->new_name);
  1156. // Change character's name into guild_db.
  1157. if( char_dat.guild_id )
  1158. inter_guild_charname_changed(char_dat.guild_id, sd->account_id, char_id, sd->new_name);
  1159. safestrncpy(char_dat.name, sd->new_name, NAME_LENGTH);
  1160. memset(sd->new_name,0,sizeof(sd->new_name));
  1161. // log change
  1162. if( charserv_config.log_char )
  1163. {
  1164. if( SQL_ERROR == Sql_Query(sql_handle, "INSERT INTO `%s` (`time`, `char_msg`,`account_id`,`char_num`,`name`,`str`,`agi`,`vit`,`int`,`dex`,`luk`,`hair`,`hair_color`)"
  1165. "VALUES (NOW(), '%s', '%d', '%d', '%s', '0', '0', '0', '0', '0', '0', '0', '0')",
  1166. schema_config.charlog_db, "change char name", sd->account_id, char_dat.slot, esc_name) )
  1167. Sql_ShowDebug(sql_handle);
  1168. }
  1169. return 0;
  1170. }
  1171. int char_check_char_name(char * name, char * esc_name)
  1172. {
  1173. int i;
  1174. // check length of character name
  1175. if( name[0] == '\0' )
  1176. return -2; // empty character name
  1177. /**
  1178. * The client does not allow you to create names with less than 4 characters, however,
  1179. * the use of WPE can bypass this, and this fixes the exploit.
  1180. **/
  1181. if( strlen( name ) < 4 )
  1182. return -2;
  1183. // check content of character name
  1184. if( remove_control_chars(name) )
  1185. return -2; // control chars in name
  1186. // check for reserved names
  1187. if( strcmpi(name, charserv_config.wisp_server_name) == 0 )
  1188. return -1; // nick reserved for internal server messages
  1189. // check for the channel symbol
  1190. if( name[0] == '#' )
  1191. return -2;
  1192. // Check Authorised letters/symbols in the name of the character
  1193. if( charserv_config.char_config.char_name_option == 1 )
  1194. { // only letters/symbols in char_name_letters are authorised
  1195. for( i = 0; i < NAME_LENGTH && name[i]; i++ )
  1196. if( strchr(charserv_config.char_config.char_name_letters, name[i]) == NULL )
  1197. return -2;
  1198. }
  1199. else if( charserv_config.char_config.char_name_option == 2 )
  1200. { // letters/symbols in char_name_letters are forbidden
  1201. for( i = 0; i < NAME_LENGTH && name[i]; i++ )
  1202. if( strchr(charserv_config.char_config.char_name_letters, name[i]) != NULL )
  1203. return -2;
  1204. }
  1205. if( charserv_config.char_config.name_ignoring_case ) {
  1206. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE BINARY `name` = '%s' LIMIT 1", schema_config.char_db, esc_name) ) {
  1207. Sql_ShowDebug(sql_handle);
  1208. return -2;
  1209. }
  1210. } else {
  1211. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE `name` = '%s' LIMIT 1", schema_config.char_db, esc_name) ) {
  1212. Sql_ShowDebug(sql_handle);
  1213. return -2;
  1214. }
  1215. }
  1216. if( Sql_NumRows(sql_handle) > 0 )
  1217. return -1; // name already exists
  1218. return 0;
  1219. }
  1220. //-----------------------------------
  1221. // Function to create a new character
  1222. //-----------------------------------
  1223. #if PACKETVER >= 20120307
  1224. #if PACKETVER >= 20151001
  1225. int char_make_new_char_sql(struct char_session_data* sd, char* name_, int slot, int hair_color, int hair_style, short start_job, short unknown, int sex) { // TODO: Unknown byte
  1226. #else
  1227. int char_make_new_char_sql(struct char_session_data* sd, char* name_, int slot, int hair_color, int hair_style) {
  1228. #endif
  1229. int str = 1, agi = 1, vit = 1, int_ = 1, dex = 1, luk = 1;
  1230. #else
  1231. int char_make_new_char_sql(struct char_session_data* sd, char* name_, int str, int agi, int vit, int int_, int dex, int luk, int slot, int hair_color, int hair_style) {
  1232. #endif
  1233. char name[NAME_LENGTH];
  1234. char esc_name[NAME_LENGTH*2+1];
  1235. struct point tmp_start_point[MAX_STARTPOINT];
  1236. struct startitem tmp_start_items[MAX_STARTITEM];
  1237. uint32 char_id;
  1238. int flag, k, start_point_idx = rnd() % charserv_config.start_point_count;
  1239. safestrncpy(name, name_, NAME_LENGTH);
  1240. normalize_name(name,TRIM_CHARS);
  1241. Sql_EscapeStringLen(sql_handle, esc_name, name, strnlen(name, NAME_LENGTH));
  1242. memset(tmp_start_point, 0, MAX_STARTPOINT * sizeof(struct point));
  1243. memset(tmp_start_items, 0, MAX_STARTITEM * sizeof(struct startitem));
  1244. memcpy(tmp_start_point, charserv_config.start_point, MAX_STARTPOINT * sizeof(struct point));
  1245. memcpy(tmp_start_items, charserv_config.start_items, MAX_STARTITEM * sizeof(struct startitem));
  1246. flag = char_check_char_name(name,esc_name);
  1247. if( flag < 0 )
  1248. return flag;
  1249. //check other inputs
  1250. #if PACKETVER >= 20120307
  1251. #if PACKETVER >= 20151001
  1252. switch(sex) {
  1253. case SEX_FEMALE:
  1254. sex = 'F';
  1255. break;
  1256. case SEX_MALE:
  1257. sex = 'M';
  1258. break;
  1259. default:
  1260. sex = 'U';
  1261. break;
  1262. }
  1263. #endif
  1264. if(slot < 0 || slot >= sd->char_slots)
  1265. #else
  1266. if((slot < 0 || slot >= sd->char_slots) // slots
  1267. || (str + agi + vit + int_ + dex + luk != 6*5 ) // stats
  1268. || (str < 1 || str > 9 || agi < 1 || agi > 9 || vit < 1 || vit > 9 || int_ < 1 || int_ > 9 || dex < 1 || dex > 9 || luk < 1 || luk > 9) // individual stat values
  1269. || (str + int_ != 10 || agi + luk != 10 || vit + dex != 10) ) // pairs
  1270. #endif
  1271. #if PACKETVER >= 20100413
  1272. return -4; // invalid slot
  1273. #else
  1274. return -2; // invalid input
  1275. #endif
  1276. // check the number of already existing chars in this account
  1277. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE `account_id` = '%d'", schema_config.char_db, sd->account_id) )
  1278. Sql_ShowDebug(sql_handle);
  1279. if( Sql_NumRows(sql_handle) >= sd->char_slots )
  1280. return -2; // character account limit exceeded
  1281. // check char slot
  1282. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE `account_id` = '%d' AND `char_num` = '%d' LIMIT 1", schema_config.char_db, sd->account_id, slot) )
  1283. Sql_ShowDebug(sql_handle);
  1284. if( Sql_NumRows(sql_handle) > 0 )
  1285. return -2; // slot already in use
  1286. // validation success, log result
  1287. if (charserv_config.log_char) {
  1288. if( SQL_ERROR == Sql_Query(sql_handle, "INSERT INTO `%s` (`time`, `char_msg`,`account_id`,`char_num`,`name`,`str`,`agi`,`vit`,`int`,`dex`,`luk`,`hair`,`hair_color`)"
  1289. "VALUES (NOW(), '%s', '%d', '%d', '%s', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d')",
  1290. schema_config.charlog_db, "make new char", sd->account_id, slot, esc_name, str, agi, vit, int_, dex, luk, hair_style, hair_color) )
  1291. Sql_ShowDebug(sql_handle);
  1292. }
  1293. #if PACKETVER >= 20151001
  1294. if (start_job != JOB_NOVICE && start_job != JOB_SUMMONER)
  1295. return -2; // Invalid job
  1296. // Check for Doram based information.
  1297. if (start_job == JOB_SUMMONER) { // Check for just this job for now.
  1298. memset(tmp_start_point, 0, MAX_STARTPOINT * sizeof(struct point));
  1299. memset(tmp_start_items, 0, MAX_STARTITEM * sizeof(struct startitem));
  1300. memcpy(tmp_start_point, charserv_config.start_point_doram, MAX_STARTPOINT * sizeof(struct point));
  1301. memcpy(tmp_start_items, charserv_config.start_items_doram, MAX_STARTITEM * sizeof(struct startitem));
  1302. start_point_idx = rnd() % charserv_config.start_point_count_doram;
  1303. }
  1304. #endif
  1305. //Insert the new char entry to the database
  1306. #if PACKETVER >= 20151001
  1307. if( SQL_ERROR == Sql_Query(sql_handle, "INSERT INTO `%s` (`account_id`, `char_num`, `name`, `class`, `zeny`, `status_point`, `str`, `agi`, `vit`, `int`, `dex`, `luk`, `max_hp`, `hp`,"
  1308. "`max_sp`, `sp`, `hair`, `hair_color`, `last_map`, `last_x`, `last_y`, `save_map`, `save_x`, `save_y`, `sex`) VALUES ("
  1309. "'%d', '%d', '%s', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%s', '%d', '%d', '%s', '%d', '%d', '%c')",
  1310. schema_config.char_db, sd->account_id , slot, esc_name, start_job, charserv_config.start_zeny, 48, str, agi, vit, int_, dex, luk,
  1311. (40 * (100 + vit)/100) , (40 * (100 + vit)/100 ), (11 * (100 + int_)/100), (11 * (100 + int_)/100), hair_style, hair_color,
  1312. mapindex_id2name(tmp_start_point[start_point_idx].map), tmp_start_point[start_point_idx].x, tmp_start_point[start_point_idx].y, mapindex_id2name(tmp_start_point[start_point_idx].map), tmp_start_point[start_point_idx].x, tmp_start_point[start_point_idx].y, sex) )
  1313. #elif PACKETVER >= 20120307
  1314. if( SQL_ERROR == Sql_Query(sql_handle, "INSERT INTO `%s` (`account_id`, `char_num`, `name`, `zeny`, `status_point`, `str`, `agi`, `vit`, `int`, `dex`, `luk`, `max_hp`, `hp`,"
  1315. "`max_sp`, `sp`, `hair`, `hair_color`, `last_map`, `last_x`, `last_y`, `save_map`, `save_x`, `save_y`) VALUES ("
  1316. "'%d', '%d', '%s', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%s', '%d', '%d', '%s', '%d', '%d')",
  1317. schema_config.char_db, sd->account_id , slot, esc_name, charserv_config.start_zeny, 48, str, agi, vit, int_, dex, luk,
  1318. (40 * (100 + vit)/100) , (40 * (100 + vit)/100 ), (11 * (100 + int_)/100), (11 * (100 + int_)/100), hair_style, hair_color,
  1319. mapindex_id2name(tmp_start_point[start_point_idx].map), tmp_start_point[start_point_idx].x, tmp_start_point[start_point_idx].y, mapindex_id2name(tmp_start_point[start_point_idx].map), tmp_start_point[start_point_idx].x, tmp_start_point[start_point_idx].y) )
  1320. #else
  1321. if( SQL_ERROR == Sql_Query(sql_handle, "INSERT INTO `%s` (`account_id`, `char_num`, `name`, `zeny`, `str`, `agi`, `vit`, `int`, `dex`, `luk`, `max_hp`, `hp`,"
  1322. "`max_sp`, `sp`, `hair`, `hair_color`, `last_map`, `last_x`, `last_y`, `save_map`, `save_x`, `save_y`) VALUES ("
  1323. "'%d', '%d', '%s', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%d', '%s', '%d', '%d', '%s', '%d', '%d')",
  1324. schema_config.char_db, sd->account_id , slot, esc_name, charserv_config.start_zeny, str, agi, vit, int_, dex, luk,
  1325. (40 * (100 + vit)/100) , (40 * (100 + vit)/100 ), (11 * (100 + int_)/100), (11 * (100 + int_)/100), hair_style, hair_color,
  1326. mapindex_id2name(tmp_start_point[start_point_idx].map), tmp_start_point[start_point_idx].x, tmp_start_point[start_point_idx].y, mapindex_id2name(tmp_start_point[start_point_idx].map), tmp_start_point[start_point_idx].x, tmp_start_point[start_point_idx].y) )
  1327. #endif
  1328. {
  1329. Sql_ShowDebug(sql_handle);
  1330. return -2; //No, stop the procedure!
  1331. }
  1332. //Retrieve the newly auto-generated char id
  1333. char_id = (int)Sql_LastInsertId(sql_handle);
  1334. //Give the char the default items
  1335. for (k = 0; k <= MAX_STARTITEM && tmp_start_items[k].nameid != 0; k++) {
  1336. if( SQL_ERROR == Sql_Query(sql_handle, "INSERT INTO `%s` (`char_id`,`nameid`, `amount`, `equip`, `identify`) VALUES ('%d', '%hu', '%hu', '%hu', '%d')", schema_config.inventory_db, char_id, tmp_start_items[k].nameid, tmp_start_items[k].amount, tmp_start_items[k].pos, 1) )
  1337. Sql_ShowDebug(sql_handle);
  1338. }
  1339. ShowInfo("Created char: account: %d, char: %d, slot: %d, name: %s\n", sd->account_id, char_id, slot, name);
  1340. return char_id;
  1341. }
  1342. /*----------------------------------------------------------------------------------------------------------*/
  1343. /* Divorce Players */
  1344. /*----------------------------------------------------------------------------------------------------------*/
  1345. int char_divorce_char_sql(int partner_id1, int partner_id2){
  1346. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `partner_id`='0' WHERE `char_id`='%d' OR `char_id`='%d' LIMIT 2", schema_config.char_db, partner_id1, partner_id2) )
  1347. Sql_ShowDebug(sql_handle);
  1348. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE (`nameid`='%hu' OR `nameid`='%hu') AND (`char_id`='%d' OR `char_id`='%d') LIMIT 2", schema_config.inventory_db, WEDDING_RING_M, WEDDING_RING_F, partner_id1, partner_id2) )
  1349. Sql_ShowDebug(sql_handle);
  1350. chmapif_send_ackdivorce(partner_id1, partner_id2);
  1351. return 0;
  1352. }
  1353. /*----------------------------------------------------------------------------------------------------------*/
  1354. /* Delete char - davidsiaw */
  1355. /*----------------------------------------------------------------------------------------------------------*/
  1356. /* Returns 0 if successful
  1357. * Returns < 0 for error
  1358. */
  1359. enum e_char_del_response char_delete(struct char_session_data* sd, uint32 char_id){
  1360. char name[NAME_LENGTH];
  1361. char esc_name[NAME_LENGTH*2+1]; //Name needs be escaped.
  1362. uint32 account_id;
  1363. int party_id, guild_id, hom_id, base_level, partner_id, father_id, mother_id, elemental_id;
  1364. time_t delete_date;
  1365. char *data;
  1366. size_t len;
  1367. int i, k;
  1368. ARR_FIND(0, MAX_CHARS, i, sd->found_char[i] == char_id);
  1369. // Such a character does not exist in the account
  1370. if (i == MAX_CHARS) {
  1371. ShowInfo("Char deletion aborted: %s, Account ID: %u, Character ID: %u\n", name, sd->account_id, char_id);
  1372. return CHAR_DELETE_NOTFOUND;
  1373. }
  1374. if (SQL_ERROR == Sql_Query(sql_handle, "SELECT `name`,`account_id`,`party_id`,`guild_id`,`base_level`,`homun_id`,`partner_id`,`father`,`mother`,`elemental_id`,`delete_date` FROM `%s` WHERE `account_id`='%u' AND `char_id`='%u'", schema_config.char_db, sd->account_id, char_id)){
  1375. Sql_ShowDebug(sql_handle);
  1376. return CHAR_DELETE_DATABASE;
  1377. }
  1378. if( SQL_SUCCESS != Sql_NextRow(sql_handle) )
  1379. {
  1380. ShowInfo("Char deletion aborted: %s, Account ID: %u, Character ID: %u\n", name, sd->account_id, char_id);
  1381. Sql_FreeResult(sql_handle);
  1382. return CHAR_DELETE_NOTFOUND;
  1383. }
  1384. Sql_GetData(sql_handle, 0, &data, &len); safestrncpy(name, data, NAME_LENGTH);
  1385. Sql_GetData(sql_handle, 1, &data, NULL); account_id = atoi(data);
  1386. Sql_GetData(sql_handle, 2, &data, NULL); party_id = atoi(data);
  1387. Sql_GetData(sql_handle, 3, &data, NULL); guild_id = atoi(data);
  1388. Sql_GetData(sql_handle, 4, &data, NULL); base_level = atoi(data);
  1389. Sql_GetData(sql_handle, 5, &data, NULL); hom_id = atoi(data);
  1390. Sql_GetData(sql_handle, 6, &data, NULL); partner_id = atoi(data);
  1391. Sql_GetData(sql_handle, 7, &data, NULL); father_id = atoi(data);
  1392. Sql_GetData(sql_handle, 8, &data, NULL); mother_id = atoi(data);
  1393. Sql_GetData(sql_handle, 9, &data, NULL); elemental_id = atoi(data);
  1394. Sql_GetData(sql_handle,10, &data, NULL); delete_date = strtoul(data, NULL, 10);
  1395. Sql_EscapeStringLen(sql_handle, esc_name, name, zmin(len, NAME_LENGTH));
  1396. Sql_FreeResult(sql_handle);
  1397. //check for config char del condition [Lupus]
  1398. if( ( charserv_config.char_config.char_del_level > 0 && base_level >= charserv_config.char_config.char_del_level )
  1399. || ( charserv_config.char_config.char_del_level < 0 && base_level <= -charserv_config.char_config.char_del_level )
  1400. ) {
  1401. ShowInfo("Char deletion aborted: %s, BaseLevel: %i\n", name, base_level);
  1402. return CHAR_DELETE_BASELEVEL;
  1403. }
  1404. if (charserv_config.char_config.char_del_restriction&CHAR_DEL_RESTRICT_GUILD && guild_id) // character is in guild
  1405. {
  1406. ShowInfo("Char deletion aborted: %s, Guild ID: %i\n", name, guild_id);
  1407. return CHAR_DELETE_GUILD;
  1408. }
  1409. if (charserv_config.char_config.char_del_restriction&CHAR_DEL_RESTRICT_PARTY && party_id) // character is in party
  1410. {
  1411. ShowInfo("Char deletion aborted: %s, Party ID: %i\n", name, party_id);
  1412. return CHAR_DELETE_PARTY;
  1413. }
  1414. if( charserv_config.char_config.char_del_delay > 0 && ( !delete_date || delete_date > time(NULL) ) ){ // not queued or delay not yet passed
  1415. ShowInfo("Char deletion aborted: %s, Time was not set or has not been reached ye\n", name );
  1416. return CHAR_DELETE_TIME;
  1417. }
  1418. /* Divorce [Wizputer] */
  1419. if( partner_id )
  1420. char_divorce_char_sql(char_id, partner_id);
  1421. /* De-addopt [Zephyrus] */
  1422. if( father_id || mother_id )
  1423. { // Char is Baby
  1424. unsigned char buf[64];
  1425. if( SQL_ERROR == Sql_Query(sql_handle, "UPDATE `%s` SET `child`='0' WHERE `char_id`='%d' OR `char_id`='%d'", schema_config.char_db, father_id, mother_id) )
  1426. Sql_ShowDebug(sql_handle);
  1427. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `id` = '410' AND (`char_id`='%d' OR `char_id`='%d')", schema_config.skill_db, father_id, mother_id) )
  1428. Sql_ShowDebug(sql_handle);
  1429. WBUFW(buf,0) = 0x2b25;
  1430. WBUFL(buf,2) = father_id;
  1431. WBUFL(buf,6) = mother_id;
  1432. WBUFL(buf,10) = char_id; // Baby
  1433. chmapif_sendall(buf,14);
  1434. }
  1435. //Make the character leave the party [Skotlex]
  1436. if (party_id)
  1437. inter_party_leave(party_id, account_id, char_id, name);
  1438. /* delete char's pet */
  1439. //Delete the hatched pet if you have one...
  1440. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d' AND `incubate` = '0'", schema_config.pet_db, char_id) )
  1441. Sql_ShowDebug(sql_handle);
  1442. //Delete all pets that are stored in eggs (inventory + cart)
  1443. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` USING `%s` JOIN `%s` ON `pet_id` = `card1`|`card2`<<16 WHERE `%s`.char_id = '%d' AND card0 = 256", schema_config.pet_db, schema_config.pet_db, schema_config.inventory_db, schema_config.inventory_db, char_id) )
  1444. Sql_ShowDebug(sql_handle);
  1445. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` USING `%s` JOIN `%s` ON `pet_id` = `card1`|`card2`<<16 WHERE `%s`.char_id = '%d' AND card0 = 256", schema_config.pet_db, schema_config.pet_db, schema_config.cart_db, schema_config.cart_db, char_id) )
  1446. Sql_ShowDebug(sql_handle);
  1447. /* remove homunculus */
  1448. if( hom_id )
  1449. mapif_homunculus_delete(hom_id);
  1450. /* remove elemental */
  1451. if (elemental_id)
  1452. mapif_elemental_delete(elemental_id);
  1453. /* remove mercenary data */
  1454. mercenary_owner_delete(char_id);
  1455. /* delete char's friends list */
  1456. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id` = '%d'", schema_config.friend_db, char_id) )
  1457. Sql_ShowDebug(sql_handle);
  1458. /* delete char from other's friend list */
  1459. //NOTE: Won't this cause problems for people who are already online? [Skotlex]
  1460. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `friend_id` = '%d'", schema_config.friend_db, char_id) )
  1461. Sql_ShowDebug(sql_handle);
  1462. #ifdef HOTKEY_SAVING
  1463. /* delete hotkeys */
  1464. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.hotkey_db, char_id) )
  1465. Sql_ShowDebug(sql_handle);
  1466. #endif
  1467. /* delete inventory */
  1468. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.inventory_db, char_id) )
  1469. Sql_ShowDebug(sql_handle);
  1470. /* delete cart inventory */
  1471. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.cart_db, char_id) )
  1472. Sql_ShowDebug(sql_handle);
  1473. /* delete memo areas */
  1474. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.memo_db, char_id) )
  1475. Sql_ShowDebug(sql_handle);
  1476. /* delete character registry */
  1477. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.char_reg_str_table, char_id) )
  1478. Sql_ShowDebug(sql_handle);
  1479. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.char_reg_num_table, char_id) )
  1480. Sql_ShowDebug(sql_handle);
  1481. /* delete skills */
  1482. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.skill_db, char_id) )
  1483. Sql_ShowDebug(sql_handle);
  1484. /* delete mail attachments (only received) */
  1485. if (SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `id` IN ( SELECT `id` FROM `%s` WHERE `dest_id`='%d' )", schema_config.mail_attachment_db, schema_config.mail_db, char_id))
  1486. Sql_ShowDebug(sql_handle);
  1487. /* delete mails (only received) */
  1488. if (SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `dest_id`='%d'", schema_config.mail_db, char_id))
  1489. Sql_ShowDebug(sql_handle);
  1490. #ifdef ENABLE_SC_SAVING
  1491. /* status changes */
  1492. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `account_id` = '%d' AND `char_id`='%d'", schema_config.scdata_db, account_id, char_id) )
  1493. Sql_ShowDebug(sql_handle);
  1494. #endif
  1495. /* bonus_scripts */
  1496. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id` = '%d'", schema_config.bonus_script_db, char_id) )
  1497. Sql_ShowDebug(sql_handle);
  1498. /* Achievement Data */
  1499. if (SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id` = '%d'", schema_config.achievement_table, char_id))
  1500. Sql_ShowDebug(sql_handle);
  1501. if (charserv_config.log_char) {
  1502. if( SQL_ERROR == Sql_Query(sql_handle, "INSERT INTO `%s`(`time`, `account_id`,`char_num`,`char_msg`,`name`) VALUES (NOW(), '%d', '%d', 'Deleted char (CID %d)', '%s')",
  1503. schema_config.charlog_db, account_id, 0, char_id, esc_name) )
  1504. Sql_ShowDebug(sql_handle);
  1505. }
  1506. /* delete character */
  1507. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", schema_config.char_db, char_id) )
  1508. Sql_ShowDebug(sql_handle);
  1509. /* No need as we used inter_guild_leave [Skotlex]
  1510. // Also delete info from guildtables.
  1511. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `char_id`='%d'", guild_member_db, char_id) )
  1512. Sql_ShowDebug(sql_handle);
  1513. */
  1514. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `guild_id` FROM `%s` WHERE `char_id` = '%d'", schema_config.guild_db, char_id) )
  1515. Sql_ShowDebug(sql_handle);
  1516. else if( Sql_NumRows(sql_handle) > 0 )
  1517. mapif_parse_BreakGuild(0,guild_id);
  1518. else if( guild_id )
  1519. inter_guild_leave(guild_id, account_id, char_id);// Leave your guild.
  1520. // refresh character list cache
  1521. for(k = i; k < MAX_CHARS-1; k++){
  1522. sd->found_char[k] = sd->found_char[k+1];
  1523. }
  1524. sd->found_char[MAX_CHARS-1] = -1;
  1525. return CHAR_DELETE_OK;
  1526. }
  1527. /**
  1528. * This function parse all map-serv attached to this char-serv and increase user count
  1529. * @return numbers of total users
  1530. */
  1531. int char_count_users(void)
  1532. {
  1533. int i, users;
  1534. users = 0;
  1535. for(i = 0; i < ARRAYLENGTH(map_server); i++) {
  1536. if (map_server[i].fd > 0) {
  1537. users += map_server[i].users;
  1538. }
  1539. }
  1540. return users;
  1541. }
  1542. // Writes char data to the buffer in the format used by the client.
  1543. // Used in packets 0x6b (chars info) and 0x6d (new char info)
  1544. // Returns the size
  1545. int char_mmo_char_tobuf(uint8* buffer, struct mmo_charstatus* p)
  1546. {
  1547. unsigned short offset = 0;
  1548. uint8* buf;
  1549. if( buffer == NULL || p == NULL )
  1550. return 0;
  1551. buf = WBUFP(buffer,0);
  1552. WBUFL(buf,0) = p->char_id;
  1553. WBUFL(buf,4) = umin(p->base_exp, INT32_MAX);
  1554. WBUFL(buf,8) = p->zeny;
  1555. WBUFL(buf,12) = umin(p->job_exp, INT32_MAX);
  1556. WBUFL(buf,16) = p->job_level;
  1557. WBUFL(buf,20) = 0; // probably opt1
  1558. WBUFL(buf,24) = 0; // probably opt2
  1559. WBUFL(buf,28) = p->option;
  1560. WBUFL(buf,32) = p->karma;
  1561. WBUFL(buf,36) = p->manner;
  1562. WBUFW(buf,40) = umin(p->status_point, INT16_MAX);
  1563. WBUFL(buf,42) = p->hp;
  1564. WBUFL(buf,46) = p->max_hp;
  1565. offset+=4;
  1566. buf = WBUFP(buffer,offset);
  1567. WBUFW(buf,46) = min(p->sp, INT16_MAX);
  1568. WBUFW(buf,48) = min(p->max_sp, INT16_MAX);
  1569. WBUFW(buf,50) = DEFAULT_WALK_SPEED; // p->speed;
  1570. WBUFW(buf,52) = p->class_;
  1571. WBUFW(buf,54) = p->hair;
  1572. #if PACKETVER >= 20141022
  1573. WBUFW(buf,56) = p->body;
  1574. offset+=2;
  1575. buf = WBUFP(buffer,offset);
  1576. #endif
  1577. //When the weapon is sent and your option is riding, the client crashes on login!?
  1578. WBUFW(buf,56) = p->option&(0x20|0x80000|0x100000|0x200000|0x400000|0x800000|0x1000000|0x2000000|0x4000000|0x8000000) ? 0 : p->weapon;
  1579. WBUFW(buf,58) = p->base_level;
  1580. WBUFW(buf,60) = umin(p->skill_point, INT16_MAX);
  1581. WBUFW(buf,62) = p->head_bottom;
  1582. WBUFW(buf,64) = p->shield;
  1583. WBUFW(buf,66) = p->head_top;
  1584. WBUFW(buf,68) = p->head_mid;
  1585. WBUFW(buf,70) = p->hair_color;
  1586. WBUFW(buf,72) = p->clothes_color;
  1587. memcpy(WBUFP(buf,74), p->name, NAME_LENGTH);
  1588. WBUFB(buf,98) = (unsigned char)u16min(p->str, UINT8_MAX);
  1589. WBUFB(buf,99) = (unsigned char)u16min(p->agi, UINT8_MAX);
  1590. WBUFB(buf,100) = (unsigned char)u16min(p->vit, UINT8_MAX);
  1591. WBUFB(buf,101) = (unsigned char)u16min(p->int_, UINT8_MAX);
  1592. WBUFB(buf,102) = (unsigned char)u16min(p->dex, UINT8_MAX);
  1593. WBUFB(buf,103) = (unsigned char)u16min(p->luk, UINT8_MAX);
  1594. WBUFW(buf,104) = p->slot;
  1595. WBUFW(buf,106) = ( p->rename > 0 ) ? 0 : 1;
  1596. offset += 2;
  1597. #if (PACKETVER >= 20100720 && PACKETVER <= 20100727) || PACKETVER >= 20100803
  1598. mapindex_getmapname_ext(mapindex_id2name(p->last_point.map), WBUFCP(buf,108));
  1599. offset += MAP_NAME_LENGTH_EXT;
  1600. #endif
  1601. #if PACKETVER >= 20100803
  1602. #if PACKETVER_CHAR_DELETEDATE
  1603. WBUFL(buf,124) = (p->delete_date?TOL(p->delete_date-time(NULL)):0);
  1604. #else
  1605. WBUFL(buf,124) = TOL(p->delete_date);
  1606. #endif
  1607. offset += 4;
  1608. #endif
  1609. #if PACKETVER >= 20110111
  1610. WBUFL(buf,128) = p->robe;
  1611. offset += 4;
  1612. #endif
  1613. #if PACKETVER != 20111116 //2011-11-16 wants 136, ask gravity.
  1614. #if PACKETVER >= 20110928
  1615. // change slot feature (0 = disabled, otherwise enabled)
  1616. if( (charserv_config.charmove_config.char_move_enabled)==0 )
  1617. WBUFL(buf,132) = 0;
  1618. else if( charserv_config.charmove_config.char_moves_unlimited )
  1619. WBUFL(buf,132) = 1;
  1620. else
  1621. WBUFL(buf,132) = max( 0, (int)p->character_moves );
  1622. offset += 4;
  1623. #endif
  1624. #if PACKETVER >= 20111025
  1625. WBUFL(buf,136) = ( p->rename > 0 ) ? 1 : 0; // (0 = disabled, otherwise displays "Add-Ons" sidebar)
  1626. offset += 4;
  1627. #endif
  1628. #if PACKETVER >= 20141016
  1629. WBUFB(buf,140) = p->sex;// sex - (0 = female, 1 = male, 99 = logindefined)
  1630. offset += 1;
  1631. #endif
  1632. #endif
  1633. return 106+offset;
  1634. }
  1635. int char_married(int pl1, int pl2)
  1636. {
  1637. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `partner_id` FROM `%s` WHERE `char_id` = '%d'", schema_config.char_db, pl1) )
  1638. Sql_ShowDebug(sql_handle);
  1639. else if( SQL_SUCCESS == Sql_NextRow(sql_handle) )
  1640. {
  1641. char* data;
  1642. Sql_GetData(sql_handle, 0, &data, NULL);
  1643. if( pl2 == atoi(data) )
  1644. {
  1645. Sql_FreeResult(sql_handle);
  1646. return 1;
  1647. }
  1648. }
  1649. Sql_FreeResult(sql_handle);
  1650. return 0;
  1651. }
  1652. int char_child(int parent_id, int child_id)
  1653. {
  1654. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `child` FROM `%s` WHERE `char_id` = '%d'", schema_config.char_db, parent_id) )
  1655. Sql_ShowDebug(sql_handle);
  1656. else if( SQL_SUCCESS == Sql_NextRow(sql_handle) )
  1657. {
  1658. char* data;
  1659. Sql_GetData(sql_handle, 0, &data, NULL);
  1660. if( child_id == atoi(data) )
  1661. {
  1662. Sql_FreeResult(sql_handle);
  1663. return 1;
  1664. }
  1665. }
  1666. Sql_FreeResult(sql_handle);
  1667. return 0;
  1668. }
  1669. int char_family(int cid1, int cid2, int cid3)
  1670. {
  1671. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`partner_id`,`child` FROM `%s` WHERE `char_id` IN ('%d','%d','%d')", schema_config.char_db, cid1, cid2, cid3) )
  1672. Sql_ShowDebug(sql_handle);
  1673. else while( SQL_SUCCESS == Sql_NextRow(sql_handle) )
  1674. {
  1675. int charid;
  1676. int partnerid;
  1677. int childid;
  1678. char* data;
  1679. Sql_GetData(sql_handle, 0, &data, NULL); charid = atoi(data);
  1680. Sql_GetData(sql_handle, 1, &data, NULL); partnerid = atoi(data);
  1681. Sql_GetData(sql_handle, 2, &data, NULL); childid = atoi(data);
  1682. if( (cid1 == charid && ((cid2 == partnerid && cid3 == childid ) || (cid2 == childid && cid3 == partnerid))) ||
  1683. (cid1 == partnerid && ((cid2 == charid && cid3 == childid ) || (cid2 == childid && cid3 == charid ))) ||
  1684. (cid1 == childid && ((cid2 == charid && cid3 == partnerid) || (cid2 == partnerid && cid3 == charid ))) )
  1685. {
  1686. Sql_FreeResult(sql_handle);
  1687. return childid;
  1688. }
  1689. }
  1690. Sql_FreeResult(sql_handle);
  1691. return 0;
  1692. }
  1693. //----------------------------------------------------------------------
  1694. // Force disconnection of an online player (with account value) by [Yor]
  1695. //----------------------------------------------------------------------
  1696. void char_disconnect_player(uint32 account_id)
  1697. {
  1698. int i;
  1699. struct char_session_data* sd;
  1700. // disconnect player if online on char-server
  1701. ARR_FIND( 0, fd_max, i, session[i] && (sd = (struct char_session_data*)session[i]->session_data) && sd->account_id == account_id );
  1702. if( i < fd_max )
  1703. set_eof(i);
  1704. }
  1705. /**
  1706. * Set 'flag' value of char_session_data
  1707. * @param account_id
  1708. * @param value
  1709. * @param set True: set the value by using '|= val', False: unset the value by using '&= ~val'
  1710. **/
  1711. void char_set_session_flag_(int account_id, int val, bool set) {
  1712. int i;
  1713. struct char_session_data* sd;
  1714. ARR_FIND(0, fd_max, i, session[i] && (sd = (struct char_session_data*)session[i]->session_data) && sd->account_id == account_id);
  1715. if (i < fd_max) {
  1716. if (set)
  1717. sd->flag |= val;
  1718. else
  1719. sd->flag &= ~val;
  1720. }
  1721. }
  1722. void char_auth_ok(int fd, struct char_session_data *sd) {
  1723. struct online_char_data* character;
  1724. if( (character = (struct online_char_data*)idb_get(online_char_db, sd->account_id)) != NULL )
  1725. { // check if character is not online already. [Skotlex]
  1726. if (character->server > -1)
  1727. { //Character already online. KICK KICK KICK
  1728. mapif_disconnectplayer(map_server[character->server].fd, character->account_id, character->char_id, 2);
  1729. if (character->waiting_disconnect == INVALID_TIMER)
  1730. character->waiting_disconnect = add_timer(gettick()+20000, char_chardb_waiting_disconnect, character->account_id, 0);
  1731. chclif_send_auth_result(fd,8);
  1732. return;
  1733. }
  1734. if (character->fd >= 0 && character->fd != fd)
  1735. { //There's already a connection from this account that hasn't picked a char yet.
  1736. chclif_send_auth_result(fd,8);
  1737. return;
  1738. }
  1739. character->fd = fd;
  1740. }
  1741. chlogif_send_reqaccdata(login_fd,sd); // request account data
  1742. // mark session as 'authed'
  1743. sd->auth = true;
  1744. // set char online on charserver
  1745. char_set_charselect(sd->account_id);
  1746. // continues when account data is received...
  1747. }
  1748. void char_read_fame_list(void)
  1749. {
  1750. int i;
  1751. char* data;
  1752. size_t len;
  1753. // Empty ranking lists
  1754. memset(smith_fame_list, 0, sizeof(smith_fame_list));
  1755. memset(chemist_fame_list, 0, sizeof(chemist_fame_list));
  1756. memset(taekwon_fame_list, 0, sizeof(taekwon_fame_list));
  1757. // Build Blacksmith ranking list
  1758. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`fame`,`name` FROM `%s` WHERE `fame`>0 AND (`class`='%d' OR `class`='%d' OR `class`='%d' OR `class`='%d' OR `class`='%d' OR `class`='%d') ORDER BY `fame` DESC LIMIT 0,%d", schema_config.char_db, JOB_BLACKSMITH, JOB_WHITESMITH, JOB_BABY_BLACKSMITH, JOB_MECHANIC, JOB_MECHANIC_T, JOB_BABY_MECHANIC, fame_list_size_smith) )
  1759. Sql_ShowDebug(sql_handle);
  1760. for( i = 0; i < fame_list_size_smith && SQL_SUCCESS == Sql_NextRow(sql_handle); ++i )
  1761. {
  1762. // char_id
  1763. Sql_GetData(sql_handle, 0, &data, NULL);
  1764. smith_fame_list[i].id = atoi(data);
  1765. // fame
  1766. Sql_GetData(sql_handle, 1, &data, &len);
  1767. smith_fame_list[i].fame = atoi(data);
  1768. // name
  1769. Sql_GetData(sql_handle, 2, &data, &len);
  1770. memcpy(smith_fame_list[i].name, data, zmin(len, NAME_LENGTH));
  1771. }
  1772. // Build Alchemist ranking list
  1773. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`fame`,`name` FROM `%s` WHERE `fame`>0 AND (`class`='%d' OR `class`='%d' OR `class`='%d' OR `class`='%d' OR `class`='%d' OR `class`='%d') ORDER BY `fame` DESC LIMIT 0,%d", schema_config.char_db, JOB_ALCHEMIST, JOB_CREATOR, JOB_BABY_ALCHEMIST, JOB_GENETIC, JOB_GENETIC_T, JOB_BABY_GENETIC, fame_list_size_chemist) )
  1774. Sql_ShowDebug(sql_handle);
  1775. for( i = 0; i < fame_list_size_chemist && SQL_SUCCESS == Sql_NextRow(sql_handle); ++i )
  1776. {
  1777. // char_id
  1778. Sql_GetData(sql_handle, 0, &data, NULL);
  1779. chemist_fame_list[i].id = atoi(data);
  1780. // fame
  1781. Sql_GetData(sql_handle, 1, &data, &len);
  1782. chemist_fame_list[i].fame = atoi(data);
  1783. // name
  1784. Sql_GetData(sql_handle, 2, &data, &len);
  1785. memcpy(chemist_fame_list[i].name, data, zmin(len, NAME_LENGTH));
  1786. }
  1787. // Build Taekwon ranking list
  1788. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`fame`,`name` FROM `%s` WHERE `fame`>0 AND (`class`='%d' OR `class`='%d') ORDER BY `fame` DESC LIMIT 0,%d", schema_config.char_db, JOB_TAEKWON, JOB_BABY_TAEKWON, fame_list_size_taekwon) )
  1789. Sql_ShowDebug(sql_handle);
  1790. for( i = 0; i < fame_list_size_taekwon && SQL_SUCCESS == Sql_NextRow(sql_handle); ++i )
  1791. {
  1792. // char_id
  1793. Sql_GetData(sql_handle, 0, &data, NULL);
  1794. taekwon_fame_list[i].id = atoi(data);
  1795. // fame
  1796. Sql_GetData(sql_handle, 1, &data, &len);
  1797. taekwon_fame_list[i].fame = atoi(data);
  1798. // name
  1799. Sql_GetData(sql_handle, 2, &data, &len);
  1800. memcpy(taekwon_fame_list[i].name, data, zmin(len, NAME_LENGTH));
  1801. }
  1802. Sql_FreeResult(sql_handle);
  1803. }
  1804. //Loads a character's name and stores it in the buffer given (must be NAME_LENGTH in size)
  1805. //Returns 1 on found, 0 on not found (buffer is filled with Unknown char name)
  1806. int char_loadName(uint32 char_id, char* name){
  1807. char* data;
  1808. size_t len;
  1809. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `name` FROM `%s` WHERE `char_id`='%d'", schema_config.char_db, char_id) )
  1810. Sql_ShowDebug(sql_handle);
  1811. else if( SQL_SUCCESS == Sql_NextRow(sql_handle) )
  1812. {
  1813. Sql_GetData(sql_handle, 0, &data, &len);
  1814. safestrncpy(name, data, NAME_LENGTH);
  1815. return 1;
  1816. }
  1817. else
  1818. {
  1819. safestrncpy(name, charserv_config.char_config.unknown_char_name, NAME_LENGTH);
  1820. }
  1821. return 0;
  1822. }
  1823. // Searches for the mapserver that has a given map (and optionally ip/port, if not -1).
  1824. // If found, returns the server's index in the 'server' array (otherwise returns -1).
  1825. int char_search_mapserver(unsigned short map, uint32 ip, uint16 port){
  1826. int i, j;
  1827. for(i = 0; i < ARRAYLENGTH(map_server); i++)
  1828. {
  1829. if (map_server[i].fd > 0
  1830. && (ip == (uint32)-1 || map_server[i].ip == ip)
  1831. && (port == (uint16)-1 || map_server[i].port == port))
  1832. {
  1833. for (j = 0; map_server[i].map[j]; j++)
  1834. if (map_server[i].map[j] == map)
  1835. return i;
  1836. }
  1837. }
  1838. return -1;
  1839. }
  1840. /**
  1841. * Test to know if an IP come from LAN or WAN.
  1842. * @param ip: ip to check if in auth network
  1843. * @return 0 if from wan, or subnet_map_ip if lan
  1844. **/
  1845. int char_lan_subnetcheck(uint32 ip){
  1846. int i;
  1847. ARR_FIND( 0, subnet_count, i, (subnet[i].char_ip & subnet[i].mask) == (ip & subnet[i].mask) );
  1848. if( i < subnet_count ) {
  1849. ShowInfo("Subnet check [%u.%u.%u.%u]: Matches " CL_CYAN "%u.%u.%u.%u/%u.%u.%u.%u" CL_RESET"\n", CONVIP(ip), CONVIP(subnet[i].char_ip & subnet[i].mask), CONVIP(subnet[i].mask));
  1850. return subnet[i].map_ip;
  1851. } else {
  1852. ShowInfo("Subnet check [%u.%u.%u.%u]: " CL_CYAN "WAN" CL_RESET "\n", CONVIP(ip));
  1853. return 0;
  1854. }
  1855. }
  1856. // Console Command Parser [Wizputer]
  1857. //FIXME to be remove (moved to cnslif / will be done once map/char/login, all have their cnslif interface ready)
  1858. int parse_console(const char* buf){
  1859. return cnslif_parse(buf);
  1860. }
  1861. #if PACKETVER_SUPPORTS_PINCODE
  1862. //------------------------------------------------
  1863. //Pincode system
  1864. //------------------------------------------------
  1865. int char_pincode_compare( int fd, struct char_session_data* sd, char* pin ){
  1866. if( strcmp( sd->pincode, pin ) == 0 ){
  1867. sd->pincode_try = 0;
  1868. return 1;
  1869. }else{
  1870. chclif_pincode_sendstate( fd, sd, PINCODE_WRONG );
  1871. if( charserv_config.pincode_config.pincode_maxtry && ++sd->pincode_try >= charserv_config.pincode_config.pincode_maxtry ){
  1872. chlogif_pincode_notifyLoginPinError( sd->account_id );
  1873. }
  1874. return 0;
  1875. }
  1876. }
  1877. void char_pincode_decrypt( uint32 userSeed, char* pin ){
  1878. int i;
  1879. char tab[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
  1880. char *buf;
  1881. for( i = 1; i < 10; i++ ){
  1882. int pos;
  1883. uint32 multiplier = 0x3498, baseSeed = 0x881234;
  1884. userSeed = baseSeed + userSeed * multiplier;
  1885. pos = userSeed % ( i + 1 );
  1886. if( i != pos ){
  1887. tab[i] ^= tab[pos];
  1888. tab[pos] ^= tab[i];
  1889. tab[i] ^= tab[pos];
  1890. }
  1891. }
  1892. buf = (char *)aMalloc( sizeof(char) * ( PINCODE_LENGTH + 1 ) );
  1893. memset( buf, 0, PINCODE_LENGTH + 1 );
  1894. for( i = 0; i < PINCODE_LENGTH; i++ ){
  1895. sprintf( buf + i, "%d", tab[pin[i] - '0'] );
  1896. }
  1897. strcpy( pin, buf );
  1898. aFree( buf );
  1899. }
  1900. #endif
  1901. //------------------------------------------------
  1902. //Invoked 15 seconds after mapif_disconnectplayer in case the map server doesn't
  1903. //replies/disconnect the player we tried to kick. [Skotlex]
  1904. //------------------------------------------------
  1905. int char_chardb_waiting_disconnect(int tid, unsigned int tick, int id, intptr_t data)
  1906. {
  1907. struct online_char_data* character;
  1908. if ((character = (struct online_char_data*)idb_get(online_char_db, id)) != NULL && character->waiting_disconnect == tid)
  1909. { //Mark it offline due to timeout.
  1910. character->waiting_disconnect = INVALID_TIMER;
  1911. char_set_char_offline(character->char_id, character->account_id);
  1912. }
  1913. return 0;
  1914. }
  1915. /**
  1916. * @see DBApply
  1917. */
  1918. static int char_online_data_cleanup_sub(DBKey key, DBData *data, va_list ap)
  1919. {
  1920. struct online_char_data *character= (struct online_char_data *)db_data2ptr(data);
  1921. if (character->fd != -1)
  1922. return 0; //Character still connected
  1923. if (character->server == -2) //Unknown server.. set them offline
  1924. char_set_char_offline(character->char_id, character->account_id);
  1925. if (character->server < 0)
  1926. //Free data from players that have not been online for a while.
  1927. db_remove(online_char_db, key);
  1928. return 0;
  1929. }
  1930. static int char_online_data_cleanup(int tid, unsigned int tick, int id, intptr_t data){
  1931. online_char_db->foreach(online_char_db, char_online_data_cleanup_sub);
  1932. return 0;
  1933. }
  1934. static int char_clan_member_cleanup( int tid, unsigned int tick, int id, intptr_t data ){
  1935. // Auto removal is disabled
  1936. if( charserv_config.clan_remove_inactive_days <= 0 ){
  1937. return 0;
  1938. }
  1939. if( SQL_ERROR == Sql_Query( sql_handle, "UPDATE `%s` SET `clan_id`='0' WHERE `online`='0' AND `clan_id`<>'0' AND `last_login` IS NOT NULL AND `last_login` <= NOW() - INTERVAL %d DAY", schema_config.char_db, charserv_config.clan_remove_inactive_days ) ){
  1940. Sql_ShowDebug(sql_handle);
  1941. }
  1942. return 0;
  1943. }
  1944. //----------------------------------
  1945. // Reading Lan Support configuration
  1946. // Rewrote: Anvanced subnet check [LuzZza]
  1947. //----------------------------------
  1948. int char_lan_config_read(const char *lancfgName) {
  1949. FILE *fp;
  1950. int line_num = 0, s_subnet=ARRAYLENGTH(subnet);
  1951. char line[1024], w1[64], w2[64], w3[64], w4[64];
  1952. if((fp = fopen(lancfgName, "r")) == NULL) {
  1953. ShowWarning("LAN Support configuration file is not found: %s\n", lancfgName);
  1954. return 1;
  1955. }
  1956. while(fgets(line, sizeof(line), fp)) {
  1957. line_num++;
  1958. if ((line[0] == '/' && line[1] == '/') || line[0] == '\n' || line[1] == '\n')
  1959. continue;
  1960. if(sscanf(line,"%63[^:]: %63[^:]:%63[^:]:%63[^\r\n]", w1, w2, w3, w4) != 4) {
  1961. ShowWarning("Error syntax of configuration file %s in line %d.\n", lancfgName, line_num);
  1962. continue;
  1963. }
  1964. remove_control_chars(w1);
  1965. remove_control_chars(w2);
  1966. remove_control_chars(w3);
  1967. remove_control_chars(w4);
  1968. if( strcmpi(w1, "subnet") == 0 ){
  1969. if(subnet_count>=s_subnet) { //We skip instead of break in case we want to add other conf in that file.
  1970. ShowError("%s: Too many subnets defined, skipping line %d...\n", lancfgName, line_num);
  1971. continue;
  1972. }
  1973. subnet[subnet_count].mask = str2ip(w2);
  1974. subnet[subnet_count].char_ip = str2ip(w3);
  1975. subnet[subnet_count].map_ip = str2ip(w4);
  1976. if( (subnet[subnet_count].char_ip & subnet[subnet_count].mask) != (subnet[subnet_count].map_ip & subnet[subnet_count].mask) )
  1977. {
  1978. ShowError("%s: Configuration Error: The char server (%s) and map server (%s) belong to different subnetworks!\n", lancfgName, w3, w4);
  1979. continue;
  1980. }
  1981. subnet_count++;
  1982. }
  1983. }
  1984. if( subnet_count > 1 ) /* only useful if there is more than 1 */
  1985. ShowStatus("Read information about %d subnetworks.\n", subnet_count);
  1986. fclose(fp);
  1987. return 0;
  1988. }
  1989. /**
  1990. * Check if our table are all ok in sqlserver
  1991. * Char tables to check
  1992. * @return 0:fail, 1:success
  1993. */
  1994. bool char_checkdb(void){
  1995. int i;
  1996. const char* sqltable[] = {
  1997. schema_config.char_db, schema_config.hotkey_db, schema_config.scdata_db, schema_config.cart_db,
  1998. schema_config.inventory_db, schema_config.charlog_db,
  1999. schema_config.char_reg_str_table, schema_config.char_reg_num_table, schema_config.acc_reg_str_table,
  2000. schema_config.acc_reg_num_table, schema_config.skill_db, schema_config.interlog_db, schema_config.memo_db,
  2001. schema_config.guild_db, schema_config.guild_alliance_db, schema_config.guild_castle_db,
  2002. schema_config.guild_expulsion_db, schema_config.guild_member_db,
  2003. schema_config.guild_skill_db, schema_config.guild_position_db, schema_config.guild_storage_db,
  2004. schema_config.party_db, schema_config.pet_db, schema_config.friend_db, schema_config.mail_db,
  2005. schema_config.auction_db, schema_config.quest_db, schema_config.homunculus_db, schema_config.skill_homunculus_db,
  2006. schema_config.mercenary_db, schema_config.mercenary_owner_db,
  2007. schema_config.elemental_db, schema_config.ragsrvinfo_db, schema_config.skillcooldown_db, schema_config.bonus_script_db,
  2008. schema_config.clan_table, schema_config.clan_alliance_table, schema_config.mail_attachment_db, schema_config.achievement_table
  2009. };
  2010. ShowInfo("Start checking DB integrity\n");
  2011. for (i=0; i<ARRAYLENGTH(sqltable); i++){ //check if they all exist and we can acces them in sql-server
  2012. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` LIMIT 1;", sqltable[i]) ){
  2013. Sql_ShowDebug(sql_handle);
  2014. return false;
  2015. }
  2016. }
  2017. //checking char_db
  2018. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`account_id`,`char_num`,`name`,`class`,"
  2019. "`base_level`,`job_level`,`base_exp`,`job_exp`,`zeny`,`str`,`agi`,`vit`,`int`,`dex`,`luk`,"
  2020. "`max_hp`,`hp`,`max_sp`,`sp`,`status_point`,`skill_point`,`option`,`karma`,`manner`,`party_id`,"
  2021. "`guild_id`,`pet_id`,`homun_id`,`elemental_id`,`hair`,`hair_color`,`clothes_color`,`weapon`,"
  2022. "`shield`,`head_top`,`head_mid`,`head_bottom`,`robe`,`last_map`,`last_x`,`last_y`,`save_map`,"
  2023. "`save_x`,`save_y`,`partner_id`,`online`,`father`,`mother`,`child`,`fame`,`rename`,`delete_date`,"
  2024. "`moves`,`unban_time`,`font`,`sex`,`hotkey_rowshift`,`clan_id`,`last_login`,`title_id`,`show_equip`"
  2025. " FROM `%s` LIMIT 1;", schema_config.char_db) ){
  2026. Sql_ShowDebug(sql_handle);
  2027. return false;
  2028. }
  2029. //checking charlog_db
  2030. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `time`,`char_msg`,`account_id`,`char_num`,`name`,"
  2031. "`str`,`agi`,`vit`,`int`,`dex`,`luk`,`hair`,`hair_color`"
  2032. " FROM `%s` LIMIT 1;", schema_config.charlog_db) ){
  2033. Sql_ShowDebug(sql_handle);
  2034. return false;
  2035. }
  2036. //checking char_reg_str_table
  2037. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`key`,`index`,`value` from `%s` LIMIT 1;", schema_config.char_reg_str_table) ) {
  2038. Sql_ShowDebug(sql_handle);
  2039. return false;
  2040. }
  2041. //checking char_reg_num_table
  2042. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`key`,`index`,`value` from `%s` LIMIT 1;", schema_config.char_reg_num_table) ) {
  2043. Sql_ShowDebug(sql_handle);
  2044. return false;
  2045. }
  2046. //checking global_acc_reg_str_table
  2047. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `account_id`,`key`,`index`,`value` from `%s` LIMIT 1;", schema_config.acc_reg_str_table) ) {
  2048. Sql_ShowDebug(sql_handle);
  2049. return false;
  2050. }
  2051. //checking global_acc_reg_num_table
  2052. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `account_id`,`key`,`index`,`value` from `%s` LIMIT 1;", schema_config.acc_reg_num_table) ) {
  2053. Sql_ShowDebug(sql_handle);
  2054. return false;
  2055. }
  2056. //checking hotkey_db
  2057. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`hotkey`,`type`,`itemskill_id`,`skill_lvl`"
  2058. " FROM `%s` LIMIT 1;", schema_config.hotkey_db) ){
  2059. Sql_ShowDebug(sql_handle);
  2060. return false;
  2061. }
  2062. //checking scdata_db
  2063. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `account_id`,`char_id`,`type`,`tick`,`val1`,`val2`,`val3`,`val4`"
  2064. " FROM `%s` LIMIT 1;", schema_config.scdata_db) ){
  2065. Sql_ShowDebug(sql_handle);
  2066. return false;
  2067. }
  2068. //checking skill_db
  2069. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`id`,`lv`,`flag` FROM `%s` LIMIT 1;", schema_config.skill_db) ){
  2070. Sql_ShowDebug(sql_handle);
  2071. return false;
  2072. }
  2073. //checking interlog_db
  2074. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `time`,`log` FROM `%s` LIMIT 1;", schema_config.interlog_db) ){
  2075. Sql_ShowDebug(sql_handle);
  2076. return false;
  2077. }
  2078. //checking memo_db
  2079. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `memo_id`,`char_id`,`map`,`x`,`y` FROM `%s` LIMIT 1;", schema_config.memo_db) ){
  2080. Sql_ShowDebug(sql_handle);
  2081. return false;
  2082. }
  2083. //checking guild_db
  2084. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `guild_id`,`name`,`char_id`,`master`,`guild_lv`,"
  2085. "`connect_member`,`max_member`,`average_lv`,`exp`,`next_exp`,`skill_point`,`mes1`,`mes2`,"
  2086. "`emblem_len`,`emblem_id`,`emblem_data`,`last_master_change`"
  2087. " FROM `%s` LIMIT 1;", schema_config.guild_db) ){
  2088. Sql_ShowDebug(sql_handle);
  2089. return false;
  2090. }
  2091. //checking guild_alliance_db
  2092. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `guild_id`,`opposition`,`alliance_id`,`name` FROM `%s` LIMIT 1;", schema_config.guild_alliance_db) ){
  2093. Sql_ShowDebug(sql_handle);
  2094. return false;
  2095. }
  2096. //checking guild_castle_db
  2097. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `castle_id`,`guild_id`,`economy`,`defense`,`triggerE`,"
  2098. "`triggerD`,`nextTime`,`payTime`,`createTime`,`visibleC`,`visibleG0`,`visibleG1`,`visibleG2`,"
  2099. "`visibleG3`,`visibleG4`,`visibleG5`,`visibleG6`,`visibleG7` "
  2100. " FROM `%s` LIMIT 1;", schema_config.guild_castle_db) ){
  2101. Sql_ShowDebug(sql_handle);
  2102. return false;
  2103. }
  2104. //checking guild_expulsion_db
  2105. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `guild_id`,`account_id`,`name`,`mes` FROM `%s` LIMIT 1;", schema_config.guild_expulsion_db) ){
  2106. Sql_ShowDebug(sql_handle);
  2107. return false;
  2108. }
  2109. //checking guild_member_db
  2110. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `guild_id`,`account_id`,`char_id`,`hair`,"
  2111. "`hair_color`,`gender`,`class`,`lv`,`exp`,`exp_payper`,`online`,`position`,`name`"
  2112. " FROM `%s` LIMIT 1;", schema_config.guild_member_db) ){
  2113. Sql_ShowDebug(sql_handle);
  2114. return false;
  2115. }
  2116. //checking guild_skill_db
  2117. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `guild_id`,`id`,`lv` FROM `%s` LIMIT 1;", schema_config.guild_skill_db) ){
  2118. Sql_ShowDebug(sql_handle);
  2119. return false;
  2120. }
  2121. //checking guild_position_db
  2122. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `guild_id`,`position`,`name`,`mode`,`exp_mode` FROM `%s` LIMIT 1;", schema_config.guild_position_db) ){
  2123. Sql_ShowDebug(sql_handle);
  2124. return false;
  2125. }
  2126. //checking party_db
  2127. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `party_id`,`name`,`exp`,`item`,`leader_id`,`leader_char` FROM `%s` LIMIT 1;", schema_config.party_db) ){
  2128. Sql_ShowDebug(sql_handle);
  2129. return false;
  2130. }
  2131. //checking pet_db
  2132. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `pet_id`,`class`,`name`,`account_id`,`char_id`,`level`,"
  2133. "`egg_id`,`equip`,`intimate`,`hungry`,`rename_flag`,`incubate`"
  2134. " FROM `%s` LIMIT 1;", schema_config.pet_db) ){
  2135. Sql_ShowDebug(sql_handle);
  2136. return false;
  2137. }
  2138. //checking friend_db
  2139. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`friend_account`,`friend_id` FROM `%s` LIMIT 1;", schema_config.friend_db) ){
  2140. Sql_ShowDebug(sql_handle);
  2141. return false;
  2142. }
  2143. //checking mail_db
  2144. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `id`,`send_name`,`send_id`,`dest_name`,`dest_id`,"
  2145. "`title`,`message`,`time`,`status`,`zeny`,`type`"
  2146. " FROM `%s` LIMIT 1;", schema_config.mail_db) ){
  2147. Sql_ShowDebug(sql_handle);
  2148. return false;
  2149. }
  2150. //checking mail_attachment_db
  2151. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `id`,`index`,`nameid`,`amount`,`refine`,`attribute`,`identify`,"
  2152. "`card0`,`card1`,`card2`,`card3`,`option_id0`,`option_val0`,`option_parm0`,`option_id1`,`option_val1`,`option_parm1`,`option_id2`,`option_val2`,`option_parm2`,`option_id3`,`option_val3`,`option_parm3`,`option_id4`,`option_val4`,`option_parm4`,`unique_id`, `bound`"
  2153. " FROM `%s` LIMIT 1;", schema_config.mail_attachment_db) ){
  2154. Sql_ShowDebug(sql_handle);
  2155. return false;
  2156. }
  2157. //checking auction_db
  2158. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `auction_id`,`seller_id`,`seller_name`,`buyer_id`,`buyer_name`,"
  2159. "`price`,`buynow`,`hours`,`timestamp`,`nameid`,`item_name`,`type`,`refine`,`attribute`,`card0`,`card1`,"
  2160. "`card2`,`card3`,`option_id0`,`option_val0`,`option_parm0`,`option_id1`,`option_val1`,`option_parm1`,`option_id2`,`option_val2`,`option_parm2`,`option_id3`,`option_val3`,`option_parm3`,`option_id4`,`option_val4`,`option_parm4`,`unique_id` "
  2161. "FROM `%s` LIMIT 1;", schema_config.auction_db) ){
  2162. Sql_ShowDebug(sql_handle);
  2163. return false;
  2164. }
  2165. //checking quest_db
  2166. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`quest_id`,`state`,`time`,`count1`,`count2`,`count3` from `%s`;", schema_config.quest_db) ){
  2167. Sql_ShowDebug(sql_handle);
  2168. return false;
  2169. }
  2170. //checking homunculus_db
  2171. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `homun_id`,`char_id`,`class`,`prev_class`,`name`,`level`,`exp`,`intimacy`,`hunger`,"
  2172. "`str`,`agi`,`vit`,`int`,`dex`,`luk`,`hp`,`max_hp`,`sp`,`max_sp`,`skill_point`,`alive`,`rename_flag`,`vaporize` "
  2173. " FROM `%s` LIMIT 1;", schema_config.homunculus_db) ){
  2174. Sql_ShowDebug(sql_handle);
  2175. return false;
  2176. }
  2177. //checking skill_homunculus_db
  2178. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `homun_id`,`id`,`lv` FROM `%s` LIMIT 1;", schema_config.skill_homunculus_db) ){
  2179. Sql_ShowDebug(sql_handle);
  2180. return false;
  2181. }
  2182. //checking mercenary_db
  2183. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `mer_id`,`char_id`,`class`,`hp`,`sp`,`kill_counter`,`life_time` FROM `%s` LIMIT 1;", schema_config.mercenary_db) ){
  2184. Sql_ShowDebug(sql_handle);
  2185. return false;
  2186. }
  2187. //checking mercenary_owner_db
  2188. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`merc_id`,`arch_calls`,`arch_faith`,"
  2189. "`spear_calls`,`spear_faith`,`sword_calls`,`sword_faith`"
  2190. " FROM `%s` LIMIT 1;", schema_config.mercenary_owner_db) ){
  2191. Sql_ShowDebug(sql_handle);
  2192. return false;
  2193. }
  2194. //checking elemental_db
  2195. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `ele_id`,`char_id`,`class`,`mode`,`hp`,`sp`,`max_hp`,`max_sp`,"
  2196. "`atk1`,`atk2`,`matk`,`aspd`,`def`,`mdef`,`flee`,`hit`,`life_time` "
  2197. " FROM `%s` LIMIT 1;", schema_config.elemental_db) ){
  2198. Sql_ShowDebug(sql_handle);
  2199. return false;
  2200. }
  2201. //checking ragsrvinfo_db
  2202. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `index`,`name`,`exp`,`jexp`,`drop` FROM `%s` LIMIT 1;", schema_config.ragsrvinfo_db) ){
  2203. Sql_ShowDebug(sql_handle);
  2204. return false;
  2205. }
  2206. //checking skillcooldown_db
  2207. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `account_id`,`char_id`,`skill`,`tick` FROM `%s` LIMIT 1;", schema_config.skillcooldown_db) ){
  2208. Sql_ShowDebug(sql_handle);
  2209. return false;
  2210. }
  2211. //checking bonus_script_db
  2212. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`script`,`tick`,`flag`,`type`,`icon` FROM `%s` LIMIT 1;", schema_config.bonus_script_db) ){
  2213. Sql_ShowDebug(sql_handle);
  2214. return false;
  2215. }
  2216. //checking cart_db
  2217. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `id`,`char_id`,`nameid`,`amount`,`equip`,`identify`,`refine`,"
  2218. "`attribute`,`card0`,`card1`,`card2`,`card3`,`option_id0`,`option_val0`,`option_parm0`,`option_id1`,`option_val1`,`option_parm1`,`option_id2`,`option_val2`,`option_parm2`,`option_id3`,`option_val3`,`option_parm3`,`option_id4`,`option_val4`,`option_parm4`,`expire_time`,`bound`,`unique_id`"
  2219. " FROM `%s` LIMIT 1;", schema_config.cart_db) ){
  2220. Sql_ShowDebug(sql_handle);
  2221. return false;
  2222. }
  2223. //checking inventory_db
  2224. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `id`,`char_id`,`nameid`,`amount`,`equip`,`identify`,`refine`,"
  2225. "`attribute`,`card0`,`card1`,`card2`,`card3`,`option_id0`,`option_val0`,`option_parm0`,`option_id1`,`option_val1`,`option_parm1`,`option_id2`,`option_val2`,`option_parm2`,`option_id3`,`option_val3`,`option_parm3`,`option_id4`,`option_val4`,`option_parm4`,`expire_time`,`favorite`,`bound`,`unique_id`"
  2226. " FROM `%s` LIMIT 1;", schema_config.inventory_db) ){
  2227. Sql_ShowDebug(sql_handle);
  2228. return false;
  2229. }
  2230. //checking guild_storage_db
  2231. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `id`,`guild_id`,`nameid`,`amount`,`equip`,`identify`,`refine`,"
  2232. "`attribute`,`card0`,`card1`,`card2`,`card3`,`option_id0`,`option_val0`,`option_parm0`,`option_id1`,`option_val1`,`option_parm1`,`option_id2`,`option_val2`,`option_parm2`,`option_id3`,`option_val3`,`option_parm3`,`option_id4`,`option_val4`,`option_parm4`,`expire_time`,`bound`,`unique_id`"
  2233. " FROM `%s` LIMIT 1;", schema_config.guild_storage_db) ){
  2234. Sql_ShowDebug(sql_handle);
  2235. return false;
  2236. }
  2237. //checking clan table
  2238. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `clan_id`,`name`,`master`,`mapname`,`max_member`"
  2239. " FROM `%s` LIMIT 1;", schema_config.clan_table) ){
  2240. Sql_ShowDebug(sql_handle);
  2241. return false;
  2242. }
  2243. //checking clan alliance table
  2244. if( SQL_ERROR == Sql_Query(sql_handle, "SELECT `clan_id`,`opposition`,`alliance_id`,`name`"
  2245. " FROM `%s` LIMIT 1;", schema_config.clan_alliance_table) ){
  2246. Sql_ShowDebug(sql_handle);
  2247. return false;
  2248. }
  2249. //checking achievement_table
  2250. if (SQL_ERROR == Sql_Query(sql_handle, "SELECT `char_id`,`id`,`count1`,`count2`,`count3`,`count4`,`count5`,`count6`,`count7`,`count8`,`count9`,`count10`,`completed`,`rewarded`"
  2251. " FROM `%s` LIMIT 1;", schema_config.achievement_table)) {
  2252. Sql_ShowDebug(sql_handle);
  2253. return false;
  2254. }
  2255. Sql_FreeResult(sql_handle);
  2256. ShowInfo("DB integrity check finished with success\n");
  2257. return true;
  2258. }
  2259. void char_sql_config_read(const char* cfgName) {
  2260. char line[1024], w1[1024], w2[1024];
  2261. FILE* fp;
  2262. if ((fp = fopen(cfgName, "r")) == NULL) {
  2263. ShowError("File not found: %s\n", cfgName);
  2264. return;
  2265. }
  2266. while(fgets(line, sizeof(line), fp)) {
  2267. if(line[0] == '/' && line[1] == '/')
  2268. continue;
  2269. if (sscanf(line, "%1023[^:]: %1023[^\r\n]", w1, w2) != 2)
  2270. continue;
  2271. if(!strcmpi(w1,"char_db"))
  2272. safestrncpy(schema_config.char_db, w2, sizeof(schema_config.char_db));
  2273. else if(!strcmpi(w1,"scdata_db"))
  2274. safestrncpy(schema_config.scdata_db, w2, sizeof(schema_config.scdata_db));
  2275. else if(!strcmpi(w1,"cart_db"))
  2276. safestrncpy(schema_config.cart_db, w2, sizeof(schema_config.cart_db));
  2277. else if(!strcmpi(w1,"inventory_db"))
  2278. safestrncpy(schema_config.inventory_db, w2, sizeof(schema_config.inventory_db));
  2279. else if(!strcmpi(w1,"charlog_db"))
  2280. safestrncpy(schema_config.charlog_db, w2, sizeof(schema_config.charlog_db));
  2281. else if(!strcmpi(w1,"skill_db"))
  2282. safestrncpy(schema_config.skill_db, w2, sizeof(schema_config.skill_db));
  2283. else if(!strcmpi(w1,"interlog_db"))
  2284. safestrncpy(schema_config.interlog_db, w2, sizeof(schema_config.interlog_db));
  2285. else if(!strcmpi(w1,"memo_db"))
  2286. safestrncpy(schema_config.memo_db, w2, sizeof(schema_config.memo_db));
  2287. else if(!strcmpi(w1,"guild_db"))
  2288. safestrncpy(schema_config.guild_db, w2, sizeof(schema_config.guild_db));
  2289. else if(!strcmpi(w1,"guild_alliance_db"))
  2290. safestrncpy(schema_config.guild_alliance_db, w2, sizeof(schema_config.guild_alliance_db));
  2291. else if(!strcmpi(w1,"guild_castle_db"))
  2292. safestrncpy(schema_config.guild_castle_db, w2, sizeof(schema_config.guild_castle_db));
  2293. else if(!strcmpi(w1,"guild_expulsion_db"))
  2294. safestrncpy(schema_config.guild_expulsion_db, w2, sizeof(schema_config.guild_expulsion_db));
  2295. else if(!strcmpi(w1,"guild_member_db"))
  2296. safestrncpy(schema_config.guild_member_db, w2, sizeof(schema_config.guild_member_db));
  2297. else if(!strcmpi(w1,"guild_skill_db"))
  2298. safestrncpy(schema_config.guild_skill_db, w2, sizeof(schema_config.guild_skill_db));
  2299. else if(!strcmpi(w1,"guild_position_db"))
  2300. safestrncpy(schema_config.guild_position_db, w2, sizeof(schema_config.guild_position_db));
  2301. else if(!strcmpi(w1,"guild_storage_db"))
  2302. safestrncpy(schema_config.guild_storage_db, w2, sizeof(schema_config.guild_storage_db));
  2303. else if(!strcmpi(w1,"party_db"))
  2304. safestrncpy(schema_config.party_db, w2, sizeof(schema_config.party_db));
  2305. else if(!strcmpi(w1,"pet_db"))
  2306. safestrncpy(schema_config.pet_db, w2, sizeof(schema_config.pet_db));
  2307. else if(!strcmpi(w1,"mail_db"))
  2308. safestrncpy(schema_config.mail_db, w2, sizeof(schema_config.mail_db));
  2309. else if (!strcmpi(w1, "mail_attachment_db"))
  2310. safestrncpy(schema_config.mail_attachment_db, w2, sizeof(schema_config.mail_attachment_db));
  2311. else if(!strcmpi(w1,"auction_db"))
  2312. safestrncpy(schema_config.auction_db, w2, sizeof(schema_config.auction_db));
  2313. else if(!strcmpi(w1,"friend_db"))
  2314. safestrncpy(schema_config.friend_db, w2, sizeof(schema_config.friend_db));
  2315. else if(!strcmpi(w1,"hotkey_db"))
  2316. safestrncpy(schema_config.hotkey_db, w2, sizeof(schema_config.hotkey_db));
  2317. else if(!strcmpi(w1,"quest_db"))
  2318. safestrncpy(schema_config.quest_db,w2,sizeof(schema_config.quest_db));
  2319. else if(!strcmpi(w1,"homunculus_db"))
  2320. safestrncpy(schema_config.homunculus_db,w2,sizeof(schema_config.homunculus_db));
  2321. else if(!strcmpi(w1,"skill_homunculus_db"))
  2322. safestrncpy(schema_config.skill_homunculus_db,w2,sizeof(schema_config.skill_homunculus_db));
  2323. else if(!strcmpi(w1,"mercenary_db"))
  2324. safestrncpy(schema_config.mercenary_db,w2,sizeof(schema_config.mercenary_db));
  2325. else if(!strcmpi(w1,"mercenary_owner_db"))
  2326. safestrncpy(schema_config.mercenary_owner_db,w2,sizeof(schema_config.mercenary_owner_db));
  2327. else if(!strcmpi(w1,"elemental_db"))
  2328. safestrncpy(schema_config.elemental_db,w2,sizeof(schema_config.elemental_db));
  2329. else if(!strcmpi(w1,"skillcooldown_db"))
  2330. safestrncpy(schema_config.skillcooldown_db, w2, sizeof(schema_config.skillcooldown_db));
  2331. else if(!strcmpi(w1,"bonus_script_db"))
  2332. safestrncpy(schema_config.bonus_script_db, w2, sizeof(schema_config.bonus_script_db));
  2333. else if(!strcmpi(w1,"char_reg_num_table"))
  2334. safestrncpy(schema_config.char_reg_num_table, w2, sizeof(schema_config.char_reg_num_table));
  2335. else if(!strcmpi(w1,"char_reg_str_table"))
  2336. safestrncpy(schema_config.char_reg_str_table, w2, sizeof(schema_config.char_reg_str_table));
  2337. else if(!strcmpi(w1,"acc_reg_str_table"))
  2338. safestrncpy(schema_config.acc_reg_str_table, w2, sizeof(schema_config.acc_reg_str_table));
  2339. else if(!strcmpi(w1,"acc_reg_num_table"))
  2340. safestrncpy(schema_config.acc_reg_num_table, w2, sizeof(schema_config.acc_reg_num_table));
  2341. else if(!strcmpi(w1,"clan_table"))
  2342. safestrncpy(schema_config.clan_table, w2, sizeof(schema_config.clan_table));
  2343. else if(!strcmpi(w1,"clan_alliance_table"))
  2344. safestrncpy(schema_config.clan_alliance_table, w2, sizeof(schema_config.clan_alliance_table));
  2345. else if(!strcmpi(w1,"achievement_table"))
  2346. safestrncpy(schema_config.achievement_table, w2, sizeof(schema_config.achievement_table));
  2347. //support the import command, just like any other config
  2348. else if(!strcmpi(w1,"import"))
  2349. char_sql_config_read(w2);
  2350. }
  2351. fclose(fp);
  2352. ShowInfo("Done reading %s.\n", cfgName);
  2353. }
  2354. void char_set_default_sql(){
  2355. // schema_config.db_use_sqldbs;
  2356. safestrncpy(schema_config.db_path,"db",sizeof(schema_config.db_path));
  2357. safestrncpy(schema_config.char_db,"char",sizeof(schema_config.char_db));
  2358. safestrncpy(schema_config.scdata_db,"sc_data",sizeof(schema_config.scdata_db));
  2359. safestrncpy(schema_config.cart_db,"cart_inventory",sizeof(schema_config.cart_db));
  2360. safestrncpy(schema_config.inventory_db,"inventory",sizeof(schema_config.inventory_db));
  2361. safestrncpy(schema_config.charlog_db,"charlog",sizeof(schema_config.charlog_db));
  2362. safestrncpy(schema_config.storage_db,"storage",sizeof(schema_config.storage_db));
  2363. safestrncpy(schema_config.interlog_db,"interlog",sizeof(schema_config.interlog_db));
  2364. safestrncpy(schema_config.skill_db,"skill",sizeof(schema_config.skill_db));
  2365. safestrncpy(schema_config.memo_db,"memo",sizeof(schema_config.memo_db));
  2366. safestrncpy(schema_config.guild_db,"guild",sizeof(schema_config.guild_db));
  2367. safestrncpy(schema_config.guild_alliance_db,"guild_alliance",sizeof(schema_config.guild_alliance_db));
  2368. safestrncpy(schema_config.guild_castle_db,"guild_castle",sizeof(schema_config.guild_castle_db));
  2369. safestrncpy(schema_config.guild_expulsion_db,"guild_expulsion",sizeof(schema_config.guild_expulsion_db));
  2370. safestrncpy(schema_config.guild_member_db,"guild_member",sizeof(schema_config.guild_member_db));
  2371. safestrncpy(schema_config.guild_position_db,"guild_position",sizeof(schema_config.guild_position_db));
  2372. safestrncpy(schema_config.guild_skill_db,"guild_skill",sizeof(schema_config.guild_skill_db));
  2373. safestrncpy(schema_config.guild_storage_db,"guild_storage",sizeof(schema_config.guild_storage_db));
  2374. safestrncpy(schema_config.party_db,"party",sizeof(schema_config.party_db));
  2375. safestrncpy(schema_config.pet_db,"pet",sizeof(schema_config.pet_db));
  2376. safestrncpy(schema_config.mail_db,"mail",sizeof(schema_config.mail_db)); // MAIL SYSTEM
  2377. safestrncpy(schema_config.auction_db,"auction",sizeof(schema_config.auction_db)); // Auctions System
  2378. safestrncpy(schema_config.friend_db,"friends",sizeof(schema_config.friend_db));
  2379. safestrncpy(schema_config.hotkey_db,"hotkey",sizeof(schema_config.hotkey_db));
  2380. safestrncpy(schema_config.quest_db,"quest",sizeof(schema_config.quest_db));
  2381. safestrncpy(schema_config.homunculus_db,"homunculus",sizeof(schema_config.homunculus_db));
  2382. safestrncpy(schema_config.skill_homunculus_db,"skill_homunculus",sizeof(schema_config.skill_homunculus_db));
  2383. safestrncpy(schema_config.mercenary_db,"mercenary",sizeof(schema_config.mercenary_db));
  2384. safestrncpy(schema_config.mercenary_owner_db,"mercenary_owner",sizeof(schema_config.mercenary_owner_db));
  2385. safestrncpy(schema_config.ragsrvinfo_db,"ragsrvinfo",sizeof(schema_config.ragsrvinfo_db));
  2386. safestrncpy(schema_config.skillcooldown_db,"skillcooldown",sizeof(schema_config.skillcooldown_db));
  2387. safestrncpy(schema_config.bonus_script_db,"bonus_script",sizeof(schema_config.bonus_script_db));
  2388. safestrncpy(schema_config.char_reg_num_table,"char_reg_num",sizeof(schema_config.char_reg_num_table));
  2389. safestrncpy(schema_config.char_reg_str_table,"char_reg_str",sizeof(schema_config.char_reg_str_table));
  2390. safestrncpy(schema_config.acc_reg_str_table,"acc_reg_str",sizeof(schema_config.acc_reg_str_table));
  2391. safestrncpy(schema_config.acc_reg_num_table,"acc_reg_num",sizeof(schema_config.acc_reg_num_table));
  2392. safestrncpy(schema_config.clan_table,"clan",sizeof(schema_config.clan_table));
  2393. safestrncpy(schema_config.clan_table,"clan_alliance",sizeof(schema_config.clan_alliance_table));
  2394. safestrncpy(schema_config.achievement_table,"achievement",sizeof(schema_config.achievement_table));
  2395. }
  2396. //set default config
  2397. void char_set_defaults(){
  2398. #if PACKETVER_SUPPORTS_PINCODE
  2399. charserv_config.pincode_config.pincode_enabled = true;
  2400. charserv_config.pincode_config.pincode_changetime = 0;
  2401. charserv_config.pincode_config.pincode_maxtry = 3;
  2402. charserv_config.pincode_config.pincode_force = true;
  2403. charserv_config.pincode_config.pincode_allow_repeated = false;
  2404. charserv_config.pincode_config.pincode_allow_sequential = false;
  2405. #endif
  2406. charserv_config.charmove_config.char_move_enabled = true;
  2407. charserv_config.charmove_config.char_movetoused = true;
  2408. charserv_config.charmove_config.char_moves_unlimited = false;
  2409. charserv_config.char_config.char_per_account = 0; //Maximum chars per account (default unlimited) [Sirius]
  2410. charserv_config.char_config.char_del_level = 0; //From which level u can delete character [Lupus]
  2411. charserv_config.char_config.char_del_delay = 86400;
  2412. #if PACKETVER >= 20100803
  2413. charserv_config.char_config.char_del_option = CHAR_DEL_BIRTHDATE;
  2414. #else
  2415. charserv_config.char_config.char_del_option = CHAR_DEL_EMAIL;
  2416. #endif
  2417. charserv_config.char_config.char_del_restriction = CHAR_DEL_RESTRICT_ALL;
  2418. // charserv_config.userid[24];
  2419. // charserv_config.passwd[24];
  2420. // charserv_config.server_name[20];
  2421. safestrncpy(charserv_config.wisp_server_name,"Server",sizeof(charserv_config.wisp_server_name));
  2422. // charserv_config.login_ip_str[128];
  2423. charserv_config.login_ip = 0;
  2424. charserv_config.login_port = 6900;
  2425. // charserv_config.char_ip_str[128];
  2426. charserv_config.char_ip = 0;
  2427. // charserv_config.bind_ip_str[128];
  2428. charserv_config.bind_ip = INADDR_ANY;
  2429. charserv_config.char_port = 6121;
  2430. charserv_config.char_maintenance = 0;
  2431. charserv_config.char_new = true;
  2432. charserv_config.char_new_display = 0;
  2433. charserv_config.char_config.name_ignoring_case = false; // Allow or not identical name for characters but with a different case by [Yor]
  2434. charserv_config.char_config.char_name_option = 0; // Option to know which letters/symbols are authorised in the name of a character (0: all, 1: only those in char_name_letters, 2: all EXCEPT those in char_name_letters) by [Yor]
  2435. safestrncpy(charserv_config.char_config.unknown_char_name,"Unknown",sizeof(charserv_config.char_config.unknown_char_name)); // Name to use when the requested name cannot be determined
  2436. safestrncpy(charserv_config.char_config.char_name_letters,"",sizeof(charserv_config.char_config.char_name_letters)); // list of letters/symbols allowed (or not) in a character name. by [Yor]
  2437. charserv_config.save_log = 1; // show loading/saving messages
  2438. charserv_config.log_char = 1; // loggin char or not [devil]
  2439. charserv_config.log_inter = 1; // loggin inter or not [devil]
  2440. charserv_config.char_check_db =1;
  2441. // See const.h to change the default values
  2442. charserv_config.start_point[0].map = mapindex_name2id(MAP_DEFAULT_NAME);
  2443. charserv_config.start_point[0].x = MAP_DEFAULT_X;
  2444. charserv_config.start_point[0].y = MAP_DEFAULT_Y;
  2445. charserv_config.start_point_count = 1;
  2446. #if PACKETVER >= 20151001
  2447. charserv_config.start_point_doram[0].map = mapindex_name2id(MAP_DEFAULT_NAME);
  2448. charserv_config.start_point_doram[0].x = MAP_DEFAULT_X;
  2449. charserv_config.start_point_doram[0].y = MAP_DEFAULT_Y;
  2450. charserv_config.start_point_count_doram = 1;
  2451. #endif
  2452. charserv_config.start_items[0].nameid = 1201;
  2453. charserv_config.start_items[0].amount = 1;
  2454. charserv_config.start_items[0].pos = 2;
  2455. charserv_config.start_items[1].nameid = 2301;
  2456. charserv_config.start_items[1].amount = 1;
  2457. charserv_config.start_items[1].pos = 16;
  2458. #if PACKETVER >= 20150101
  2459. charserv_config.start_items_doram[0].nameid = 1681;
  2460. charserv_config.start_items_doram[0].amount = 1;
  2461. charserv_config.start_items_doram[0].pos = 2;
  2462. charserv_config.start_items_doram[1].nameid = 2301;
  2463. charserv_config.start_items_doram[1].amount = 1;
  2464. charserv_config.start_items_doram[1].pos = 16;
  2465. #endif
  2466. charserv_config.console = 0;
  2467. charserv_config.max_connect_user = -1;
  2468. charserv_config.gm_allow_group = -1;
  2469. charserv_config.autosave_interval = DEFAULT_AUTOSAVE_INTERVAL;
  2470. charserv_config.start_zeny = 0;
  2471. charserv_config.guild_exp_rate = 100;
  2472. safestrncpy(charserv_config.default_map, "prontera", MAP_NAME_LENGTH);
  2473. charserv_config.default_map_x = 156;
  2474. charserv_config.default_map_y = 191;
  2475. charserv_config.clan_remove_inactive_days = 14;
  2476. charserv_config.mail_return_days = 14;
  2477. charserv_config.mail_delete_days = 14;
  2478. }
  2479. /**
  2480. * Split start_point configuration values.
  2481. * @param w1_value: Value from w1
  2482. * @param w2_value: Value from w2
  2483. * @param start: Start point reference
  2484. * @param count: Start point count reference
  2485. */
  2486. static void char_config_split_startpoint(char *w1_value, char *w2_value, struct point start_point[MAX_STARTPOINT], short *count)
  2487. {
  2488. char *lineitem, **fields;
  2489. int i = 0, fields_length = 3 + 1;
  2490. (*count) = 0; // Reset to begin reading
  2491. fields = (char **)aMalloc(fields_length * sizeof(char *));
  2492. if (fields == NULL)
  2493. return; // Failed to allocate memory.
  2494. lineitem = strtok(w2_value, ":");
  2495. while (lineitem != NULL && (*count) < MAX_STARTPOINT) {
  2496. int n = sv_split(lineitem, strlen(lineitem), 0, ',', fields, fields_length, SV_NOESCAPE_NOTERMINATE);
  2497. if (n + 1 < fields_length) {
  2498. ShowDebug("%s: not enough arguments for %s! Skipping...\n", w1_value, lineitem);
  2499. lineitem = strtok(NULL, ":"); //next lineitem
  2500. continue;
  2501. }
  2502. start_point[i].map = mapindex_name2id(fields[1]);
  2503. if (!start_point[i].map) {
  2504. ShowError("Start point %s not found in map-index cache. Setting to default location.\n", start_point[i].map);
  2505. start_point[i].map = mapindex_name2id(MAP_DEFAULT_NAME);
  2506. start_point[i].x = MAP_DEFAULT_X;
  2507. start_point[i].y = MAP_DEFAULT_Y;
  2508. } else {
  2509. start_point[i].x = max(0, atoi(fields[2]));
  2510. start_point[i].y = max(0, atoi(fields[3]));
  2511. }
  2512. (*count)++;
  2513. lineitem = strtok(NULL, ":"); //next lineitem
  2514. i++;
  2515. }
  2516. aFree(fields);
  2517. }
  2518. /**
  2519. * Split start_items configuration values.
  2520. * @param w1_value: Value from w1
  2521. * @param w2_value: Value from w2
  2522. * @param start: Start item reference
  2523. */
  2524. static void char_config_split_startitem(char *w1_value, char *w2_value, struct startitem start_items[MAX_STARTITEM])
  2525. {
  2526. char *lineitem, **fields;
  2527. int i = 0, fields_length = 3 + 1;
  2528. fields = (char **)aMalloc(fields_length * sizeof(char *));
  2529. if (fields == NULL)
  2530. return; // Failed to allocate memory.
  2531. lineitem = strtok(w2_value, ":");
  2532. while (lineitem != NULL && i < MAX_STARTITEM) {
  2533. int n = sv_split(lineitem, strlen(lineitem), 0, ',', fields, fields_length, SV_NOESCAPE_NOTERMINATE);
  2534. if (n + 1 < fields_length) {
  2535. ShowDebug("%s: not enough arguments for %s! Skipping...\n", w1_value, lineitem);
  2536. lineitem = strtok(NULL, ":"); //next lineitem
  2537. continue;
  2538. }
  2539. // TODO: Item ID verification
  2540. start_items[i].nameid = max(0, atoi(fields[1]));
  2541. start_items[i].amount = max(0, atoi(fields[2]));
  2542. start_items[i].pos = max(0, atoi(fields[3]));
  2543. lineitem = strtok(NULL, ":"); //next lineitem
  2544. i++;
  2545. }
  2546. aFree(fields);
  2547. }
  2548. bool char_config_read(const char* cfgName, bool normal){
  2549. char line[1024], w1[1024], w2[1024];
  2550. FILE* fp = fopen(cfgName, "r");
  2551. if (fp == NULL) {
  2552. ShowError("Configuration file not found: %s.\n", cfgName);
  2553. return false;
  2554. }
  2555. while(fgets(line, sizeof(line), fp)) {
  2556. if (line[0] == '/' && line[1] == '/')
  2557. continue;
  2558. if (sscanf(line, "%1023[^:]: %1023[^\r\n]", w1, w2) != 2)
  2559. continue;
  2560. remove_control_chars(w1);
  2561. remove_control_chars(w2);
  2562. // Config that loaded only when server started, not by reloading config file
  2563. if (normal) {
  2564. if (strcmpi(w1, "userid") == 0) {
  2565. safestrncpy(charserv_config.userid, w2, sizeof(charserv_config.userid));
  2566. } else if (strcmpi(w1, "passwd") == 0) {
  2567. safestrncpy(charserv_config.passwd, w2, sizeof(charserv_config.passwd));
  2568. } else if (strcmpi(w1, "server_name") == 0) {
  2569. safestrncpy(charserv_config.server_name, w2, sizeof(charserv_config.server_name));
  2570. } else if (strcmpi(w1, "wisp_server_name") == 0) {
  2571. if (strlen(w2) >= 4) {
  2572. safestrncpy(charserv_config.wisp_server_name, w2, sizeof(charserv_config.wisp_server_name));
  2573. }
  2574. } else if (strcmpi(w1, "login_ip") == 0) {
  2575. charserv_config.login_ip = host2ip(w2);
  2576. if (charserv_config.login_ip) {
  2577. char ip_str[16];
  2578. safestrncpy(charserv_config.login_ip_str, w2, sizeof(charserv_config.login_ip_str));
  2579. ShowStatus("Login server IP address : %s -> %s\n", w2, ip2str(charserv_config.login_ip, ip_str));
  2580. }
  2581. } else if (strcmpi(w1, "login_port") == 0) {
  2582. charserv_config.login_port = atoi(w2);
  2583. } else if (strcmpi(w1, "char_ip") == 0) {
  2584. charserv_config.char_ip = host2ip(w2);
  2585. if (charserv_config.char_ip) {
  2586. char ip_str[16];
  2587. safestrncpy(charserv_config.char_ip_str, w2, sizeof(charserv_config.char_ip_str));
  2588. ShowStatus("Character server IP address : %s -> %s\n", w2, ip2str(charserv_config.char_ip, ip_str));
  2589. }
  2590. } else if (strcmpi(w1, "bind_ip") == 0) {
  2591. charserv_config.bind_ip = host2ip(w2);
  2592. if (charserv_config.bind_ip) {
  2593. char ip_str[16];
  2594. safestrncpy(charserv_config.bind_ip_str, w2, sizeof(charserv_config.bind_ip_str));
  2595. ShowStatus("Character server binding IP address : %s -> %s\n", w2, ip2str(charserv_config.bind_ip, ip_str));
  2596. }
  2597. } else if (strcmpi(w1, "char_port") == 0) {
  2598. charserv_config.char_port = atoi(w2);
  2599. } else if (strcmpi(w1, "console") == 0) {
  2600. charserv_config.console = config_switch(w2);
  2601. }
  2602. }
  2603. if(strcmpi(w1,"timestamp_format") == 0) {
  2604. safestrncpy(timestamp_format, w2, sizeof(timestamp_format));
  2605. } else if(strcmpi(w1,"console_silent")==0){
  2606. msg_silent = atoi(w2);
  2607. if( msg_silent ) /* only bother if its actually enabled */
  2608. ShowInfo("Console Silent Setting: %d\n", atoi(w2));
  2609. } else if (strcmpi(w1, "console_msg_log") == 0) {
  2610. console_msg_log = atoi(w2);
  2611. } else if (strcmpi(w1, "console_log_filepath") == 0) {
  2612. safestrncpy(console_log_filepath, w2, sizeof(console_log_filepath));
  2613. } else if(strcmpi(w1,"stdout_with_ansisequence")==0){
  2614. stdout_with_ansisequence = config_switch(w2);
  2615. } else if (strcmpi(w1, "char_maintenance") == 0) {
  2616. charserv_config.char_maintenance = atoi(w2);
  2617. } else if (strcmpi(w1, "char_new") == 0) {
  2618. charserv_config.char_new = (bool)atoi(w2);
  2619. } else if (strcmpi(w1, "char_new_display") == 0) {
  2620. charserv_config.char_new_display = atoi(w2);
  2621. } else if (strcmpi(w1, "max_connect_user") == 0) {
  2622. charserv_config.max_connect_user = atoi(w2);
  2623. if (charserv_config.max_connect_user < -1)
  2624. charserv_config.max_connect_user = -1;
  2625. } else if(strcmpi(w1, "gm_allow_group") == 0) {
  2626. charserv_config.gm_allow_group = atoi(w2);
  2627. } else if (strcmpi(w1, "autosave_time") == 0) {
  2628. charserv_config.autosave_interval = atoi(w2)*1000;
  2629. if (charserv_config.autosave_interval <= 0)
  2630. charserv_config.autosave_interval = DEFAULT_AUTOSAVE_INTERVAL;
  2631. } else if (strcmpi(w1, "save_log") == 0) {
  2632. charserv_config.save_log = config_switch(w2);
  2633. #ifdef RENEWAL
  2634. } else if (strcmpi(w1, "start_point") == 0) {
  2635. #else
  2636. } else if (strcmpi(w1, "start_point_pre") == 0) {
  2637. #endif
  2638. char_config_split_startpoint(w1, w2, charserv_config.start_point, &charserv_config.start_point_count);
  2639. #if PACKETVER >= 20151001
  2640. } else if (strcmpi(w1, "start_point_doram") == 0) {
  2641. char_config_split_startpoint(w1, w2, charserv_config.start_point_doram, &charserv_config.start_point_count_doram);
  2642. #endif
  2643. } else if (strcmpi(w1, "start_zeny") == 0) {
  2644. charserv_config.start_zeny = atoi(w2);
  2645. if (charserv_config.start_zeny < 0)
  2646. charserv_config.start_zeny = 0;
  2647. } else if (strcmpi(w1, "start_items") == 0) {
  2648. char_config_split_startitem(w1, w2, charserv_config.start_items);
  2649. #if PACKETVER >= 20151001
  2650. } else if (strcmpi(w1, "start_items_doram") == 0) {
  2651. char_config_split_startitem(w1, w2, charserv_config.start_items_doram);
  2652. #endif
  2653. } else if(strcmpi(w1,"log_char")==0) { //log char or not [devil]
  2654. charserv_config.log_char = atoi(w2);
  2655. } else if (strcmpi(w1, "unknown_char_name") == 0) {
  2656. safestrncpy(charserv_config.char_config.unknown_char_name, w2, sizeof(charserv_config.char_config.unknown_char_name));
  2657. charserv_config.char_config.unknown_char_name[NAME_LENGTH-1] = '\0';
  2658. } else if (strcmpi(w1, "name_ignoring_case") == 0) {
  2659. charserv_config.char_config.name_ignoring_case = (bool)config_switch(w2);
  2660. } else if (strcmpi(w1, "char_name_option") == 0) {
  2661. charserv_config.char_config.char_name_option = atoi(w2);
  2662. } else if (strcmpi(w1, "char_name_letters") == 0) {
  2663. safestrncpy(charserv_config.char_config.char_name_letters, w2, sizeof(charserv_config.char_config.char_name_letters));
  2664. } else if (strcmpi(w1, "char_del_level") == 0) { //disable/enable char deletion by its level condition [Lupus]
  2665. charserv_config.char_config.char_del_level = atoi(w2);
  2666. } else if (strcmpi(w1, "char_del_delay") == 0) {
  2667. charserv_config.char_config.char_del_delay = atoi(w2);
  2668. } else if (strcmpi(w1, "char_del_option") == 0) {
  2669. charserv_config.char_config.char_del_option = atoi(w2);
  2670. } else if (strcmpi(w1, "char_del_restriction") == 0) {
  2671. charserv_config.char_config.char_del_restriction = atoi(w2);
  2672. } else if (strcmpi(w1, "char_rename_party") == 0) {
  2673. charserv_config.char_config.char_rename_party = (bool)config_switch(w2);
  2674. } else if (strcmpi(w1, "char_rename_guild") == 0) {
  2675. charserv_config.char_config.char_rename_guild = (bool)config_switch(w2);
  2676. } else if(strcmpi(w1,"db_path")==0) {
  2677. safestrncpy(schema_config.db_path, w2, sizeof(schema_config.db_path));
  2678. } else if (strcmpi(w1, "fame_list_alchemist") == 0) {
  2679. fame_list_size_chemist = atoi(w2);
  2680. if (fame_list_size_chemist > MAX_FAME_LIST) {
  2681. ShowWarning("Max fame list size is %d (fame_list_alchemist)\n", MAX_FAME_LIST);
  2682. fame_list_size_chemist = MAX_FAME_LIST;
  2683. }
  2684. } else if (strcmpi(w1, "fame_list_blacksmith") == 0) {
  2685. fame_list_size_smith = atoi(w2);
  2686. if (fame_list_size_smith > MAX_FAME_LIST) {
  2687. ShowWarning("Max fame list size is %d (fame_list_blacksmith)\n", MAX_FAME_LIST);
  2688. fame_list_size_smith = MAX_FAME_LIST;
  2689. }
  2690. } else if (strcmpi(w1, "fame_list_taekwon") == 0) {
  2691. fame_list_size_taekwon = atoi(w2);
  2692. if (fame_list_size_taekwon > MAX_FAME_LIST) {
  2693. ShowWarning("Max fame list size is %d (fame_list_taekwon)\n", MAX_FAME_LIST);
  2694. fame_list_size_taekwon = MAX_FAME_LIST;
  2695. }
  2696. } else if (strcmpi(w1, "guild_exp_rate") == 0) {
  2697. charserv_config.guild_exp_rate = atoi(w2);
  2698. } else if (strcmpi(w1, "pincode_enabled") == 0) {
  2699. #if PACKETVER_SUPPORTS_PINCODE
  2700. charserv_config.pincode_config.pincode_enabled = config_switch(w2);
  2701. } else if (strcmpi(w1, "pincode_changetime") == 0) {
  2702. charserv_config.pincode_config.pincode_changetime = atoi(w2)*60*60*24;
  2703. } else if (strcmpi(w1, "pincode_maxtry") == 0) {
  2704. charserv_config.pincode_config.pincode_maxtry = atoi(w2);
  2705. } else if (strcmpi(w1, "pincode_force") == 0) {
  2706. charserv_config.pincode_config.pincode_force = config_switch(w2);
  2707. } else if (strcmpi(w1, "pincode_allow_repeated") == 0) {
  2708. charserv_config.pincode_config.pincode_allow_repeated = config_switch(w2);
  2709. } else if (strcmpi(w1, "pincode_allow_sequential") == 0) {
  2710. charserv_config.pincode_config.pincode_allow_sequential = config_switch(w2);
  2711. #else
  2712. if( config_switch(w2) ) {
  2713. ShowWarning("pincode_enabled requires PACKETVER 20110309 or higher.\n");
  2714. }
  2715. #endif
  2716. } else if (strcmpi(w1, "char_move_enabled") == 0) {
  2717. charserv_config.charmove_config.char_move_enabled = config_switch(w2);
  2718. } else if (strcmpi(w1, "char_movetoused") == 0) {
  2719. charserv_config.charmove_config.char_movetoused = config_switch(w2);
  2720. } else if (strcmpi(w1, "char_moves_unlimited") == 0) {
  2721. charserv_config.charmove_config.char_moves_unlimited = config_switch(w2);
  2722. } else if (strcmpi(w1, "char_checkdb") == 0) {
  2723. charserv_config.char_check_db = config_switch(w2);
  2724. } else if (strcmpi(w1, "default_map") == 0) {
  2725. safestrncpy(charserv_config.default_map, w2, MAP_NAME_LENGTH);
  2726. } else if (strcmpi(w1, "default_map_x") == 0) {
  2727. charserv_config.default_map_x = atoi(w2);
  2728. } else if (strcmpi(w1, "default_map_y") == 0) {
  2729. charserv_config.default_map_y = atoi(w2);
  2730. } else if (strcmpi(w1, "clan_remove_inactive_days") == 0) {
  2731. charserv_config.clan_remove_inactive_days = atoi(w2);
  2732. } else if (strcmpi(w1, "mail_return_days") == 0) {
  2733. charserv_config.mail_return_days = atoi(w2);
  2734. } else if (strcmpi(w1, "mail_delete_days") == 0) {
  2735. charserv_config.mail_delete_days = atoi(w2);
  2736. } else if (strcmpi(w1, "import") == 0) {
  2737. char_config_read(w2, normal);
  2738. }
  2739. }
  2740. fclose(fp);
  2741. ShowInfo("Done reading %s.\n", cfgName);
  2742. return true;
  2743. }
  2744. /**
  2745. * Checks for values out of range.
  2746. */
  2747. static void char_config_adjust() {
  2748. #if PACKETVER < 20100803
  2749. if (charserv_config.char_config.char_del_option&CHAR_DEL_BIRTHDATE) {
  2750. ShowWarning("conf/char_athena.conf:char_del_option birthdate is enabled but it requires PACKETVER 2010-08-03 or newer, defaulting to email...\n");
  2751. charserv_config.char_config.char_del_option &= ~CHAR_DEL_BIRTHDATE;
  2752. }
  2753. #endif
  2754. }
  2755. /*
  2756. * Message conf function
  2757. */
  2758. int char_msg_config_read(const char *cfgName){
  2759. return _msg_config_read(cfgName,CHAR_MAX_MSG,msg_table);
  2760. }
  2761. const char* char_msg_txt(int msg_number){
  2762. return _msg_txt(msg_number,CHAR_MAX_MSG,msg_table);
  2763. }
  2764. void char_do_final_msg(void){
  2765. _do_final_msg(CHAR_MAX_MSG,msg_table);
  2766. }
  2767. void do_final(void)
  2768. {
  2769. ShowStatus("Terminating...\n");
  2770. char_set_all_offline(-1);
  2771. char_set_all_offline_sql();
  2772. inter_final();
  2773. flush_fifos();
  2774. do_final_msg();
  2775. do_final_chmapif();
  2776. do_final_chlogif();
  2777. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s`", schema_config.ragsrvinfo_db) )
  2778. Sql_ShowDebug(sql_handle);
  2779. char_db_->destroy(char_db_, NULL);
  2780. online_char_db->destroy(online_char_db, NULL);
  2781. auth_db->destroy(auth_db, NULL);
  2782. if( char_fd != -1 )
  2783. {
  2784. do_close(char_fd);
  2785. char_fd = -1;
  2786. }
  2787. Sql_Free(sql_handle);
  2788. mapindex_final();
  2789. ShowStatus("Finished.\n");
  2790. }
  2791. void set_server_type(void){
  2792. SERVER_TYPE = ATHENA_SERVER_CHAR;
  2793. }
  2794. //------------------------------
  2795. // Function called when the server
  2796. // has received a crash signal.
  2797. //------------------------------
  2798. void do_abort(void)
  2799. {
  2800. }
  2801. /// Called when a terminate signal is received.
  2802. void do_shutdown(void) {
  2803. if( runflag != CHARSERVER_ST_SHUTDOWN )
  2804. {
  2805. int id;
  2806. runflag = CHARSERVER_ST_SHUTDOWN;
  2807. ShowStatus("Shutting down...\n");
  2808. // TODO proper shutdown procedure; wait for acks?, kick all characters, ... [FlavoJS]
  2809. for( id = 0; id < ARRAYLENGTH(map_server); ++id )
  2810. chmapif_server_reset(id);
  2811. chlogif_check_shutdown();
  2812. flush_fifos();
  2813. runflag = CORE_ST_STOP;
  2814. }
  2815. }
  2816. int do_init(int argc, char **argv)
  2817. {
  2818. //Read map indexes
  2819. runflag = CHARSERVER_ST_STARTING;
  2820. mapindex_init();
  2821. // Init default value
  2822. CHAR_CONF_NAME = "conf/char_athena.conf";
  2823. LAN_CONF_NAME = "conf/subnet_athena.conf";
  2824. SQL_CONF_NAME = "conf/inter_athena.conf";
  2825. MSG_CONF_NAME_EN = "conf/msg_conf/char_msg.conf";
  2826. safestrncpy(console_log_filepath, "./log/char-msg_log.log", sizeof(console_log_filepath));
  2827. cli_get_options(argc,argv);
  2828. char_set_defaults();
  2829. char_config_read(CHAR_CONF_NAME, true);
  2830. char_config_adjust();
  2831. char_lan_config_read(LAN_CONF_NAME);
  2832. char_set_default_sql();
  2833. char_sql_config_read(SQL_CONF_NAME);
  2834. msg_config_read(MSG_CONF_NAME_EN);
  2835. // Skip this check if the server is run with run-once flag
  2836. if (runflag!=CORE_ST_STOP && strcmp(charserv_config.userid, "s1")==0 && strcmp(charserv_config.passwd, "p1")==0) {
  2837. ShowWarning("Using the default user/password s1/p1 is NOT RECOMMENDED.\n");
  2838. ShowNotice("Please edit your 'login' table to create a proper inter-server user/password (gender 'S')\n");
  2839. ShowNotice("And then change the user/password to use in conf/char_athena.conf (or conf/import/char_conf.txt)\n");
  2840. }
  2841. inter_init_sql((argc > 2) ? argv[2] : inter_cfgName); // inter server configuration
  2842. auth_db = idb_alloc(DB_OPT_RELEASE_DATA);
  2843. online_char_db = idb_alloc(DB_OPT_RELEASE_DATA);
  2844. char_mmo_sql_init();
  2845. char_read_fame_list(); //Read fame lists.
  2846. if ((naddr_ != 0) && (!(charserv_config.login_ip) || !(charserv_config.char_ip) ))
  2847. {
  2848. char ip_str[16];
  2849. ip2str(addr_[0], ip_str);
  2850. if (naddr_ > 1)
  2851. ShowStatus("Multiple interfaces detected.. using %s as our IP address\n", ip_str);
  2852. else
  2853. ShowStatus("Defaulting to %s as our IP address\n", ip_str);
  2854. if (!(charserv_config.login_ip) ) {
  2855. safestrncpy(charserv_config.login_ip_str, ip_str, sizeof(charserv_config.login_ip_str));
  2856. charserv_config.login_ip = str2ip(charserv_config.login_ip_str);
  2857. }
  2858. if (!(charserv_config.char_ip)) {
  2859. safestrncpy(charserv_config.char_ip_str, ip_str, sizeof(charserv_config.char_ip_str));
  2860. charserv_config.char_ip = str2ip(charserv_config.char_ip_str);
  2861. }
  2862. }
  2863. do_init_chlogif();
  2864. do_init_chmapif();
  2865. // periodically update the overall user count on all mapservers + login server
  2866. add_timer_func_list(chlogif_broadcast_user_count, "broadcast_user_count");
  2867. add_timer_interval(gettick() + 1000, chlogif_broadcast_user_count, 0, 0, 5 * 1000);
  2868. // Timer to clear (online_char_db)
  2869. add_timer_func_list(char_chardb_waiting_disconnect, "chardb_waiting_disconnect");
  2870. // Online Data timers (checking if char still connected)
  2871. add_timer_func_list(char_online_data_cleanup, "online_data_cleanup");
  2872. add_timer_interval(gettick() + 1000, char_online_data_cleanup, 0, 0, 600 * 1000);
  2873. // periodically remove players that have not logged in for a long time from clans
  2874. add_timer_func_list(char_clan_member_cleanup, "clan_member_cleanup");
  2875. add_timer_interval(gettick() + 1000, char_clan_member_cleanup, 0, 0, 60 * 60 * 1000); // every 60 minutes
  2876. // periodically check if mails need to be returned to their sender
  2877. add_timer_func_list(mail_return_timer, "mail_return_timer");
  2878. add_timer_interval(gettick() + 1000, mail_return_timer, 0, 0, 5 * 60 * 1000); // every 5 minutes
  2879. // periodically check if mails need to be deleted completely
  2880. add_timer_func_list(mail_delete_timer, "mail_delete_timer");
  2881. add_timer_interval(gettick() + 1000, mail_delete_timer, 0, 0, 5 * 60 * 1000); // every 5 minutes
  2882. //check db tables
  2883. if(charserv_config.char_check_db && char_checkdb() == 0){
  2884. ShowFatalError("char : A tables is missing in sql-server, please fix it, see (sql-files main.sql for structure) \n");
  2885. exit(EXIT_FAILURE);
  2886. }
  2887. //Cleaning the tables for NULL entrys @ startup [Sirius]
  2888. //Chardb clean
  2889. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `account_id` = '0'", schema_config.char_db) )
  2890. Sql_ShowDebug(sql_handle);
  2891. //guilddb clean
  2892. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `guild_lv` = '0' AND `max_member` = '0' AND `exp` = '0' AND `next_exp` = '0' AND `average_lv` = '0'", schema_config.guild_db) )
  2893. Sql_ShowDebug(sql_handle);
  2894. //guildmemberdb clean
  2895. if( SQL_ERROR == Sql_Query(sql_handle, "DELETE FROM `%s` WHERE `guild_id` = '0' AND `account_id` = '0' AND `char_id` = '0'", schema_config.guild_member_db) )
  2896. Sql_ShowDebug(sql_handle);
  2897. set_defaultparse(chclif_parse);
  2898. if( (char_fd = make_listen_bind(charserv_config.bind_ip,charserv_config.char_port)) == -1 ) {
  2899. ShowFatalError("Failed to bind to port '" CL_WHITE "%d" CL_RESET "'\n",charserv_config.char_port);
  2900. exit(EXIT_FAILURE);
  2901. }
  2902. if( runflag != CORE_ST_STOP )
  2903. {
  2904. shutdown_callback = do_shutdown;
  2905. runflag = CHARSERVER_ST_RUNNING;
  2906. }
  2907. do_init_chcnslif();
  2908. mapindex_check_mapdefault(charserv_config.default_map);
  2909. ShowInfo("Default map: '" CL_WHITE "%s %d,%d" CL_RESET "'\n", charserv_config.default_map, charserv_config.default_map_x, charserv_config.default_map_y);
  2910. ShowStatus("The char-server is " CL_GREEN "ready" CL_RESET " (Server is listening on the port %d).\n\n", charserv_config.char_port);
  2911. return 0;
  2912. }