login.log 278 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408
  1. <<<<<<< .mine
  2. <<<<<<< .mine
  3. 2004-11-11 16:42:57.500: The login-server starting...
  4. 2004-11-11 16:42:57.574: The configuration of the server is set:
  5. 2004-11-11 16:42:57.574: - with no remote administration.
  6. 2004-11-11 16:42:57.574: - to accept any IP for remote administration
  7. 2004-11-11 16:42:57.574: - with the DEFAULT 'To GM become' password (gm_pass).
  8. 2004-11-11 16:42:57.574: - to create GM with level '60' when @gm is used.
  9. 2004-11-11 16:42:57.574: - to ALLOW new users (with _F/_M).
  10. 2004-11-11 16:42:57.575: - with port: 6900.
  11. 2004-11-11 16:42:57.575: - with the accounts file name: 'save/account.txt'.
  12. 2004-11-11 16:42:57.575: - with the GM accounts file name: 'conf/GM_account.txt'.
  13. 2004-11-11 16:42:57.575: - to check GM accounts file modifications every 15 seconds.
  14. 2004-11-11 16:42:57.575: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  15. 2004-11-11 16:42:57.576: - to SAVE only unkown packets sending by a char-server or a remote administration.
  16. 2004-11-11 16:42:57.576: - to NOT display normal parse packets on console.
  17. 2004-11-11 16:42:57.576: - to NOT display administration parse packets on console.
  18. 2004-11-11 16:42:57.576: - to NOT display char-server parse packets on console.
  19. 2004-11-11 16:42:57.576: - with no minimum level for connection.
  20. 2004-11-11 16:42:57.576: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  21. 2004-11-11 16:42:57.576: - to create new accounts with an unlimited time.
  22. 2004-11-11 16:42:57.576: - with control of players IP between login-server and char-server.
  23. 2004-11-11 16:42:57.576: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  24. 2004-11-11 16:42:57.594: The LAN configuration of the server is set:
  25. 2004-11-11 16:42:57.595: - with LAN IP of char-server: 127.0.0.1.
  26. 2004-11-11 16:42:57.595: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  27. 2004-11-11 16:42:57.596: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  28. 2004-11-11 16:42:57.600: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  29. 2004-11-11 16:42:57.600: The login-server is ready (Server is listening on the port 6900).
  30. 2004-11-11 16:43:39.859: The login-server starting...
  31. 2004-11-11 16:43:39.859: The configuration of the server is set:
  32. 2004-11-11 16:43:39.859: - with no remote administration.
  33. 2004-11-11 16:43:39.859: - to accept any IP for remote administration
  34. 2004-11-11 16:43:39.859: - with the DEFAULT 'To GM become' password (gm_pass).
  35. 2004-11-11 16:43:39.859: - to create GM with level '60' when @gm is used.
  36. 2004-11-11 16:43:39.859: - to ALLOW new users (with _F/_M).
  37. 2004-11-11 16:43:39.859: - with port: 6900.
  38. 2004-11-11 16:43:39.860: - with the accounts file name: 'save/account.txt'.
  39. 2004-11-11 16:43:39.860: - with the GM accounts file name: 'conf/GM_account.txt'.
  40. 2004-11-11 16:43:39.860: - to check GM accounts file modifications every 15 seconds.
  41. 2004-11-11 16:43:39.860: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  42. 2004-11-11 16:43:39.860: - to SAVE only unkown packets sending by a char-server or a remote administration.
  43. 2004-11-11 16:43:39.860: - to NOT display normal parse packets on console.
  44. 2004-11-11 16:43:39.860: - to NOT display administration parse packets on console.
  45. 2004-11-11 16:43:39.860: - to NOT display char-server parse packets on console.
  46. 2004-11-11 16:43:39.860: - with no minimum level for connection.
  47. 2004-11-11 16:43:39.861: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  48. 2004-11-11 16:43:39.861: - to create new accounts with an unlimited time.
  49. 2004-11-11 16:43:39.861: - with control of players IP between login-server and char-server.
  50. 2004-11-11 16:43:39.861: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  51. 2004-11-11 16:43:39.862: The LAN configuration of the server is set:
  52. 2004-11-11 16:43:39.862: - with LAN IP of char-server: 127.0.0.1.
  53. 2004-11-11 16:43:39.862: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  54. 2004-11-11 16:43:39.864: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  55. 2004-11-11 16:43:39.865: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  56. 2004-11-11 16:43:39.866: The login-server is ready (Server is listening on the port 6900).
  57. 2004-11-11 16:43:42.308: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  58. 2004-11-11 16:43:42.309: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  59. 2004-11-11 16:43:42.310: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  60. 2004-11-11 16:43:44.791: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  61. 2004-11-11 16:44:26.468: The login-server starting...
  62. 2004-11-11 16:44:26.468: The configuration of the server is set:
  63. 2004-11-11 16:44:26.468: - with no remote administration.
  64. 2004-11-11 16:44:26.468: - to accept any IP for remote administration
  65. 2004-11-11 16:44:26.468: - with the DEFAULT 'To GM become' password (gm_pass).
  66. 2004-11-11 16:44:26.468: - to create GM with level '60' when @gm is used.
  67. 2004-11-11 16:44:26.468: - to ALLOW new users (with _F/_M).
  68. 2004-11-11 16:44:26.468: - with port: 6900.
  69. 2004-11-11 16:44:26.469: - with the accounts file name: 'save/account.txt'.
  70. 2004-11-11 16:44:26.469: - with the GM accounts file name: 'conf/GM_account.txt'.
  71. 2004-11-11 16:44:26.469: - to check GM accounts file modifications every 15 seconds.
  72. 2004-11-11 16:44:26.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  73. 2004-11-11 16:44:26.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
  74. 2004-11-11 16:44:26.469: - to NOT display normal parse packets on console.
  75. 2004-11-11 16:44:26.469: - to NOT display administration parse packets on console.
  76. 2004-11-11 16:44:26.469: - to NOT display char-server parse packets on console.
  77. 2004-11-11 16:44:26.469: - with no minimum level for connection.
  78. 2004-11-11 16:44:26.470: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  79. 2004-11-11 16:44:26.470: - to create new accounts with an unlimited time.
  80. 2004-11-11 16:44:26.470: - with control of players IP between login-server and char-server.
  81. 2004-11-11 16:44:26.470: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  82. 2004-11-11 16:44:26.471: The LAN configuration of the server is set:
  83. 2004-11-11 16:44:26.471: - with LAN IP of char-server: 127.0.0.1.
  84. 2004-11-11 16:44:26.471: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  85. 2004-11-11 16:44:26.472: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  86. 2004-11-11 16:44:26.474: 6 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  87. 2004-11-11 16:44:26.474: The login-server is ready (Server is listening on the port 6900).
  88. 2004-11-11 16:44:29.635: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  89. 2004-11-11 16:44:29.635: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  90. 2004-11-11 16:44:29.637: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  91. 2004-11-11 16:46:36.685: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  92. 2004-11-11 16:46:36.685: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
  93. 2004-11-11 16:46:37.308: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
  94. 2004-11-11 16:46:52.378: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  95. 2004-11-11 16:47:20.578: The login-server starting...
  96. 2004-11-11 16:47:20.578: The configuration of the server is set:
  97. 2004-11-11 16:47:20.578: - with no remote administration.
  98. 2004-11-11 16:47:20.578: - to accept any IP for remote administration
  99. 2004-11-11 16:47:20.578: - with the DEFAULT 'To GM become' password (gm_pass).
  100. 2004-11-11 16:47:20.578: - to create GM with level '60' when @gm is used.
  101. 2004-11-11 16:47:20.578: - to ALLOW new users (with _F/_M).
  102. 2004-11-11 16:47:20.578: - with port: 6900.
  103. 2004-11-11 16:47:20.578: - with the accounts file name: 'save/account.txt'.
  104. 2004-11-11 16:47:20.578: - with the GM accounts file name: 'conf/GM_account.txt'.
  105. 2004-11-11 16:47:20.578: - to check GM accounts file modifications every 15 seconds.
  106. 2004-11-11 16:47:20.579: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  107. 2004-11-11 16:47:20.579: - to SAVE only unkown packets sending by a char-server or a remote administration.
  108. 2004-11-11 16:47:20.579: - to NOT display normal parse packets on console.
  109. 2004-11-11 16:47:20.579: - to NOT display administration parse packets on console.
  110. 2004-11-11 16:47:20.579: - to NOT display char-server parse packets on console.
  111. 2004-11-11 16:47:20.579: - with no minimum level for connection.
  112. 2004-11-11 16:47:20.579: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  113. 2004-11-11 16:47:20.579: - to create new accounts with an unlimited time.
  114. 2004-11-11 16:47:20.580: - with control of players IP between login-server and char-server.
  115. 2004-11-11 16:47:20.580: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  116. 2004-11-11 16:47:20.580: The LAN configuration of the server is set:
  117. 2004-11-11 16:47:20.582: - with LAN IP of char-server: 127.0.0.1.
  118. 2004-11-11 16:47:20.582: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  119. 2004-11-11 16:47:20.584: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  120. 2004-11-11 16:47:20.586: 6 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  121. 2004-11-11 16:47:20.587: The login-server is ready (Server is listening on the port 6900).
  122. 2004-11-11 16:47:22.331: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  123. 2004-11-11 16:47:22.331: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  124. 2004-11-11 16:47:22.332: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  125. 2004-11-11 16:47:44.744: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  126. 2004-11-11 16:47:44.744: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
  127. 2004-11-11 16:47:45.135: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
  128. 2004-11-11 16:47:47.911: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  129. 2004-11-11 16:47:47.912: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
  130. 2004-11-11 16:47:48.300: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
  131. 2004-11-11 16:48:03.321: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  132. 2004-11-11 16:48:03.825: ----End of login-server (normal end with closing of all files).
  133. 2004-11-11 16:48:22.000: The login-server starting...
  134. 2004-11-11 16:48:22.000: The configuration of the server is set:
  135. 2004-11-11 16:48:22.000: - with no remote administration.
  136. 2004-11-11 16:48:22.000: - to accept any IP for remote administration
  137. 2004-11-11 16:48:22.000: - with the DEFAULT 'To GM become' password (gm_pass).
  138. 2004-11-11 16:48:22.000: - to create GM with level '60' when @gm is used.
  139. 2004-11-11 16:48:22.000: - to ALLOW new users (with _F/_M).
  140. 2004-11-11 16:48:22.000: - with port: 6900.
  141. 2004-11-11 16:48:22.001: - with the accounts file name: 'save/account.txt'.
  142. 2004-11-11 16:48:22.001: - with the GM accounts file name: 'conf/GM_account.txt'.
  143. 2004-11-11 16:48:22.001: - to check GM accounts file modifications every 15 seconds.
  144. 2004-11-11 16:48:22.001: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  145. 2004-11-11 16:48:22.001: - to SAVE only unkown packets sending by a char-server or a remote administration.
  146. 2004-11-11 16:48:22.001: - to NOT display normal parse packets on console.
  147. 2004-11-11 16:48:22.001: - to NOT display administration parse packets on console.
  148. 2004-11-11 16:48:22.001: - to NOT display char-server parse packets on console.
  149. 2004-11-11 16:48:22.002: - with no minimum level for connection.
  150. 2004-11-11 16:48:22.002: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  151. 2004-11-11 16:48:22.002: - to create new accounts with an unlimited time.
  152. 2004-11-11 16:48:22.002: - with control of players IP between login-server and char-server.
  153. 2004-11-11 16:48:22.002: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  154. 2004-11-11 16:48:22.003: The LAN configuration of the server is set:
  155. 2004-11-11 16:48:22.003: - with LAN IP of char-server: 127.0.0.1.
  156. 2004-11-11 16:48:22.003: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  157. 2004-11-11 16:48:22.004: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  158. 2004-11-11 16:48:22.006: 5 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  159. 2004-11-11 16:48:22.009: The login-server is ready (Server is listening on the port 6900).
  160. 2004-11-11 16:48:24.342: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  161. 2004-11-11 16:48:24.342: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  162. 2004-11-11 16:48:24.344: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  163. 2004-11-11 16:49:09.967: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  164. 2004-11-11 16:49:09.967: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
  165. 2004-11-11 16:49:15.570: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
  166. 2004-11-11 16:49:15.570: Account creation and authentification accepted (account cameri (id: 2000002), pass: juan16, sex: M, connection with _F/_M, ip: 127.0.0.1)
  167. 2004-11-11 16:49:16.398: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  168. 2004-11-11 16:51:17.974: ----End of login-server (normal end with closing of all files).
  169. 2004-11-11 16:51:25.234: The login-server starting...
  170. 2004-11-11 16:51:25.234: The configuration of the server is set:
  171. 2004-11-11 16:51:25.234: - with no remote administration.
  172. 2004-11-11 16:51:25.234: - to accept any IP for remote administration
  173. 2004-11-11 16:51:25.234: - with the DEFAULT 'To GM become' password (gm_pass).
  174. 2004-11-11 16:51:25.234: - to create GM with level '60' when @gm is used.
  175. 2004-11-11 16:51:25.234: - to ALLOW new users (with _F/_M).
  176. 2004-11-11 16:51:25.235: - with port: 6900.
  177. 2004-11-11 16:51:25.235: - with the accounts file name: 'save/account.txt'.
  178. 2004-11-11 16:51:25.235: - with the GM accounts file name: 'conf/GM_account.txt'.
  179. 2004-11-11 16:51:25.235: - to check GM accounts file modifications every 15 seconds.
  180. 2004-11-11 16:51:25.235: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  181. 2004-11-11 16:51:25.235: - to SAVE only unkown packets sending by a char-server or a remote administration.
  182. 2004-11-11 16:51:25.235: - to NOT display normal parse packets on console.
  183. 2004-11-11 16:51:25.235: - to NOT display administration parse packets on console.
  184. 2004-11-11 16:51:25.235: - to NOT display char-server parse packets on console.
  185. 2004-11-11 16:51:25.236: - with no minimum level for connection.
  186. 2004-11-11 16:51:25.236: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  187. 2004-11-11 16:51:25.236: - to create new accounts with an unlimited time.
  188. 2004-11-11 16:51:25.236: - with control of players IP between login-server and char-server.
  189. 2004-11-11 16:51:25.236: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  190. 2004-11-11 16:51:25.237: The LAN configuration of the server is set:
  191. 2004-11-11 16:51:25.237: - with LAN IP of char-server: 127.0.0.1.
  192. 2004-11-11 16:51:25.237: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  193. 2004-11-11 16:51:25.238: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  194. 2004-11-11 16:51:25.240: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  195. 2004-11-11 16:51:25.241: The login-server is ready (Server is listening on the port 6900).
  196. 2004-11-11 16:51:27.129: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  197. 2004-11-11 16:51:27.130: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  198. 2004-11-11 16:51:27.133: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  199. 2004-11-11 16:51:48.970: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  200. 2004-11-11 16:51:48.970: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  201. 2004-11-11 16:51:49.440: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  202. 2004-11-11 16:51:59.769: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  203. 2004-11-11 16:52:00.665: ----End of login-server (normal end with closing of all files).
  204. 2004-11-11 16:52:15.890: The login-server starting...
  205. 2004-11-11 16:52:15.890: The configuration of the server is set:
  206. 2004-11-11 16:52:15.890: - with no remote administration.
  207. 2004-11-11 16:52:15.890: - to accept any IP for remote administration
  208. 2004-11-11 16:52:15.890: - with the DEFAULT 'To GM become' password (gm_pass).
  209. 2004-11-11 16:52:15.890: - to create GM with level '60' when @gm is used.
  210. 2004-11-11 16:52:15.890: - to ALLOW new users (with _F/_M).
  211. 2004-11-11 16:52:15.890: - with port: 6900.
  212. 2004-11-11 16:52:15.891: - with the accounts file name: 'save/account.txt'.
  213. 2004-11-11 16:52:15.891: - with the GM accounts file name: 'conf/GM_account.txt'.
  214. 2004-11-11 16:52:15.891: - to check GM accounts file modifications every 15 seconds.
  215. 2004-11-11 16:52:15.891: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  216. 2004-11-11 16:52:15.891: - to SAVE only unkown packets sending by a char-server or a remote administration.
  217. 2004-11-11 16:52:15.891: - to NOT display normal parse packets on console.
  218. 2004-11-11 16:52:15.891: - to NOT display administration parse packets on console.
  219. 2004-11-11 16:52:15.891: - to NOT display char-server parse packets on console.
  220. 2004-11-11 16:52:15.892: - with no minimum level for connection.
  221. 2004-11-11 16:52:15.892: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  222. 2004-11-11 16:52:15.892: - to create new accounts with an unlimited time.
  223. 2004-11-11 16:52:15.892: - with control of players IP between login-server and char-server.
  224. 2004-11-11 16:52:15.892: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  225. 2004-11-11 16:52:15.893: The LAN configuration of the server is set:
  226. 2004-11-11 16:52:15.893: - with LAN IP of char-server: 127.0.0.1.
  227. 2004-11-11 16:52:15.893: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  228. 2004-11-11 16:52:15.896: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  229. 2004-11-11 16:52:15.898: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  230. 2004-11-11 16:52:15.898: The login-server is ready (Server is listening on the port 6900).
  231. 2004-11-11 16:52:17.567: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  232. 2004-11-11 16:52:17.567: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  233. 2004-11-11 16:52:17.572: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  234. 2004-11-11 16:52:56.354: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  235. 2004-11-11 16:52:56.355: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
  236. 2004-11-11 16:53:01.776: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
  237. 2004-11-11 16:53:01.776: Account creation and authentification accepted (account cameri (id: 2000002), pass: juan16, sex: M, connection with _F/_M, ip: 127.0.0.1)
  238. 2004-11-11 16:53:02.316: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  239. 2004-11-11 16:53:11.597: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  240. 2004-11-11 16:53:12.191: ----End of login-server (normal end with closing of all files).
  241. 2004-11-12 23:28:26.843: The login-server starting...
  242. 2004-11-12 23:28:26.904: The configuration of the server is set:
  243. 2004-11-12 23:28:26.904: - with no remote administration.
  244. 2004-11-12 23:28:26.904: - to accept any IP for remote administration
  245. 2004-11-12 23:28:26.904: - with the DEFAULT 'To GM become' password (gm_pass).
  246. 2004-11-12 23:28:26.904: - to create GM with level '60' when @gm is used.
  247. 2004-11-12 23:28:26.904: - to ALLOW new users (with _F/_M).
  248. 2004-11-12 23:28:26.905: - with port: 6900.
  249. 2004-11-12 23:28:26.905: - with the accounts file name: 'save/account.txt'.
  250. 2004-11-12 23:28:26.905: - with the GM accounts file name: 'conf/GM_account.txt'.
  251. 2004-11-12 23:28:26.905: - to check GM accounts file modifications every 15 seconds.
  252. 2004-11-12 23:28:26.905: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  253. 2004-11-12 23:28:26.905: - to SAVE only unkown packets sending by a char-server or a remote administration.
  254. 2004-11-12 23:28:26.905: - to NOT display normal parse packets on console.
  255. 2004-11-12 23:28:26.905: - to NOT display administration parse packets on console.
  256. 2004-11-12 23:28:26.905: - to NOT display char-server parse packets on console.
  257. 2004-11-12 23:28:26.906: - with no minimum level for connection.
  258. 2004-11-12 23:28:26.906: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  259. 2004-11-12 23:28:26.906: - to create new accounts with an unlimited time.
  260. 2004-11-12 23:28:26.906: - with control of players IP between login-server and char-server.
  261. 2004-11-12 23:28:26.906: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  262. 2004-11-12 23:28:26.907: The LAN configuration of the server is set:
  263. 2004-11-12 23:28:26.907: - with LAN IP of char-server: 127.0.0.1.
  264. 2004-11-12 23:28:26.907: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  265. 2004-11-12 23:28:26.909: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  266. 2004-11-12 23:28:26.911: The login-server is ready (Server is listening on the port 6900).
  267. 2004-11-12 23:28:38.177: ----End of login-server (normal end with closing of all files).
  268. 2004-11-12 23:32:31.937: The login-server starting...
  269. 2004-11-12 23:32:31.937: The configuration of the server is set:
  270. 2004-11-12 23:32:31.937: - with no remote administration.
  271. 2004-11-12 23:32:31.937: - to accept any IP for remote administration
  272. 2004-11-12 23:32:31.937: - with the DEFAULT 'To GM become' password (gm_pass).
  273. 2004-11-12 23:32:31.937: - to create GM with level '60' when @gm is used.
  274. 2004-11-12 23:32:31.937: - to ALLOW new users (with _F/_M).
  275. 2004-11-12 23:32:31.937: - with port: 6900.
  276. 2004-11-12 23:32:31.938: - with the accounts file name: 'save/account.txt'.
  277. 2004-11-12 23:32:31.938: - with the GM accounts file name: 'conf/GM_account.txt'.
  278. 2004-11-12 23:32:31.938: - to check GM accounts file modifications every 15 seconds.
  279. 2004-11-12 23:32:31.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  280. 2004-11-12 23:32:31.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
  281. 2004-11-12 23:32:31.938: - to NOT display normal parse packets on console.
  282. 2004-11-12 23:32:31.938: - to NOT display administration parse packets on console.
  283. 2004-11-12 23:32:31.938: - to NOT display char-server parse packets on console.
  284. 2004-11-12 23:32:31.938: - with no minimum level for connection.
  285. 2004-11-12 23:32:31.939: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  286. 2004-11-12 23:32:31.939: - to create new accounts with an unlimited time.
  287. 2004-11-12 23:32:31.939: - with control of players IP between login-server and char-server.
  288. 2004-11-12 23:32:31.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  289. 2004-11-12 23:32:31.940: The LAN configuration of the server is set:
  290. 2004-11-12 23:32:31.940: - with LAN IP of char-server: 127.0.0.1.
  291. 2004-11-12 23:32:31.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  292. 2004-11-12 23:32:31.943: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  293. 2004-11-12 23:32:31.945: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  294. 2004-11-12 23:32:31.945: The login-server is ready (Server is listening on the port 6900).
  295. 2004-11-12 23:32:33.967: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  296. 2004-11-12 23:32:33.968: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  297. 2004-11-12 23:32:33.969: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  298. 2004-11-12 23:33:24.566: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
  299. 2004-11-12 23:33:24.567: Account creation and authentification accepted (account cameri (id: 2000002), pass: juan16, sex: M, connection with _F/_M, ip: 127.0.0.1)
  300. 2004-11-12 23:33:25.808: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  301. 2004-11-12 23:34:14.724: ----End of login-server (normal end with closing of all files).
  302. 2004-11-12 23:37:12.437: The login-server starting...
  303. 2004-11-12 23:37:12.437: The configuration of the server is set:
  304. 2004-11-12 23:37:12.437: - with no remote administration.
  305. 2004-11-12 23:37:12.437: - to accept any IP for remote administration
  306. 2004-11-12 23:37:12.437: - with the DEFAULT 'To GM become' password (gm_pass).
  307. 2004-11-12 23:37:12.437: - to create GM with level '60' when @gm is used.
  308. 2004-11-12 23:37:12.438: - to ALLOW new users (with _F/_M).
  309. 2004-11-12 23:37:12.438: - with port: 6900.
  310. 2004-11-12 23:37:12.438: - with the accounts file name: 'save/account.txt'.
  311. 2004-11-12 23:37:12.438: - with the GM accounts file name: 'conf/GM_account.txt'.
  312. 2004-11-12 23:37:12.438: - to check GM accounts file modifications every 15 seconds.
  313. 2004-11-12 23:37:12.438: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  314. 2004-11-12 23:37:12.438: - to SAVE only unkown packets sending by a char-server or a remote administration.
  315. 2004-11-12 23:37:12.439: - to NOT display normal parse packets on console.
  316. 2004-11-12 23:37:12.439: - to NOT display administration parse packets on console.
  317. 2004-11-12 23:37:12.439: - to NOT display char-server parse packets on console.
  318. 2004-11-12 23:37:12.439: - with no minimum level for connection.
  319. 2004-11-12 23:37:12.439: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  320. 2004-11-12 23:37:12.439: - to create new accounts with an unlimited time.
  321. 2004-11-12 23:37:12.439: - with control of players IP between login-server and char-server.
  322. 2004-11-12 23:37:12.439: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  323. 2004-11-12 23:37:12.441: The LAN configuration of the server is set:
  324. 2004-11-12 23:37:12.441: - with LAN IP of char-server: 127.0.0.1.
  325. 2004-11-12 23:37:12.442: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  326. 2004-11-12 23:37:12.443: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  327. 2004-11-12 23:37:12.444: 7 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  328. 2004-11-12 23:37:12.445: The login-server is ready (Server is listening on the port 6900).
  329. 2004-11-12 23:37:34.077: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  330. 2004-11-12 23:37:34.077: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  331. 2004-11-12 23:37:34.079: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  332. 2004-11-12 23:38:07.480: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
  333. 2004-11-12 23:38:07.484: 'ladmin'-login: Connection in administration mode REFUSED - remote administration is disabled (encrypted password, ip: 127.0.0.1)
  334. 2004-11-12 23:38:09.862: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
  335. 2004-11-12 23:38:09.881: 'ladmin'-login: Connection in administration mode REFUSED - remote administration is disabled (encrypted password, ip: 127.0.0.1)
  336. 2004-11-12 23:38:11.485: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
  337. 2004-11-12 23:38:11.497: 'ladmin'-login: Connection in administration mode REFUSED - remote administration is disabled (encrypted password, ip: 127.0.0.1)
  338. 2004-11-12 23:38:22.658: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  339. 2004-11-12 23:38:22.658: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  340. 2004-11-12 23:38:23.234: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  341. 2004-11-12 23:38:28.152: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  342. 2004-11-12 23:56:15.812: The login-server starting...
  343. 2004-11-12 23:56:15.812: The configuration of the server is set:
  344. 2004-11-12 23:56:15.812: - with no remote administration.
  345. 2004-11-12 23:56:15.812: - to accept any IP for remote administration
  346. 2004-11-12 23:56:15.812: - with the DEFAULT 'To GM become' password (gm_pass).
  347. 2004-11-12 23:56:15.812: - to create GM with level '60' when @gm is used.
  348. 2004-11-12 23:56:15.812: - to ALLOW new users (with _F/_M).
  349. 2004-11-12 23:56:15.812: - with port: 6900.
  350. 2004-11-12 23:56:15.812: - with the accounts file name: 'save/account.txt'.
  351. 2004-11-12 23:56:15.812: - with the GM accounts file name: 'conf/GM_account.txt'.
  352. 2004-11-12 23:56:15.812: - to check GM accounts file modifications every 15 seconds.
  353. 2004-11-12 23:56:15.812: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  354. 2004-11-12 23:56:15.812: - to SAVE only unkown packets sending by a char-server or a remote administration.
  355. 2004-11-12 23:56:15.813: - to NOT display normal parse packets on console.
  356. 2004-11-12 23:56:15.813: - to NOT display administration parse packets on console.
  357. 2004-11-12 23:56:15.813: - to NOT display char-server parse packets on console.
  358. 2004-11-12 23:56:15.813: - with no minimum level for connection.
  359. 2004-11-12 23:56:15.813: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  360. 2004-11-12 23:56:15.813: - to create new accounts with an unlimited time.
  361. 2004-11-12 23:56:15.813: - with control of players IP between login-server and char-server.
  362. 2004-11-12 23:56:15.813: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  363. 2004-11-12 23:56:15.814: The LAN configuration of the server is set:
  364. 2004-11-12 23:56:15.814: - with LAN IP of char-server: 127.0.0.1.
  365. 2004-11-12 23:56:15.814: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  366. 2004-11-12 23:56:15.816: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  367. 2004-11-12 23:56:15.818: 7 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  368. 2004-11-12 23:56:15.818: The login-server is ready (Server is listening on the port 6900).
  369. 2004-11-12 23:56:17.869: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  370. 2004-11-12 23:56:17.869: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  371. 2004-11-12 23:56:17.963: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  372. 2004-11-12 23:56:35.389: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  373. 2004-11-12 23:56:35.389: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  374. 2004-11-12 23:56:36.205: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  375. 2004-11-12 23:56:59.407: Char-server 'eAthena': Attempt to modify an e-mail on an account (@email GM command), but actual email is invalid (account: -2071855095, ip: 127.0.0.1)
  376. 2004-11-12 23:57:10.469: ----End of login-server (normal end with closing of all files).
  377. 2004-11-13 00:04:29.140: The login-server starting...
  378. 2004-11-13 00:04:29.140: The configuration of the server is set:
  379. 2004-11-13 00:04:29.140: - with no remote administration.
  380. 2004-11-13 00:04:29.140: - to accept any IP for remote administration
  381. 2004-11-13 00:04:29.140: - with the DEFAULT 'To GM become' password (gm_pass).
  382. 2004-11-13 00:04:29.140: - to create GM with level '60' when @gm is used.
  383. 2004-11-13 00:04:29.141: - to ALLOW new users (with _F/_M).
  384. 2004-11-13 00:04:29.141: - with port: 6900.
  385. 2004-11-13 00:04:29.141: - with the accounts file name: 'save/account.txt'.
  386. 2004-11-13 00:04:29.141: - with the GM accounts file name: 'conf/GM_account.txt'.
  387. 2004-11-13 00:04:29.141: - to check GM accounts file modifications every 15 seconds.
  388. 2004-11-13 00:04:29.141: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  389. 2004-11-13 00:04:29.141: - to SAVE only unkown packets sending by a char-server or a remote administration.
  390. 2004-11-13 00:04:29.141: - to NOT display normal parse packets on console.
  391. 2004-11-13 00:04:29.142: - to NOT display administration parse packets on console.
  392. 2004-11-13 00:04:29.142: - to NOT display char-server parse packets on console.
  393. 2004-11-13 00:04:29.142: - with no minimum level for connection.
  394. 2004-11-13 00:04:29.142: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  395. 2004-11-13 00:04:29.142: - to create new accounts with an unlimited time.
  396. 2004-11-13 00:04:29.142: - with control of players IP between login-server and char-server.
  397. 2004-11-13 00:04:29.142: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  398. 2004-11-13 00:04:29.143: The LAN configuration of the server is set:
  399. 2004-11-13 00:04:29.144: - with LAN IP of char-server: 127.0.0.1.
  400. 2004-11-13 00:04:29.144: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  401. 2004-11-13 00:04:29.145: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  402. 2004-11-13 00:04:29.148: 7 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  403. 2004-11-13 00:04:29.149: The login-server is ready (Server is listening on the port 6900).
  404. 2004-11-13 00:04:31.007: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  405. 2004-11-13 00:04:31.007: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  406. 2004-11-13 00:04:31.100: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  407. 2004-11-13 00:05:06.976: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  408. 2004-11-13 00:05:06.977: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  409. 2004-11-13 00:05:07.788: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  410. 2004-11-13 00:06:00.287: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  411. 2004-11-13 00:06:00.287: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  412. 2004-11-13 00:06:00.835: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  413. 2004-11-13 00:06:22.209: Char-server 'eAthena': Attempt to modify an e-mail on an account (@email GM command), but actual email is invalid (account: -2071855095, ip: 127.0.0.1)
  414. 2004-11-13 00:06:35.288: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  415. 2004-11-13 00:06:35.288: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  416. 2004-11-13 00:06:35.650: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  417. 2004-11-13 00:07:44.771: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  418. 2004-11-13 00:07:44.771: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  419. 2004-11-13 00:07:45.104: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  420. 2004-11-13 00:08:11.086: Char-server 'eAthena': Attempt to modify an e-mail on an account (@email GM command), but actual email is invalid (account: -2071855095, ip: 127.0.0.1)
  421. 2004-11-13 00:08:58.530: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  422. 2004-11-13 00:08:59.206: ----End of login-server (normal end with closing of all files).
  423. 2004-11-13 00:19:04.984: The login-server starting...
  424. 2004-11-13 00:19:04.984: The configuration of the server is set:
  425. 2004-11-13 00:19:04.984: - with no remote administration.
  426. 2004-11-13 00:19:04.984: - to accept any IP for remote administration
  427. 2004-11-13 00:19:04.984: - with the DEFAULT 'To GM become' password (gm_pass).
  428. 2004-11-13 00:19:04.984: - to create GM with level '60' when @gm is used.
  429. 2004-11-13 00:19:04.985: - to ALLOW new users (with _F/_M).
  430. 2004-11-13 00:19:04.985: - with port: 6900.
  431. 2004-11-13 00:19:04.985: - with the accounts file name: 'save/account.txt'.
  432. 2004-11-13 00:19:04.985: - with the GM accounts file name: 'conf/GM_account.txt'.
  433. 2004-11-13 00:19:04.985: - to check GM accounts file modifications every 15 seconds.
  434. 2004-11-13 00:19:04.985: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  435. 2004-11-13 00:19:04.985: - to SAVE only unkown packets sending by a char-server or a remote administration.
  436. 2004-11-13 00:19:04.985: - to NOT display normal parse packets on console.
  437. 2004-11-13 00:19:04.985: - to NOT display administration parse packets on console.
  438. 2004-11-13 00:19:04.986: - to NOT display char-server parse packets on console.
  439. 2004-11-13 00:19:04.986: - with no minimum level for connection.
  440. 2004-11-13 00:19:04.986: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  441. 2004-11-13 00:19:04.986: - to create new accounts with an unlimited time.
  442. 2004-11-13 00:19:04.986: - with control of players IP between login-server and char-server.
  443. 2004-11-13 00:19:04.986: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  444. 2004-11-13 00:19:04.987: The LAN configuration of the server is set:
  445. 2004-11-13 00:19:04.987: - with LAN IP of char-server: 127.0.0.1.
  446. 2004-11-13 00:19:04.987: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  447. 2004-11-13 00:19:04.988: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  448. 2004-11-13 00:19:04.990: 7 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  449. 2004-11-13 00:19:04.991: The login-server is ready (Server is listening on the port 6900).
  450. 2004-11-13 00:19:06.793: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  451. 2004-11-13 00:19:06.793: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  452. 2004-11-13 00:19:06.794: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  453. 2004-11-13 00:19:14.895: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  454. 2004-11-13 00:19:14.896: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  455. 2004-11-13 00:19:15.931: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  456. 2004-11-13 00:20:01.251: Char-server 'eAthena': Attempt to modify an e-mail on an account (@email GM command), but actual email is invalid (account: -2071855095, ip: 127.0.0.1)
  457. 2004-11-13 00:23:42.000: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  458. 2004-11-13 00:24:21.429: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  459. 2004-11-13 00:24:22.080: ----End of login-server (normal end with closing of all files).
  460. 2004-11-13 00:31:04.468: The login-server starting...
  461. 2004-11-13 00:31:04.468: The configuration of the server is set:
  462. 2004-11-13 00:31:04.468: - with no remote administration.
  463. 2004-11-13 00:31:04.468: - to accept any IP for remote administration
  464. 2004-11-13 00:31:04.468: - with the DEFAULT 'To GM become' password (gm_pass).
  465. 2004-11-13 00:31:04.468: - to create GM with level '60' when @gm is used.
  466. 2004-11-13 00:31:04.468: - to ALLOW new users (with _F/_M).
  467. 2004-11-13 00:31:04.468: - with port: 6900.
  468. 2004-11-13 00:31:04.468: - with the accounts file name: 'save/account.txt'.
  469. 2004-11-13 00:31:04.468: - with the GM accounts file name: 'conf/GM_account.txt'.
  470. 2004-11-13 00:31:04.469: - to check GM accounts file modifications every 15 seconds.
  471. 2004-11-13 00:31:04.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  472. 2004-11-13 00:31:04.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
  473. 2004-11-13 00:31:04.469: - to NOT display normal parse packets on console.
  474. 2004-11-13 00:31:04.470: - to NOT display administration parse packets on console.
  475. 2004-11-13 00:31:04.470: - to NOT display char-server parse packets on console.
  476. 2004-11-13 00:31:04.470: - with no minimum level for connection.
  477. 2004-11-13 00:31:04.470: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  478. 2004-11-13 00:31:04.470: - to create new accounts with an unlimited time.
  479. 2004-11-13 00:31:04.470: - with control of players IP between login-server and char-server.
  480. 2004-11-13 00:31:04.470: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  481. 2004-11-13 00:31:04.472: The LAN configuration of the server is set:
  482. 2004-11-13 00:31:04.473: - with LAN IP of char-server: 127.0.0.1.
  483. 2004-11-13 00:31:04.473: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  484. 2004-11-13 00:31:04.474: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  485. 2004-11-13 00:31:04.475: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  486. 2004-11-13 00:31:04.476: The login-server is ready (Server is listening on the port 6900).
  487. 2004-11-13 00:31:06.674: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  488. 2004-11-13 00:31:06.674: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  489. 2004-11-13 00:31:06.676: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  490. 2004-11-13 00:31:15.453: The login-server starting...
  491. 2004-11-13 00:31:15.453: The configuration of the server is set:
  492. 2004-11-13 00:31:15.453: - with no remote administration.
  493. 2004-11-13 00:31:15.453: - to accept any IP for remote administration
  494. 2004-11-13 00:31:15.453: - with the DEFAULT 'To GM become' password (gm_pass).
  495. 2004-11-13 00:31:15.454: - to create GM with level '60' when @gm is used.
  496. 2004-11-13 00:31:15.454: - to ALLOW new users (with _F/_M).
  497. 2004-11-13 00:31:15.454: - with port: 6900.
  498. 2004-11-13 00:31:15.454: - with the accounts file name: 'save/account.txt'.
  499. 2004-11-13 00:31:15.454: - with the GM accounts file name: 'conf/GM_account.txt'.
  500. 2004-11-13 00:31:15.454: - to check GM accounts file modifications every 15 seconds.
  501. 2004-11-13 00:31:15.454: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  502. 2004-11-13 00:31:15.454: - to SAVE only unkown packets sending by a char-server or a remote administration.
  503. 2004-11-13 00:31:15.455: - to NOT display normal parse packets on console.
  504. 2004-11-13 00:31:15.455: - to NOT display administration parse packets on console.
  505. 2004-11-13 00:31:15.455: - to NOT display char-server parse packets on console.
  506. 2004-11-13 00:31:15.455: - with no minimum level for connection.
  507. 2004-11-13 00:31:15.455: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  508. 2004-11-13 00:31:15.455: - to create new accounts with an unlimited time.
  509. 2004-11-13 00:31:15.455: - with control of players IP between login-server and char-server.
  510. 2004-11-13 00:31:15.455: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  511. 2004-11-13 00:31:15.456: The LAN configuration of the server is set:
  512. 2004-11-13 00:31:15.456: - with LAN IP of char-server: 127.0.0.1.
  513. 2004-11-13 00:31:15.456: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  514. 2004-11-13 00:31:15.481: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  515. 2004-11-13 00:31:15.498: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  516. 2004-11-13 00:31:15.499: The login-server is ready (Server is listening on the port 6900).
  517. 2004-11-13 00:31:16.683: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  518. 2004-11-13 00:31:16.683: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  519. 2004-11-13 00:31:16.685: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  520. 2004-11-13 00:31:17.695: ----End of login-server (normal end with closing of all files).
  521. 2004-11-13 00:32:40.671: The login-server starting...
  522. 2004-11-13 00:32:40.671: The configuration of the server is set:
  523. 2004-11-13 00:32:40.671: - with no remote administration.
  524. 2004-11-13 00:32:40.671: - to accept any IP for remote administration
  525. 2004-11-13 00:32:40.671: - with the DEFAULT 'To GM become' password (gm_pass).
  526. 2004-11-13 00:32:40.672: - to create GM with level '60' when @gm is used.
  527. 2004-11-13 00:32:40.672: - to ALLOW new users (with _F/_M).
  528. 2004-11-13 00:32:40.672: - with port: 6900.
  529. 2004-11-13 00:32:40.672: - with the accounts file name: 'save/account.txt'.
  530. 2004-11-13 00:32:40.672: - with the GM accounts file name: 'conf/GM_account.txt'.
  531. 2004-11-13 00:32:40.672: - to check GM accounts file modifications every 15 seconds.
  532. 2004-11-13 00:32:40.672: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  533. 2004-11-13 00:32:40.672: - to SAVE only unkown packets sending by a char-server or a remote administration.
  534. 2004-11-13 00:32:40.672: - to NOT display normal parse packets on console.
  535. 2004-11-13 00:32:40.673: - to NOT display administration parse packets on console.
  536. 2004-11-13 00:32:40.673: - to NOT display char-server parse packets on console.
  537. 2004-11-13 00:32:40.673: - with no minimum level for connection.
  538. 2004-11-13 00:32:40.673: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  539. 2004-11-13 00:32:40.673: - to create new accounts with an unlimited time.
  540. 2004-11-13 00:32:40.673: - with control of players IP between login-server and char-server.
  541. 2004-11-13 00:32:40.673: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  542. 2004-11-13 00:32:40.674: The LAN configuration of the server is set:
  543. 2004-11-13 00:32:40.674: - with LAN IP of char-server: 127.0.0.1.
  544. 2004-11-13 00:32:40.674: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  545. 2004-11-13 00:32:40.679: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  546. 2004-11-13 00:32:40.686: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  547. 2004-11-13 00:32:40.687: The login-server is ready (Server is listening on the port 6900).
  548. 2004-11-13 00:32:41.952: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  549. 2004-11-13 00:32:41.952: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  550. 2004-11-13 00:32:41.952: Connexion of the char-server 'eAthena' REFUSED (account: s1, pass: p1, ip: 127.0.0.1)
  551. 2004-11-13 00:32:42.062: End of connection, unknown packet (ip: 127.0.0.1)
  552. 2004-11-13 00:32:54.427: ----End of login-server (normal end with closing of all files).
  553. 2004-11-13 00:33:19.274: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  554. 2004-11-13 00:33:19.274: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  555. 2004-11-13 00:33:19.797: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  556. 2004-11-13 00:34:08.202: Char-server 'eAthena': Attempt to modify an e-mail on an account (@email GM command), but actual email is invalid (account: -2071855095, ip: 127.0.0.1)
  557. 2004-11-13 00:34:10.104: ----End of login-server (normal end with closing of all files).
  558. 2004-11-13 00:34:26.671: The login-server starting...
  559. 2004-11-13 00:34:26.671: The configuration of the server is set:
  560. 2004-11-13 00:34:26.671: - with no remote administration.
  561. 2004-11-13 00:34:26.671: - to accept any IP for remote administration
  562. 2004-11-13 00:34:26.671: - with the DEFAULT 'To GM become' password (gm_pass).
  563. 2004-11-13 00:34:26.671: - to create GM with level '60' when @gm is used.
  564. 2004-11-13 00:34:26.671: - to ALLOW new users (with _F/_M).
  565. 2004-11-13 00:34:26.671: - with port: 6900.
  566. 2004-11-13 00:34:26.671: - with the accounts file name: 'save/account.txt'.
  567. 2004-11-13 00:34:26.671: - with the GM accounts file name: 'conf/GM_account.txt'.
  568. 2004-11-13 00:34:26.671: - to check GM accounts file modifications every 15 seconds.
  569. 2004-11-13 00:34:26.671: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  570. 2004-11-13 00:34:26.672: - to SAVE only unkown packets sending by a char-server or a remote administration.
  571. 2004-11-13 00:34:26.672: - to NOT display normal parse packets on console.
  572. 2004-11-13 00:34:26.672: - to NOT display administration parse packets on console.
  573. 2004-11-13 00:34:26.672: - to NOT display char-server parse packets on console.
  574. 2004-11-13 00:34:26.672: - with no minimum level for connection.
  575. 2004-11-13 00:34:26.672: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  576. 2004-11-13 00:34:26.672: - to create new accounts with an unlimited time.
  577. 2004-11-13 00:34:26.672: - with control of players IP between login-server and char-server.
  578. 2004-11-13 00:34:26.672: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  579. 2004-11-13 00:34:26.699: The LAN configuration of the server is set:
  580. 2004-11-13 00:34:26.699: - with LAN IP of char-server: 127.0.0.1.
  581. 2004-11-13 00:34:26.699: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  582. 2004-11-13 00:34:26.714: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  583. 2004-11-13 00:34:26.740: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  584. 2004-11-13 00:34:26.741: The login-server is ready (Server is listening on the port 6900).
  585. 2004-11-13 00:34:28.403: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  586. 2004-11-13 00:34:28.403: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  587. 2004-11-13 00:34:28.418: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  588. 2004-11-13 00:34:48.931: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  589. 2004-11-13 00:34:48.932: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  590. 2004-11-13 00:34:49.638: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  591. 2004-11-13 00:37:07.992: ----End of login-server (normal end with closing of all files).
  592. 2004-11-13 00:53:33.140: The login-server starting...
  593. 2004-11-13 00:53:33.140: The configuration of the server is set:
  594. 2004-11-13 00:53:33.140: - with no remote administration.
  595. 2004-11-13 00:53:33.140: - to accept any IP for remote administration
  596. 2004-11-13 00:53:33.140: - with the DEFAULT 'To GM become' password (gm_pass).
  597. 2004-11-13 00:53:33.141: - to create GM with level '60' when @gm is used.
  598. 2004-11-13 00:53:33.141: - to ALLOW new users (with _F/_M).
  599. 2004-11-13 00:53:33.141: - with port: 6900.
  600. 2004-11-13 00:53:33.141: - with the accounts file name: 'save/account.txt'.
  601. 2004-11-13 00:53:33.141: - with the GM accounts file name: 'conf/GM_account.txt'.
  602. 2004-11-13 00:53:33.141: - to check GM accounts file modifications every 15 seconds.
  603. 2004-11-13 00:53:33.141: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  604. 2004-11-13 00:53:33.141: - to SAVE only unkown packets sending by a char-server or a remote administration.
  605. 2004-11-13 00:53:33.142: - to NOT display normal parse packets on console.
  606. 2004-11-13 00:53:33.142: - to NOT display administration parse packets on console.
  607. 2004-11-13 00:53:33.142: - to NOT display char-server parse packets on console.
  608. 2004-11-13 00:53:33.142: - with no minimum level for connection.
  609. 2004-11-13 00:53:33.142: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  610. 2004-11-13 00:53:33.142: - to create new accounts with an unlimited time.
  611. 2004-11-13 00:53:33.142: - with control of players IP between login-server and char-server.
  612. 2004-11-13 00:53:33.142: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  613. 2004-11-13 00:53:33.143: The LAN configuration of the server is set:
  614. 2004-11-13 00:53:33.143: - with LAN IP of char-server: 127.0.0.1.
  615. 2004-11-13 00:53:33.144: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  616. 2004-11-13 00:53:33.145: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  617. 2004-11-13 00:53:33.146: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  618. 2004-11-13 00:53:33.147: The login-server is ready (Server is listening on the port 6900).
  619. 2004-11-13 00:53:38.310: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  620. 2004-11-13 00:53:38.310: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  621. 2004-11-13 00:53:38.322: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  622. 2004-11-13 00:54:07.382: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  623. 2004-11-13 00:54:07.382: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  624. 2004-11-13 00:54:07.904: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  625. 2004-11-13 00:59:16.540: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  626. 2004-11-13 00:59:17.153: ----End of login-server (normal end with closing of all files).
  627. 2004-11-13 01:04:21.890: The login-server starting...
  628. 2004-11-13 01:04:21.890: The configuration of the server is set:
  629. 2004-11-13 01:04:21.890: - with no remote administration.
  630. 2004-11-13 01:04:21.890: - to accept any IP for remote administration
  631. 2004-11-13 01:04:21.890: - with the DEFAULT 'To GM become' password (gm_pass).
  632. 2004-11-13 01:04:21.890: - to create GM with level '60' when @gm is used.
  633. 2004-11-13 01:04:21.891: - to ALLOW new users (with _F/_M).
  634. 2004-11-13 01:04:21.891: - with port: 6900.
  635. 2004-11-13 01:04:21.891: - with the accounts file name: 'save/account.txt'.
  636. 2004-11-13 01:04:21.891: - with the GM accounts file name: 'conf/GM_account.txt'.
  637. 2004-11-13 01:04:21.891: - to check GM accounts file modifications every 15 seconds.
  638. 2004-11-13 01:04:21.891: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  639. 2004-11-13 01:04:21.891: - to SAVE only unkown packets sending by a char-server or a remote administration.
  640. 2004-11-13 01:04:21.891: - to NOT display normal parse packets on console.
  641. 2004-11-13 01:04:21.892: - to NOT display administration parse packets on console.
  642. 2004-11-13 01:04:21.892: - to NOT display char-server parse packets on console.
  643. 2004-11-13 01:04:21.892: - with no minimum level for connection.
  644. 2004-11-13 01:04:21.892: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  645. 2004-11-13 01:04:21.892: - to create new accounts with an unlimited time.
  646. 2004-11-13 01:04:21.892: - with control of players IP between login-server and char-server.
  647. 2004-11-13 01:04:21.892: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  648. 2004-11-13 01:04:21.893: The LAN configuration of the server is set:
  649. 2004-11-13 01:04:21.893: - with LAN IP of char-server: 127.0.0.1.
  650. 2004-11-13 01:04:21.893: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  651. 2004-11-13 01:04:21.895: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  652. 2004-11-13 01:04:21.896: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  653. 2004-11-13 01:04:21.897: The login-server is ready (Server is listening on the port 6900).
  654. 2004-11-13 01:04:22.123: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  655. 2004-11-13 01:04:22.124: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  656. 2004-11-13 01:04:22.127: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  657. 2004-11-13 01:04:42.420: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  658. 2004-11-13 01:04:42.420: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  659. 2004-11-13 01:04:42.881: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  660. 2004-11-13 01:05:20.357: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  661. 2004-11-13 01:05:40.515: ----End of login-server (normal end with closing of all files).
  662. 2004-11-13 01:05:59.796: The login-server starting...
  663. 2004-11-13 01:05:59.796: The configuration of the server is set:
  664. 2004-11-13 01:05:59.797: - with no remote administration.
  665. 2004-11-13 01:05:59.797: - to accept any IP for remote administration
  666. 2004-11-13 01:05:59.797: - with the DEFAULT 'To GM become' password (gm_pass).
  667. 2004-11-13 01:05:59.797: - to create GM with level '60' when @gm is used.
  668. 2004-11-13 01:05:59.797: - to ALLOW new users (with _F/_M).
  669. 2004-11-13 01:05:59.797: - with port: 6900.
  670. 2004-11-13 01:05:59.797: - with the accounts file name: 'save/account.txt'.
  671. 2004-11-13 01:05:59.797: - with the GM accounts file name: 'conf/GM_account.txt'.
  672. 2004-11-13 01:05:59.798: - to check GM accounts file modifications every 15 seconds.
  673. 2004-11-13 01:05:59.798: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  674. 2004-11-13 01:05:59.798: - to SAVE only unkown packets sending by a char-server or a remote administration.
  675. 2004-11-13 01:05:59.798: - to NOT display normal parse packets on console.
  676. 2004-11-13 01:05:59.798: - to NOT display administration parse packets on console.
  677. 2004-11-13 01:05:59.798: - to NOT display char-server parse packets on console.
  678. 2004-11-13 01:05:59.798: - with no minimum level for connection.
  679. 2004-11-13 01:05:59.799: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  680. 2004-11-13 01:05:59.799: - to create new accounts with an unlimited time.
  681. 2004-11-13 01:05:59.799: - with control of players IP between login-server and char-server.
  682. 2004-11-13 01:05:59.799: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  683. 2004-11-13 01:05:59.805: The LAN configuration of the server is set:
  684. 2004-11-13 01:05:59.805: - with LAN IP of char-server: 127.0.0.1.
  685. 2004-11-13 01:05:59.805: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  686. 2004-11-13 01:05:59.807: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  687. 2004-11-13 01:05:59.813: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  688. 2004-11-13 01:05:59.814: The login-server is ready (Server is listening on the port 6900).
  689. 2004-11-13 01:06:02.333: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  690. 2004-11-13 01:06:02.333: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  691. 2004-11-13 01:06:02.335: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  692. 2004-11-13 01:06:15.941: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  693. 2004-11-13 01:06:15.942: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  694. 2004-11-13 01:06:16.571: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  695. 2004-11-13 01:09:59.936: ----End of login-server (normal end with closing of all files).
  696. 2004-11-13 07:55:58.781: The login-server starting...
  697. 2004-11-13 07:55:58.781: The configuration of the server is set:
  698. 2004-11-13 07:55:58.781: - with no remote administration.
  699. 2004-11-13 07:55:58.782: - to accept any IP for remote administration
  700. 2004-11-13 07:55:58.782: - with the DEFAULT 'To GM become' password (gm_pass).
  701. 2004-11-13 07:55:58.782: - to create GM with level '60' when @gm is used.
  702. 2004-11-13 07:55:58.782: - to ALLOW new users (with _F/_M).
  703. 2004-11-13 07:55:58.782: - with port: 6900.
  704. 2004-11-13 07:55:58.782: - with the accounts file name: 'save/account.txt'.
  705. 2004-11-13 07:55:58.782: - with the GM accounts file name: 'conf/GM_account.txt'.
  706. 2004-11-13 07:55:58.783: - to check GM accounts file modifications every 15 seconds.
  707. 2004-11-13 07:55:58.783: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  708. 2004-11-13 07:55:58.784: - to SAVE only unkown packets sending by a char-server or a remote administration.
  709. 2004-11-13 07:55:58.784: - to NOT display normal parse packets on console.
  710. 2004-11-13 07:55:58.784: - to NOT display administration parse packets on console.
  711. 2004-11-13 07:55:58.784: - to NOT display char-server parse packets on console.
  712. 2004-11-13 07:55:58.784: - with no minimum level for connection.
  713. 2004-11-13 07:55:58.784: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  714. 2004-11-13 07:55:58.784: - to create new accounts with an unlimited time.
  715. 2004-11-13 07:55:58.784: - with control of players IP between login-server and char-server.
  716. 2004-11-13 07:55:58.785: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  717. 2004-11-13 07:55:58.800: The LAN configuration of the server is set:
  718. 2004-11-13 07:55:58.801: - with LAN IP of char-server: 127.0.0.1.
  719. 2004-11-13 07:55:58.801: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  720. 2004-11-13 07:55:58.802: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  721. 2004-11-13 07:55:58.804: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  722. 2004-11-13 07:55:58.805: The login-server is ready (Server is listening on the port 6900).
  723. 2004-11-13 07:56:00.317: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  724. 2004-11-13 07:56:00.318: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  725. 2004-11-13 07:56:00.320: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  726. 2004-11-13 07:56:28.071: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  727. 2004-11-13 07:56:28.072: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  728. 2004-11-13 07:56:28.633: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  729. 2004-11-13 07:56:57.364: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  730. 2004-11-13 07:56:57.364: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  731. 2004-11-13 07:56:57.785: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  732. 2004-11-13 07:57:34.588: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  733. 2004-11-13 08:01:13.227: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  734. 2004-11-13 08:01:13.227: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  735. 2004-11-13 08:01:13.721: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  736. 2004-11-13 08:01:48.996: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  737. 2004-11-13 08:01:48.996: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  738. 2004-11-13 08:01:49.376: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  739. 2004-11-13 08:02:04.918: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  740. 2004-11-13 08:02:04.919: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  741. 2004-11-13 08:02:05.245: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  742. 2004-11-13 08:02:19.998: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  743. 2004-11-13 08:02:19.999: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  744. 2004-11-13 08:02:20.325: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  745. 2004-11-13 08:05:39.776: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  746. 2004-11-13 08:07:25.737: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  747. 2004-11-13 08:07:25.768: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  748. 2004-11-13 08:07:26.299: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  749. 2004-11-13 08:07:46.174: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  750. 2004-11-13 08:08:35.439: ----End of login-server (normal end with closing of all files).
  751. 2004-11-13 08:11:26.609: The login-server starting...
  752. 2004-11-13 08:11:26.609: The configuration of the server is set:
  753. 2004-11-13 08:11:26.609: - with no remote administration.
  754. 2004-11-13 08:11:26.609: - to accept any IP for remote administration
  755. 2004-11-13 08:11:26.609: - with the DEFAULT 'To GM become' password (gm_pass).
  756. 2004-11-13 08:11:26.609: - to create GM with level '60' when @gm is used.
  757. 2004-11-13 08:11:26.609: - to ALLOW new users (with _F/_M).
  758. 2004-11-13 08:11:26.609: - with port: 6900.
  759. 2004-11-13 08:11:26.610: - with the accounts file name: 'save/account.txt'.
  760. 2004-11-13 08:11:26.610: - with the GM accounts file name: 'conf/GM_account.txt'.
  761. 2004-11-13 08:11:26.610: - to check GM accounts file modifications every 15 seconds.
  762. 2004-11-13 08:11:26.610: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  763. 2004-11-13 08:11:26.610: - to SAVE only unkown packets sending by a char-server or a remote administration.
  764. 2004-11-13 08:11:26.610: - to NOT display normal parse packets on console.
  765. 2004-11-13 08:11:26.610: - to NOT display administration parse packets on console.
  766. 2004-11-13 08:11:26.611: - to NOT display char-server parse packets on console.
  767. 2004-11-13 08:11:26.611: - with no minimum level for connection.
  768. 2004-11-13 08:11:26.611: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  769. 2004-11-13 08:11:26.611: - to create new accounts with an unlimited time.
  770. 2004-11-13 08:11:26.611: - with control of players IP between login-server and char-server.
  771. 2004-11-13 08:11:26.612: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  772. 2004-11-13 08:11:26.612: The LAN configuration of the server is set:
  773. 2004-11-13 08:11:26.613: - with LAN IP of char-server: 127.0.0.1.
  774. 2004-11-13 08:11:26.613: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  775. 2004-11-13 08:11:26.614: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  776. 2004-11-13 08:11:26.616: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  777. 2004-11-13 08:11:26.616: The login-server is ready (Server is listening on the port 6900).
  778. 2004-11-13 08:11:30.822: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  779. 2004-11-13 08:11:30.822: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  780. 2004-11-13 08:11:30.824: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  781. 2004-11-13 08:29:17.045: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  782. 2004-11-13 08:29:17.581: ----End of login-server (normal end with closing of all files).
  783. 2004-11-13 08:30:11.390: The login-server starting...
  784. 2004-11-13 08:30:11.390: The configuration of the server is set:
  785. 2004-11-13 08:30:11.390: - with no remote administration.
  786. 2004-11-13 08:30:11.390: - to accept any IP for remote administration
  787. 2004-11-13 08:30:11.390: - with the DEFAULT 'To GM become' password (gm_pass).
  788. 2004-11-13 08:30:11.390: - to create GM with level '60' when @gm is used.
  789. 2004-11-13 08:30:11.390: - to ALLOW new users (with _F/_M).
  790. 2004-11-13 08:30:11.390: - with port: 6900.
  791. 2004-11-13 08:30:11.390: - with the accounts file name: 'save/account.txt'.
  792. 2004-11-13 08:30:11.390: - with the GM accounts file name: 'conf/GM_account.txt'.
  793. 2004-11-13 08:30:11.391: - to check GM accounts file modifications every 15 seconds.
  794. 2004-11-13 08:30:11.391: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  795. 2004-11-13 08:30:11.391: - to SAVE only unkown packets sending by a char-server or a remote administration.
  796. 2004-11-13 08:30:11.391: - to NOT display normal parse packets on console.
  797. 2004-11-13 08:30:11.391: - to NOT display administration parse packets on console.
  798. 2004-11-13 08:30:11.391: - to NOT display char-server parse packets on console.
  799. 2004-11-13 08:30:11.391: - with no minimum level for connection.
  800. 2004-11-13 08:30:11.391: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  801. 2004-11-13 08:30:11.392: - to create new accounts with an unlimited time.
  802. 2004-11-13 08:30:11.392: - with control of players IP between login-server and char-server.
  803. 2004-11-13 08:30:11.392: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  804. 2004-11-13 08:30:11.393: The LAN configuration of the server is set:
  805. 2004-11-13 08:30:11.393: - with LAN IP of char-server: 127.0.0.1.
  806. 2004-11-13 08:30:11.393: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  807. 2004-11-13 08:30:11.394: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  808. 2004-11-13 08:30:11.396: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  809. 2004-11-13 08:30:11.396: The login-server is ready (Server is listening on the port 6900).
  810. 2004-11-13 08:30:11.822: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  811. 2004-11-13 08:30:11.822: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  812. 2004-11-13 08:30:11.825: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  813. 2004-11-13 08:30:32.743: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  814. 2004-11-13 08:30:32.743: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  815. 2004-11-13 08:30:33.228: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  816. 2004-11-13 08:30:41.448: Char-server 'eAthena': Error of sex change (account: -2071855095 not found, sex would be reversed, ip: 127.0.0.1).
  817. 2004-11-13 08:30:46.818: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  818. 2004-11-13 08:30:51.821: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  819. 2004-11-13 08:30:51.821: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  820. 2004-11-13 08:30:51.822: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  821. 2004-11-13 08:31:11.695: ----End of login-server (normal end with closing of all files).
  822. 2004-11-13 08:33:01.625: The login-server starting...
  823. 2004-11-13 08:33:01.625: The configuration of the server is set:
  824. 2004-11-13 08:33:01.625: - with no remote administration.
  825. 2004-11-13 08:33:01.625: - to accept any IP for remote administration
  826. 2004-11-13 08:33:01.625: - with the DEFAULT 'To GM become' password (gm_pass).
  827. 2004-11-13 08:33:01.625: - to create GM with level '60' when @gm is used.
  828. 2004-11-13 08:33:01.625: - to ALLOW new users (with _F/_M).
  829. 2004-11-13 08:33:01.625: - with port: 6900.
  830. 2004-11-13 08:33:01.626: - with the accounts file name: 'save/account.txt'.
  831. 2004-11-13 08:33:01.626: - with the GM accounts file name: 'conf/GM_account.txt'.
  832. 2004-11-13 08:33:01.626: - to check GM accounts file modifications every 15 seconds.
  833. 2004-11-13 08:33:01.626: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  834. 2004-11-13 08:33:01.626: - to SAVE only unkown packets sending by a char-server or a remote administration.
  835. 2004-11-13 08:33:01.626: - to NOT display normal parse packets on console.
  836. 2004-11-13 08:33:01.626: - to NOT display administration parse packets on console.
  837. 2004-11-13 08:33:01.626: - to NOT display char-server parse packets on console.
  838. 2004-11-13 08:33:01.627: - with no minimum level for connection.
  839. 2004-11-13 08:33:01.627: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  840. 2004-11-13 08:33:01.627: - to create new accounts with an unlimited time.
  841. 2004-11-13 08:33:01.627: - with control of players IP between login-server and char-server.
  842. 2004-11-13 08:33:01.627: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  843. 2004-11-13 08:33:01.632: The LAN configuration of the server is set:
  844. 2004-11-13 08:33:01.632: - with LAN IP of char-server: 127.0.0.1.
  845. 2004-11-13 08:33:01.632: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  846. 2004-11-13 08:33:01.644: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  847. 2004-11-13 08:33:01.648: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  848. 2004-11-13 08:33:01.649: The login-server is ready (Server is listening on the port 6900).
  849. 2004-11-13 08:33:03.651: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  850. 2004-11-13 08:33:03.652: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  851. 2004-11-13 08:33:03.664: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  852. 2004-11-13 08:33:27.313: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  853. 2004-11-13 08:33:27.314: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  854. 2004-11-13 08:33:27.653: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  855. 2004-11-13 08:33:34.196: Char-server 'eAthena': Sex change (account: 2000002, new sex F, ip: 127.0.0.1).
  856. 2004-11-13 08:33:44.437: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  857. 2004-11-13 08:33:44.437: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  858. 2004-11-13 08:33:44.916: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  859. 2004-11-13 08:36:13.540: Char-server 'eAthena': Sex change (account: 2000002, new sex M, ip: 127.0.0.1).
  860. 2004-11-13 08:39:42.926: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  861. 2004-11-13 08:39:43.613: ----End of login-server (normal end with closing of all files).
  862. =======
  863. 2004-11-11 16:42:57.500: The login-server starting...
  864. 2004-11-11 16:42:57.574: The configuration of the server is set:
  865. 2004-11-11 16:42:57.574: - with no remote administration.
  866. 2004-11-11 16:42:57.574: - to accept any IP for remote administration
  867. 2004-11-11 16:42:57.574: - with the DEFAULT 'To GM become' password (gm_pass).
  868. 2004-11-11 16:42:57.574: - to create GM with level '60' when @gm is used.
  869. 2004-11-11 16:42:57.574: - to ALLOW new users (with _F/_M).
  870. 2004-11-11 16:42:57.575: - with port: 6900.
  871. 2004-11-11 16:42:57.575: - with the accounts file name: 'save/account.txt'.
  872. 2004-11-11 16:42:57.575: - with the GM accounts file name: 'conf/GM_account.txt'.
  873. 2004-11-11 16:42:57.575: - to check GM accounts file modifications every 15 seconds.
  874. 2004-11-11 16:42:57.575: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  875. 2004-11-11 16:42:57.576: - to SAVE only unkown packets sending by a char-server or a remote administration.
  876. 2004-11-11 16:42:57.576: - to NOT display normal parse packets on console.
  877. 2004-11-11 16:42:57.576: - to NOT display administration parse packets on console.
  878. 2004-11-11 16:42:57.576: - to NOT display char-server parse packets on console.
  879. 2004-11-11 16:42:57.576: - with no minimum level for connection.
  880. 2004-11-11 16:42:57.576: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  881. 2004-11-11 16:42:57.576: - to create new accounts with an unlimited time.
  882. 2004-11-11 16:42:57.576: - with control of players IP between login-server and char-server.
  883. 2004-11-11 16:42:57.576: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  884. 2004-11-11 16:42:57.594: The LAN configuration of the server is set:
  885. 2004-11-11 16:42:57.595: - with LAN IP of char-server: 127.0.0.1.
  886. 2004-11-11 16:42:57.595: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  887. 2004-11-11 16:42:57.596: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  888. 2004-11-11 16:42:57.600: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  889. 2004-11-11 16:42:57.600: The login-server is ready (Server is listening on the port 6900).
  890. 2004-11-11 16:43:39.859: The login-server starting...
  891. 2004-11-11 16:43:39.859: The configuration of the server is set:
  892. 2004-11-11 16:43:39.859: - with no remote administration.
  893. 2004-11-11 16:43:39.859: - to accept any IP for remote administration
  894. 2004-11-11 16:43:39.859: - with the DEFAULT 'To GM become' password (gm_pass).
  895. 2004-11-11 16:43:39.859: - to create GM with level '60' when @gm is used.
  896. 2004-11-11 16:43:39.859: - to ALLOW new users (with _F/_M).
  897. 2004-11-11 16:43:39.859: - with port: 6900.
  898. 2004-11-11 16:43:39.860: - with the accounts file name: 'save/account.txt'.
  899. 2004-11-11 16:43:39.860: - with the GM accounts file name: 'conf/GM_account.txt'.
  900. 2004-11-11 16:43:39.860: - to check GM accounts file modifications every 15 seconds.
  901. 2004-11-11 16:43:39.860: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  902. 2004-11-11 16:43:39.860: - to SAVE only unkown packets sending by a char-server or a remote administration.
  903. 2004-11-11 16:43:39.860: - to NOT display normal parse packets on console.
  904. 2004-11-11 16:43:39.860: - to NOT display administration parse packets on console.
  905. 2004-11-11 16:43:39.860: - to NOT display char-server parse packets on console.
  906. 2004-11-11 16:43:39.860: - with no minimum level for connection.
  907. 2004-11-11 16:43:39.861: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  908. 2004-11-11 16:43:39.861: - to create new accounts with an unlimited time.
  909. 2004-11-11 16:43:39.861: - with control of players IP between login-server and char-server.
  910. 2004-11-11 16:43:39.861: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  911. 2004-11-11 16:43:39.862: The LAN configuration of the server is set:
  912. 2004-11-11 16:43:39.862: - with LAN IP of char-server: 127.0.0.1.
  913. 2004-11-11 16:43:39.862: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  914. 2004-11-11 16:43:39.864: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  915. 2004-11-11 16:43:39.865: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  916. 2004-11-11 16:43:39.866: The login-server is ready (Server is listening on the port 6900).
  917. 2004-11-11 16:43:42.308: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  918. 2004-11-11 16:43:42.309: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  919. 2004-11-11 16:43:42.310: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  920. 2004-11-11 16:43:44.791: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  921. 2004-11-11 16:44:26.468: The login-server starting...
  922. 2004-11-11 16:44:26.468: The configuration of the server is set:
  923. 2004-11-11 16:44:26.468: - with no remote administration.
  924. 2004-11-11 16:44:26.468: - to accept any IP for remote administration
  925. 2004-11-11 16:44:26.468: - with the DEFAULT 'To GM become' password (gm_pass).
  926. 2004-11-11 16:44:26.468: - to create GM with level '60' when @gm is used.
  927. 2004-11-11 16:44:26.468: - to ALLOW new users (with _F/_M).
  928. 2004-11-11 16:44:26.468: - with port: 6900.
  929. 2004-11-11 16:44:26.469: - with the accounts file name: 'save/account.txt'.
  930. 2004-11-11 16:44:26.469: - with the GM accounts file name: 'conf/GM_account.txt'.
  931. 2004-11-11 16:44:26.469: - to check GM accounts file modifications every 15 seconds.
  932. 2004-11-11 16:44:26.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  933. 2004-11-11 16:44:26.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
  934. 2004-11-11 16:44:26.469: - to NOT display normal parse packets on console.
  935. 2004-11-11 16:44:26.469: - to NOT display administration parse packets on console.
  936. 2004-11-11 16:44:26.469: - to NOT display char-server parse packets on console.
  937. 2004-11-11 16:44:26.469: - with no minimum level for connection.
  938. 2004-11-11 16:44:26.470: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  939. 2004-11-11 16:44:26.470: - to create new accounts with an unlimited time.
  940. 2004-11-11 16:44:26.470: - with control of players IP between login-server and char-server.
  941. 2004-11-11 16:44:26.470: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  942. 2004-11-11 16:44:26.471: The LAN configuration of the server is set:
  943. 2004-11-11 16:44:26.471: - with LAN IP of char-server: 127.0.0.1.
  944. 2004-11-11 16:44:26.471: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  945. 2004-11-11 16:44:26.472: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  946. 2004-11-11 16:44:26.474: 6 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  947. 2004-11-11 16:44:26.474: The login-server is ready (Server is listening on the port 6900).
  948. 2004-11-11 16:44:29.635: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  949. 2004-11-11 16:44:29.635: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  950. 2004-11-11 16:44:29.637: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  951. 2004-11-11 16:46:36.685: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  952. 2004-11-11 16:46:36.685: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
  953. 2004-11-11 16:46:37.308: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
  954. 2004-11-11 16:46:52.378: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  955. 2004-11-11 16:47:20.578: The login-server starting...
  956. 2004-11-11 16:47:20.578: The configuration of the server is set:
  957. 2004-11-11 16:47:20.578: - with no remote administration.
  958. 2004-11-11 16:47:20.578: - to accept any IP for remote administration
  959. 2004-11-11 16:47:20.578: - with the DEFAULT 'To GM become' password (gm_pass).
  960. 2004-11-11 16:47:20.578: - to create GM with level '60' when @gm is used.
  961. 2004-11-11 16:47:20.578: - to ALLOW new users (with _F/_M).
  962. 2004-11-11 16:47:20.578: - with port: 6900.
  963. 2004-11-11 16:47:20.578: - with the accounts file name: 'save/account.txt'.
  964. 2004-11-11 16:47:20.578: - with the GM accounts file name: 'conf/GM_account.txt'.
  965. 2004-11-11 16:47:20.578: - to check GM accounts file modifications every 15 seconds.
  966. 2004-11-11 16:47:20.579: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  967. 2004-11-11 16:47:20.579: - to SAVE only unkown packets sending by a char-server or a remote administration.
  968. 2004-11-11 16:47:20.579: - to NOT display normal parse packets on console.
  969. 2004-11-11 16:47:20.579: - to NOT display administration parse packets on console.
  970. 2004-11-11 16:47:20.579: - to NOT display char-server parse packets on console.
  971. 2004-11-11 16:47:20.579: - with no minimum level for connection.
  972. 2004-11-11 16:47:20.579: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  973. 2004-11-11 16:47:20.579: - to create new accounts with an unlimited time.
  974. 2004-11-11 16:47:20.580: - with control of players IP between login-server and char-server.
  975. 2004-11-11 16:47:20.580: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  976. 2004-11-11 16:47:20.580: The LAN configuration of the server is set:
  977. 2004-11-11 16:47:20.582: - with LAN IP of char-server: 127.0.0.1.
  978. 2004-11-11 16:47:20.582: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  979. 2004-11-11 16:47:20.584: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  980. 2004-11-11 16:47:20.586: 6 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  981. 2004-11-11 16:47:20.587: The login-server is ready (Server is listening on the port 6900).
  982. 2004-11-11 16:47:22.331: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  983. 2004-11-11 16:47:22.331: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  984. 2004-11-11 16:47:22.332: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  985. 2004-11-11 16:47:44.744: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  986. 2004-11-11 16:47:44.744: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
  987. 2004-11-11 16:47:45.135: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
  988. 2004-11-11 16:47:47.911: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  989. 2004-11-11 16:47:47.912: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
  990. 2004-11-11 16:47:48.300: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
  991. 2004-11-11 16:48:03.321: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  992. 2004-11-11 16:48:03.825: ----End of login-server (normal end with closing of all files).
  993. 2004-11-11 16:48:22.000: The login-server starting...
  994. 2004-11-11 16:48:22.000: The configuration of the server is set:
  995. 2004-11-11 16:48:22.000: - with no remote administration.
  996. 2004-11-11 16:48:22.000: - to accept any IP for remote administration
  997. 2004-11-11 16:48:22.000: - with the DEFAULT 'To GM become' password (gm_pass).
  998. 2004-11-11 16:48:22.000: - to create GM with level '60' when @gm is used.
  999. 2004-11-11 16:48:22.000: - to ALLOW new users (with _F/_M).
  1000. 2004-11-11 16:48:22.000: - with port: 6900.
  1001. 2004-11-11 16:48:22.001: - with the accounts file name: 'save/account.txt'.
  1002. 2004-11-11 16:48:22.001: - with the GM accounts file name: 'conf/GM_account.txt'.
  1003. 2004-11-11 16:48:22.001: - to check GM accounts file modifications every 15 seconds.
  1004. 2004-11-11 16:48:22.001: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1005. 2004-11-11 16:48:22.001: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1006. 2004-11-11 16:48:22.001: - to NOT display normal parse packets on console.
  1007. 2004-11-11 16:48:22.001: - to NOT display administration parse packets on console.
  1008. 2004-11-11 16:48:22.001: - to NOT display char-server parse packets on console.
  1009. 2004-11-11 16:48:22.002: - with no minimum level for connection.
  1010. 2004-11-11 16:48:22.002: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1011. 2004-11-11 16:48:22.002: - to create new accounts with an unlimited time.
  1012. 2004-11-11 16:48:22.002: - with control of players IP between login-server and char-server.
  1013. 2004-11-11 16:48:22.002: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1014. 2004-11-11 16:48:22.003: The LAN configuration of the server is set:
  1015. 2004-11-11 16:48:22.003: - with LAN IP of char-server: 127.0.0.1.
  1016. 2004-11-11 16:48:22.003: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1017. 2004-11-11 16:48:22.004: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1018. 2004-11-11 16:48:22.006: 5 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  1019. 2004-11-11 16:48:22.009: The login-server is ready (Server is listening on the port 6900).
  1020. 2004-11-11 16:48:24.342: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1021. 2004-11-11 16:48:24.342: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1022. 2004-11-11 16:48:24.344: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1023. 2004-11-11 16:49:09.967: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1024. 2004-11-11 16:49:09.967: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
  1025. 2004-11-11 16:49:15.570: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
  1026. 2004-11-11 16:49:15.570: Account creation and authentification accepted (account cameri (id: 2000002), pass: juan16, sex: M, connection with _F/_M, ip: 127.0.0.1)
  1027. 2004-11-11 16:49:16.398: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1028. 2004-11-11 16:51:17.974: ----End of login-server (normal end with closing of all files).
  1029. 2004-11-11 16:51:25.234: The login-server starting...
  1030. 2004-11-11 16:51:25.234: The configuration of the server is set:
  1031. 2004-11-11 16:51:25.234: - with no remote administration.
  1032. 2004-11-11 16:51:25.234: - to accept any IP for remote administration
  1033. 2004-11-11 16:51:25.234: - with the DEFAULT 'To GM become' password (gm_pass).
  1034. 2004-11-11 16:51:25.234: - to create GM with level '60' when @gm is used.
  1035. 2004-11-11 16:51:25.234: - to ALLOW new users (with _F/_M).
  1036. 2004-11-11 16:51:25.235: - with port: 6900.
  1037. 2004-11-11 16:51:25.235: - with the accounts file name: 'save/account.txt'.
  1038. 2004-11-11 16:51:25.235: - with the GM accounts file name: 'conf/GM_account.txt'.
  1039. 2004-11-11 16:51:25.235: - to check GM accounts file modifications every 15 seconds.
  1040. 2004-11-11 16:51:25.235: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1041. 2004-11-11 16:51:25.235: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1042. 2004-11-11 16:51:25.235: - to NOT display normal parse packets on console.
  1043. 2004-11-11 16:51:25.235: - to NOT display administration parse packets on console.
  1044. 2004-11-11 16:51:25.235: - to NOT display char-server parse packets on console.
  1045. 2004-11-11 16:51:25.236: - with no minimum level for connection.
  1046. 2004-11-11 16:51:25.236: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1047. 2004-11-11 16:51:25.236: - to create new accounts with an unlimited time.
  1048. 2004-11-11 16:51:25.236: - with control of players IP between login-server and char-server.
  1049. 2004-11-11 16:51:25.236: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1050. 2004-11-11 16:51:25.237: The LAN configuration of the server is set:
  1051. 2004-11-11 16:51:25.237: - with LAN IP of char-server: 127.0.0.1.
  1052. 2004-11-11 16:51:25.237: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1053. 2004-11-11 16:51:25.238: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1054. 2004-11-11 16:51:25.240: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  1055. 2004-11-11 16:51:25.241: The login-server is ready (Server is listening on the port 6900).
  1056. 2004-11-11 16:51:27.129: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1057. 2004-11-11 16:51:27.130: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1058. 2004-11-11 16:51:27.133: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1059. 2004-11-11 16:51:48.970: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1060. 2004-11-11 16:51:48.970: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1061. 2004-11-11 16:51:49.440: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1062. 2004-11-11 16:51:59.769: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1063. 2004-11-11 16:52:00.665: ----End of login-server (normal end with closing of all files).
  1064. 2004-11-11 16:52:15.890: The login-server starting...
  1065. 2004-11-11 16:52:15.890: The configuration of the server is set:
  1066. 2004-11-11 16:52:15.890: - with no remote administration.
  1067. 2004-11-11 16:52:15.890: - to accept any IP for remote administration
  1068. 2004-11-11 16:52:15.890: - with the DEFAULT 'To GM become' password (gm_pass).
  1069. 2004-11-11 16:52:15.890: - to create GM with level '60' when @gm is used.
  1070. 2004-11-11 16:52:15.890: - to ALLOW new users (with _F/_M).
  1071. 2004-11-11 16:52:15.890: - with port: 6900.
  1072. 2004-11-11 16:52:15.891: - with the accounts file name: 'save/account.txt'.
  1073. 2004-11-11 16:52:15.891: - with the GM accounts file name: 'conf/GM_account.txt'.
  1074. 2004-11-11 16:52:15.891: - to check GM accounts file modifications every 15 seconds.
  1075. 2004-11-11 16:52:15.891: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1076. 2004-11-11 16:52:15.891: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1077. 2004-11-11 16:52:15.891: - to NOT display normal parse packets on console.
  1078. 2004-11-11 16:52:15.891: - to NOT display administration parse packets on console.
  1079. 2004-11-11 16:52:15.891: - to NOT display char-server parse packets on console.
  1080. 2004-11-11 16:52:15.892: - with no minimum level for connection.
  1081. 2004-11-11 16:52:15.892: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1082. 2004-11-11 16:52:15.892: - to create new accounts with an unlimited time.
  1083. 2004-11-11 16:52:15.892: - with control of players IP between login-server and char-server.
  1084. 2004-11-11 16:52:15.892: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1085. 2004-11-11 16:52:15.893: The LAN configuration of the server is set:
  1086. 2004-11-11 16:52:15.893: - with LAN IP of char-server: 127.0.0.1.
  1087. 2004-11-11 16:52:15.893: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1088. 2004-11-11 16:52:15.896: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1089. 2004-11-11 16:52:15.898: 6 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  1090. 2004-11-11 16:52:15.898: The login-server is ready (Server is listening on the port 6900).
  1091. 2004-11-11 16:52:17.567: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1092. 2004-11-11 16:52:17.567: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1093. 2004-11-11 16:52:17.572: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1094. 2004-11-11 16:52:56.354: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1095. 2004-11-11 16:52:56.355: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
  1096. 2004-11-11 16:53:01.776: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
  1097. 2004-11-11 16:53:01.776: Account creation and authentification accepted (account cameri (id: 2000002), pass: juan16, sex: M, connection with _F/_M, ip: 127.0.0.1)
  1098. 2004-11-11 16:53:02.316: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1099. 2004-11-11 16:53:11.597: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1100. 2004-11-11 16:53:12.191: ----End of login-server (normal end with closing of all files).
  1101. >>>>>>> .r194
  1102. =======
  1103. >>>>>>> .r251
  1104. 2004-11-18 06:56:39.281: The login-server starting...
  1105. 2004-11-18 06:56:39.348: The configuration of the server is set:
  1106. 2004-11-18 06:56:39.348: - with no remote administration.
  1107. 2004-11-18 06:56:39.348: - to accept any IP for remote administration
  1108. 2004-11-18 06:56:39.348: - with the DEFAULT 'To GM become' password (gm_pass).
  1109. 2004-11-18 06:56:39.349: - to create GM with level '60' when @gm is used.
  1110. 2004-11-18 06:56:39.349: - to ALLOW new users (with _F/_M).
  1111. 2004-11-18 06:56:39.349: - with port: 6900.
  1112. 2004-11-18 06:56:39.349: - with the accounts file name: 'save/account.txt'.
  1113. 2004-11-18 06:56:39.349: - with the GM accounts file name: 'conf/GM_account.txt'.
  1114. 2004-11-18 06:56:39.349: - to check GM accounts file modifications every 15 seconds.
  1115. 2004-11-18 06:56:39.349: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1116. 2004-11-18 06:56:39.350: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1117. 2004-11-18 06:56:39.350: - to NOT display normal parse packets on console.
  1118. 2004-11-18 06:56:39.350: - to NOT display administration parse packets on console.
  1119. 2004-11-18 06:56:39.350: - to NOT display char-server parse packets on console.
  1120. 2004-11-18 06:56:39.350: - with no minimum level for connection.
  1121. 2004-11-18 06:56:39.350: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1122. 2004-11-18 06:56:39.350: - to create new accounts with an unlimited time.
  1123. 2004-11-18 06:56:39.350: - with control of players IP between login-server and char-server.
  1124. 2004-11-18 06:56:39.351: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1125. 2004-11-18 06:56:39.362: The LAN configuration of the server is set:
  1126. 2004-11-18 06:56:39.362: - with LAN IP of char-server: 127.0.0.1.
  1127. 2004-11-18 06:56:39.362: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1128. 2004-11-18 06:56:39.363: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1129. 2004-11-18 06:56:39.371: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1130. 2004-11-18 06:56:39.372: The login-server is ready (Server is listening on the port 6900).
  1131. 2004-11-18 06:59:43.131: ----End of login-server (normal end with closing of all files).
  1132. 2004-11-18 15:17:07.984: The login-server starting...
  1133. 2004-11-18 15:17:07.984: The configuration of the server is set:
  1134. 2004-11-18 15:17:07.984: - with no remote administration.
  1135. 2004-11-18 15:17:07.984: - to accept any IP for remote administration
  1136. 2004-11-18 15:17:07.984: - with the DEFAULT 'To GM become' password (gm_pass).
  1137. 2004-11-18 15:17:07.984: - to create GM with level '60' when @gm is used.
  1138. 2004-11-18 15:17:07.984: - to ALLOW new users (with _F/_M).
  1139. 2004-11-18 15:17:07.985: - with port: 6900.
  1140. 2004-11-18 15:17:07.985: - with the accounts file name: 'save/account.txt'.
  1141. 2004-11-18 15:17:07.985: - with the GM accounts file name: 'conf/GM_account.txt'.
  1142. 2004-11-18 15:17:07.985: - to check GM accounts file modifications every 15 seconds.
  1143. 2004-11-18 15:17:07.985: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1144. 2004-11-18 15:17:07.985: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1145. 2004-11-18 15:17:07.985: - to NOT display normal parse packets on console.
  1146. 2004-11-18 15:17:07.985: - to NOT display administration parse packets on console.
  1147. 2004-11-18 15:17:07.985: - to NOT display char-server parse packets on console.
  1148. 2004-11-18 15:17:07.986: - with no minimum level for connection.
  1149. 2004-11-18 15:17:07.986: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1150. 2004-11-18 15:17:07.986: - to create new accounts with an unlimited time.
  1151. 2004-11-18 15:17:07.986: - with control of players IP between login-server and char-server.
  1152. 2004-11-18 15:17:07.986: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1153. 2004-11-18 15:17:07.987: The LAN configuration of the server is set:
  1154. 2004-11-18 15:17:07.987: - with LAN IP of char-server: 127.0.0.1.
  1155. 2004-11-18 15:17:07.987: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1156. 2004-11-18 15:17:07.988: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1157. 2004-11-18 15:17:07.990: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1158. 2004-11-18 15:17:07.991: The login-server is ready (Server is listening on the port 6900).
  1159. 2004-11-18 15:17:16.982: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1160. 2004-11-18 15:17:16.982: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1161. 2004-11-18 15:17:17.048: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1162. 2004-11-18 15:18:29.492: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1163. 2004-11-18 15:18:29.493: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1164. 2004-11-18 15:18:34.522: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1165. 2004-11-18 15:19:18.396: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1166. 2004-11-18 15:19:18.396: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1167. 2004-11-18 15:19:18.833: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1168. 2004-11-18 15:20:11.507: ----End of login-server (normal end with closing of all files).
  1169. 2004-11-18 15:28:11.859: The login-server starting...
  1170. 2004-11-18 15:28:11.859: The configuration of the server is set:
  1171. 2004-11-18 15:28:11.859: - with no remote administration.
  1172. 2004-11-18 15:28:11.859: - to accept any IP for remote administration
  1173. 2004-11-18 15:28:11.859: - with the DEFAULT 'To GM become' password (gm_pass).
  1174. 2004-11-18 15:28:11.859: - to create GM with level '60' when @gm is used.
  1175. 2004-11-18 15:28:11.859: - to ALLOW new users (with _F/_M).
  1176. 2004-11-18 15:28:11.860: - with port: 6900.
  1177. 2004-11-18 15:28:11.860: - with the accounts file name: 'save/account.txt'.
  1178. 2004-11-18 15:28:11.860: - with the GM accounts file name: 'conf/GM_account.txt'.
  1179. 2004-11-18 15:28:11.860: - to check GM accounts file modifications every 15 seconds.
  1180. 2004-11-18 15:28:11.860: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1181. 2004-11-18 15:28:11.860: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1182. 2004-11-18 15:28:11.860: - to NOT display normal parse packets on console.
  1183. 2004-11-18 15:28:11.860: - to NOT display administration parse packets on console.
  1184. 2004-11-18 15:28:11.860: - to NOT display char-server parse packets on console.
  1185. 2004-11-18 15:28:11.861: - with no minimum level for connection.
  1186. 2004-11-18 15:28:11.861: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1187. 2004-11-18 15:28:11.861: - to create new accounts with an unlimited time.
  1188. 2004-11-18 15:28:11.861: - with control of players IP between login-server and char-server.
  1189. 2004-11-18 15:28:11.861: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1190. 2004-11-18 15:28:11.862: The LAN configuration of the server is set:
  1191. 2004-11-18 15:28:11.862: - with LAN IP of char-server: 127.0.0.1.
  1192. 2004-11-18 15:28:11.862: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1193. 2004-11-18 15:28:11.863: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1194. 2004-11-18 15:28:11.865: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1195. 2004-11-18 15:28:11.865: The login-server is ready (Server is listening on the port 6900).
  1196. 2004-11-18 15:28:12.075: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1197. 2004-11-18 15:28:12.075: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1198. 2004-11-18 15:28:12.077: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1199. 2004-11-18 15:28:35.002: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1200. 2004-11-18 15:28:35.002: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1201. 2004-11-18 15:28:35.485: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1202. 2004-11-18 15:36:09.235: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1203. 2004-11-18 15:36:09.235: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1204. 2004-11-18 15:36:09.564: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1205. 2004-11-18 15:43:03.314: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1206. 2004-11-18 15:43:03.314: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1207. 2004-11-18 15:43:03.847: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1208. 2004-11-18 15:43:30.946: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1209. 2004-11-18 15:43:30.946: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1210. 2004-11-18 15:43:31.314: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1211. 2004-11-18 15:44:18.482: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1212. 2004-11-18 15:44:18.482: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1213. 2004-11-18 15:44:18.817: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1214. 2004-11-18 15:56:01.204: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1215. 2004-11-18 16:19:15.251: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1216. 2004-11-18 16:56:33.637: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1217. 2004-11-18 16:56:33.637: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1218. 2004-11-18 16:56:33.952: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1219. 2004-11-18 16:57:15.314: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1220. 2004-11-18 16:57:15.314: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1221. 2004-11-18 16:57:15.615: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1222. 2004-11-18 16:58:16.268: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1223. 2004-11-18 16:58:25.767: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1224. 2004-11-18 16:58:38.167: ----End of login-server (normal end with closing of all files).
  1225. 2002-11-20 11:21:03.062: The login-server starting...
  1226. 2002-11-20 11:21:03.062: The configuration of the server is set:
  1227. 2002-11-20 11:21:03.063: - with no remote administration.
  1228. 2002-11-20 11:21:03.063: - to accept any IP for remote administration
  1229. 2002-11-20 11:21:03.063: - with the DEFAULT 'To GM become' password (gm_pass).
  1230. 2002-11-20 11:21:03.063: - to create GM with level '60' when @gm is used.
  1231. 2002-11-20 11:21:03.063: - to ALLOW new users (with _F/_M).
  1232. 2002-11-20 11:21:03.063: - with port: 6900.
  1233. 2002-11-20 11:21:03.063: - with the accounts file name: 'save/account.txt'.
  1234. 2002-11-20 11:21:03.064: - with the GM accounts file name: 'conf/GM_account.txt'.
  1235. 2002-11-20 11:21:03.064: - to check GM accounts file modifications every 15 seconds.
  1236. 2002-11-20 11:21:03.064: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1237. 2002-11-20 11:21:03.064: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1238. 2002-11-20 11:21:03.064: - to NOT display normal parse packets on console.
  1239. 2002-11-20 11:21:03.064: - to NOT display administration parse packets on console.
  1240. 2002-11-20 11:21:03.064: - to NOT display char-server parse packets on console.
  1241. 2002-11-20 11:21:03.064: - with no minimum level for connection.
  1242. 2002-11-20 11:21:03.065: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1243. 2002-11-20 11:21:03.065: - to create new accounts with an unlimited time.
  1244. 2002-11-20 11:21:03.065: - with control of players IP between login-server and char-server.
  1245. 2002-11-20 11:21:03.065: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1246. 2002-11-20 11:21:03.072: The LAN configuration of the server is set:
  1247. 2002-11-20 11:21:03.073: - with LAN IP of char-server: 127.0.0.1.
  1248. 2002-11-20 11:21:03.073: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1249. 2002-11-20 11:21:03.074: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1250. 2002-11-20 11:21:03.086: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1251. 2002-11-20 11:21:03.087: The login-server is ready (Server is listening on the port 6900).
  1252. 2002-11-20 11:21:11.389: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1253. 2002-11-20 11:21:11.390: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1254. 2002-11-20 11:21:11.392: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1255. 2002-11-20 11:24:15.796: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1256. 2002-11-20 11:24:15.796: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1257. 2002-11-20 11:24:16.332: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1258. 2002-11-20 11:32:59.714: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1259. 2002-11-20 11:36:00.217: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1260. 2002-11-20 11:36:13.755: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1261. 2002-11-20 11:39:57.379: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1262. 2002-11-20 11:50:02.794: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
  1263. 2002-11-20 11:50:02.813: 'ladmin'-login: Connection in administration mode REFUSED - remote administration is disabled (encrypted password, ip: 127.0.0.1)
  1264. 2002-11-20 11:50:49.226: ----End of login-server (normal end with closing of all files).
  1265. 2002-11-20 11:50:53.203: The login-server starting...
  1266. 2002-11-20 11:50:53.203: The configuration of the server is set:
  1267. 2002-11-20 11:50:53.203: - with a remote administration with the DEFAULT password.
  1268. 2002-11-20 11:50:53.204: - to accept any IP for remote administration
  1269. 2002-11-20 11:50:53.204: - with the DEFAULT 'To GM become' password (gm_pass).
  1270. 2002-11-20 11:50:53.204: - to create GM with level '60' when @gm is used.
  1271. 2002-11-20 11:50:53.204: - to ALLOW new users (with _F/_M).
  1272. 2002-11-20 11:50:53.204: - with port: 6900.
  1273. 2002-11-20 11:50:53.204: - with the accounts file name: 'save/account.txt'.
  1274. 2002-11-20 11:50:53.204: - with the GM accounts file name: 'conf/GM_account.txt'.
  1275. 2002-11-20 11:50:53.204: - to check GM accounts file modifications every 15 seconds.
  1276. 2002-11-20 11:50:53.205: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1277. 2002-11-20 11:50:53.205: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1278. 2002-11-20 11:50:53.205: - to NOT display normal parse packets on console.
  1279. 2002-11-20 11:50:53.205: - to NOT display administration parse packets on console.
  1280. 2002-11-20 11:50:53.205: - to NOT display char-server parse packets on console.
  1281. 2002-11-20 11:50:53.205: - with no minimum level for connection.
  1282. 2002-11-20 11:50:53.205: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1283. 2002-11-20 11:50:53.205: - to create new accounts with an unlimited time.
  1284. 2002-11-20 11:50:53.206: - with control of players IP between login-server and char-server.
  1285. 2002-11-20 11:50:53.206: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1286. 2002-11-20 11:50:53.207: The LAN configuration of the server is set:
  1287. 2002-11-20 11:50:53.207: - with LAN IP of char-server: 127.0.0.1.
  1288. 2002-11-20 11:50:53.207: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1289. 2002-11-20 11:50:53.208: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1290. 2002-11-20 11:50:53.212: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1291. 2002-11-20 11:50:53.213: The login-server is ready (Server is listening on the port 6900).
  1292. 2002-11-20 11:50:54.687: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
  1293. 2002-11-20 11:50:54.691: 'ladmin'-login: Connection in administration mode accepted (encrypted password, ip: 127.0.0.1)
  1294. 2002-11-20 11:50:54.747: 'ladmin': Sending of the server version (ip: 127.0.0.1)
  1295. 2002-11-20 11:51:01.347: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1296. 2002-11-20 11:51:01.348: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1297. 2002-11-20 11:51:01.350: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1298. 2002-11-20 11:51:04.933: 'ladmin': Sending of the server version (ip: 127.0.0.1)
  1299. 2002-11-20 11:51:24.216: 'ladmin': Sending an accounts list (ask: from 0 to 100000000, ip: 127.0.0.1)
  1300. 2002-11-20 11:51:24.219: 'ladmin': Sending an accounts list (ask: from 2000003 to 100000000, ip: 127.0.0.1)
  1301. 2002-11-20 11:51:30.457: 'ladmin': Sending an accounts list (ask: from 0 to 100000000, ip: 127.0.0.1)
  1302. 2002-11-20 11:51:30.461: 'ladmin': Sending an accounts list (ask: from 2000003 to 100000000, ip: 127.0.0.1)
  1303. 2002-11-20 11:51:37.055: 'ladmin': Sending an accounts list (ask: from 0 to 100000000, ip: 127.0.0.1)
  1304. 2002-11-20 11:51:37.057: 'ladmin': Sending an accounts list (ask: from 2000003 to 100000000, ip: 127.0.0.1)
  1305. 2002-11-20 11:52:38.538: 'ladmin': Sending information of an account (request by the name; account: cameri, id: 2000002, ip: 127.0.0.1)
  1306. 2002-11-20 11:54:13.334: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
  1307. 2002-11-20 11:54:13.338: 'ladmin'-login: Connection in administration mode accepted (encrypted password, ip: 127.0.0.1)
  1308. 2002-11-20 11:54:13.341: 'ladmin': Sending of the server version (ip: 127.0.0.1)
  1309. 2002-11-20 11:54:15.794: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
  1310. 2002-11-20 11:54:15.798: 'ladmin'-login: Connection in administration mode accepted (encrypted password, ip: 127.0.0.1)
  1311. 2002-11-20 11:54:15.803: 'ladmin': Sending of the server version (ip: 127.0.0.1)
  1312. 2002-11-20 12:05:11.981: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1313. 2002-11-20 12:05:11.981: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1314. 2002-11-20 12:05:12.591: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1315. 2002-11-20 12:08:24.119: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1316. 2002-11-20 12:08:25.493: ----End of login-server (normal end with closing of all files).
  1317. 2002-11-20 12:09:47.562: The login-server starting...
  1318. 2002-11-20 12:09:47.562: The configuration of the server is set:
  1319. 2002-11-20 12:09:47.562: - with a remote administration with the DEFAULT password.
  1320. 2002-11-20 12:09:47.562: - to accept any IP for remote administration
  1321. 2002-11-20 12:09:47.562: - with the DEFAULT 'To GM become' password (gm_pass).
  1322. 2002-11-20 12:09:47.562: - to create GM with level '60' when @gm is used.
  1323. 2002-11-20 12:09:47.562: - to ALLOW new users (with _F/_M).
  1324. 2002-11-20 12:09:47.562: - with port: 6900.
  1325. 2002-11-20 12:09:47.562: - with the accounts file name: 'save/account.txt'.
  1326. 2002-11-20 12:09:47.562: - with the GM accounts file name: 'conf/GM_account.txt'.
  1327. 2002-11-20 12:09:47.562: - to check GM accounts file modifications every 15 seconds.
  1328. 2002-11-20 12:09:47.562: - to save password in plain text.
  1329. 2002-11-20 12:09:47.562: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1330. 2002-11-20 12:09:47.562: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1331. 2002-11-20 12:09:47.562: - to NOT display normal parse packets on console.
  1332. 2002-11-20 12:09:47.562: - to NOT display administration parse packets on console.
  1333. 2002-11-20 12:09:47.563: - to NOT display char-server parse packets on console.
  1334. 2002-11-20 12:09:47.563: - with no minimum level for connection.
  1335. 2002-11-20 12:09:47.563: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1336. 2002-11-20 12:09:47.563: - to create new accounts with an unlimited time.
  1337. 2002-11-20 12:09:47.563: - with control of players IP between login-server and char-server.
  1338. 2002-11-20 12:09:47.563: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1339. 2002-11-20 12:09:47.584: The LAN configuration of the server is set:
  1340. 2002-11-20 12:09:47.584: - with LAN IP of char-server: 127.0.0.1.
  1341. 2002-11-20 12:09:47.584: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1342. 2002-11-20 12:09:47.597: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1343. 2002-11-20 12:09:47.608: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1344. 2002-11-20 12:09:47.608: The login-server is ready (Server is listening on the port 6900).
  1345. 2002-11-20 12:09:53.833: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1346. 2002-11-20 12:09:53.833: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1347. 2002-11-20 12:09:53.835: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1348. 2002-11-20 12:10:16.114: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1349. 2002-11-20 12:10:16.115: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1350. 2002-11-20 12:10:16.922: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1351. 2002-11-20 12:10:25.844: Char-server 'eAthena': Sex change (account: 2000002, new sex F, ip: 127.0.0.1).
  1352. 2002-11-20 12:10:34.645: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1353. 2002-11-20 12:10:34.645: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1354. 2002-11-20 12:10:35.024: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1355. 2002-11-20 12:10:52.147: Char-server 'eAthena': Sex change (account: 2000002, new sex M, ip: 127.0.0.1).
  1356. 2002-11-20 12:11:01.656: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1357. 2002-11-20 12:11:01.656: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1358. 2002-11-20 12:11:02.795: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1359. 2002-11-20 12:19:23.951: ----End of login-server (normal end with closing of all files).
  1360. 2004-11-20 22:50:49.812: The login-server starting...
  1361. 2004-11-20 22:50:49.812: The configuration of the server is set:
  1362. 2004-11-20 22:50:49.812: - with a remote administration with the DEFAULT password.
  1363. 2004-11-20 22:50:49.812: - to accept any IP for remote administration
  1364. 2004-11-20 22:50:49.812: - with the DEFAULT 'To GM become' password (gm_pass).
  1365. 2004-11-20 22:50:49.812: - to create GM with level '60' when @gm is used.
  1366. 2004-11-20 22:50:49.812: - to ALLOW new users (with _F/_M).
  1367. 2004-11-20 22:50:49.812: - with port: 6900.
  1368. 2004-11-20 22:50:49.812: - with the accounts file name: 'save/account.txt'.
  1369. 2004-11-20 22:50:49.812: - with the GM accounts file name: 'conf/GM_account.txt'.
  1370. 2004-11-20 22:50:49.812: - to check GM accounts file modifications every 15 seconds.
  1371. 2004-11-20 22:50:49.812: - to save password in plain text.
  1372. 2004-11-20 22:50:49.812: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1373. 2004-11-20 22:50:49.812: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1374. 2004-11-20 22:50:49.813: - to NOT display normal parse packets on console.
  1375. 2004-11-20 22:50:49.813: - to NOT display administration parse packets on console.
  1376. 2004-11-20 22:50:49.813: - to NOT display char-server parse packets on console.
  1377. 2004-11-20 22:50:49.813: - with no minimum level for connection.
  1378. 2004-11-20 22:50:49.813: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1379. 2004-11-20 22:50:49.813: - to create new accounts with an unlimited time.
  1380. 2004-11-20 22:50:49.813: - with control of players IP between login-server and char-server.
  1381. 2004-11-20 22:50:49.813: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1382. 2004-11-20 22:50:49.814: The LAN configuration of the server is set:
  1383. 2004-11-20 22:50:49.814: - with LAN IP of char-server: 127.0.0.1.
  1384. 2004-11-20 22:50:49.814: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1385. 2004-11-20 22:50:49.816: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1386. 2004-11-20 22:50:49.818: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1387. 2004-11-20 22:50:49.818: The login-server is ready (Server is listening on the port 6900).
  1388. 2004-11-20 22:50:49.921: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1389. 2004-11-20 22:50:49.921: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1390. 2004-11-20 22:50:49.936: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1391. 2004-11-20 22:51:05.727: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1392. 2004-11-20 22:51:05.728: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1393. 2004-11-20 22:51:06.303: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1394. 2004-11-20 22:52:42.891: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1395. 2004-11-20 22:52:43.904: ----End of login-server (normal end with closing of all files).
  1396. 2004-11-20 23:08:29.718: The login-server starting...
  1397. 2004-11-20 23:08:29.718: The configuration of the server is set:
  1398. 2004-11-20 23:08:29.718: - with a remote administration with the DEFAULT password.
  1399. 2004-11-20 23:08:29.718: - to accept any IP for remote administration
  1400. 2004-11-20 23:08:29.718: - with the DEFAULT 'To GM become' password (gm_pass).
  1401. 2004-11-20 23:08:29.718: - to create GM with level '60' when @gm is used.
  1402. 2004-11-20 23:08:29.718: - to ALLOW new users (with _F/_M).
  1403. 2004-11-20 23:08:29.718: - with port: 6900.
  1404. 2004-11-20 23:08:29.718: - with the accounts file name: 'save/account.txt'.
  1405. 2004-11-20 23:08:29.718: - with the GM accounts file name: 'conf/GM_account.txt'.
  1406. 2004-11-20 23:08:29.719: - to check GM accounts file modifications every 15 seconds.
  1407. 2004-11-20 23:08:29.719: - to save password in plain text.
  1408. 2004-11-20 23:08:29.719: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1409. 2004-11-20 23:08:29.719: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1410. 2004-11-20 23:08:29.719: - to NOT display normal parse packets on console.
  1411. 2004-11-20 23:08:29.719: - to NOT display administration parse packets on console.
  1412. 2004-11-20 23:08:29.719: - to NOT display char-server parse packets on console.
  1413. 2004-11-20 23:08:29.719: - with no minimum level for connection.
  1414. 2004-11-20 23:08:29.719: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1415. 2004-11-20 23:08:29.719: - to create new accounts with an unlimited time.
  1416. 2004-11-20 23:08:29.719: - with control of players IP between login-server and char-server.
  1417. 2004-11-20 23:08:29.719: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1418. 2004-11-20 23:08:29.721: The LAN configuration of the server is set:
  1419. 2004-11-20 23:08:29.721: - with LAN IP of char-server: 127.0.0.1.
  1420. 2004-11-20 23:08:29.721: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1421. 2004-11-20 23:08:29.723: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1422. 2004-11-20 23:08:29.728: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1423. 2004-11-20 23:08:29.729: The login-server is ready (Server is listening on the port 6900).
  1424. 2004-11-20 23:08:34.807: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1425. 2004-11-20 23:08:34.807: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1426. 2004-11-20 23:08:34.809: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1427. 2004-11-20 23:09:02.121: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1428. 2004-11-20 23:09:02.121: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1429. 2004-11-20 23:09:02.589: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1430. 2004-11-20 23:12:40.881: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1431. 2004-11-20 23:12:40.882: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1432. 2004-11-20 23:12:41.361: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1433. 2004-11-20 23:13:52.892: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1434. 2004-11-20 23:13:52.892: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1435. 2004-11-20 23:13:53.333: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1436. 2004-11-20 23:19:03.374: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1437. 2004-11-20 23:19:03.374: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1438. 2004-11-20 23:19:03.723: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1439. 2004-11-20 23:28:20.065: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1440. 2004-11-20 23:28:20.700: ----End of login-server (normal end with closing of all files).
  1441. 2004-11-21 00:33:39.265: The login-server starting...
  1442. 2004-11-21 00:33:39.265: The configuration of the server is set:
  1443. 2004-11-21 00:33:39.265: - with a remote administration with the DEFAULT password.
  1444. 2004-11-21 00:33:39.265: - to accept any IP for remote administration
  1445. 2004-11-21 00:33:39.265: - with the DEFAULT 'To GM become' password (gm_pass).
  1446. 2004-11-21 00:33:39.265: - to create GM with level '60' when @gm is used.
  1447. 2004-11-21 00:33:39.265: - to ALLOW new users (with _F/_M).
  1448. 2004-11-21 00:33:39.265: - with port: 6900.
  1449. 2004-11-21 00:33:39.265: - with the accounts file name: 'save/account.txt'.
  1450. 2004-11-21 00:33:39.265: - with the GM accounts file name: 'conf/GM_account.txt'.
  1451. 2004-11-21 00:33:39.265: - to check GM accounts file modifications every 15 seconds.
  1452. 2004-11-21 00:33:39.265: - to save password in plain text.
  1453. 2004-11-21 00:33:39.265: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1454. 2004-11-21 00:33:39.265: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1455. 2004-11-21 00:33:39.265: - to NOT display normal parse packets on console.
  1456. 2004-11-21 00:33:39.266: - to NOT display administration parse packets on console.
  1457. 2004-11-21 00:33:39.266: - to NOT display char-server parse packets on console.
  1458. 2004-11-21 00:33:39.266: - with no minimum level for connection.
  1459. 2004-11-21 00:33:39.266: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1460. 2004-11-21 00:33:39.266: - to create new accounts with an unlimited time.
  1461. 2004-11-21 00:33:39.266: - with control of players IP between login-server and char-server.
  1462. 2004-11-21 00:33:39.266: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1463. 2004-11-21 00:33:39.267: The LAN configuration of the server is set:
  1464. 2004-11-21 00:33:39.267: - with LAN IP of char-server: 127.0.0.1.
  1465. 2004-11-21 00:33:39.267: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1466. 2004-11-21 00:33:39.269: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1467. 2004-11-21 00:33:39.270: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1468. 2004-11-21 00:33:39.271: The login-server is ready (Server is listening on the port 6900).
  1469. 2004-11-21 00:33:39.361: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1470. 2004-11-21 00:33:39.362: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1471. 2004-11-21 00:33:39.363: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1472. 2004-11-21 00:33:47.630: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1473. 2004-11-21 00:33:47.631: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1474. 2004-11-21 00:33:47.994: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1475. 2004-11-21 00:42:37.394: ----End of login-server (normal end with closing of all files).
  1476. 2004-11-21 00:46:38.578: The login-server starting...
  1477. 2004-11-21 00:46:38.578: The configuration of the server is set:
  1478. 2004-11-21 00:46:38.578: - with a remote administration with the DEFAULT password.
  1479. 2004-11-21 00:46:38.578: - to accept any IP for remote administration
  1480. 2004-11-21 00:46:38.578: - with the DEFAULT 'To GM become' password (gm_pass).
  1481. 2004-11-21 00:46:38.578: - to create GM with level '60' when @gm is used.
  1482. 2004-11-21 00:46:38.578: - to ALLOW new users (with _F/_M).
  1483. 2004-11-21 00:46:38.578: - with port: 6900.
  1484. 2004-11-21 00:46:38.578: - with the accounts file name: 'save/account.txt'.
  1485. 2004-11-21 00:46:38.578: - with the GM accounts file name: 'conf/GM_account.txt'.
  1486. 2004-11-21 00:46:38.578: - to check GM accounts file modifications every 15 seconds.
  1487. 2004-11-21 00:46:38.578: - to save password in plain text.
  1488. 2004-11-21 00:46:38.579: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1489. 2004-11-21 00:46:38.579: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1490. 2004-11-21 00:46:38.579: - to NOT display normal parse packets on console.
  1491. 2004-11-21 00:46:38.579: - to NOT display administration parse packets on console.
  1492. 2004-11-21 00:46:38.579: - to NOT display char-server parse packets on console.
  1493. 2004-11-21 00:46:38.579: - with no minimum level for connection.
  1494. 2004-11-21 00:46:38.579: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1495. 2004-11-21 00:46:38.579: - to create new accounts with an unlimited time.
  1496. 2004-11-21 00:46:38.579: - with control of players IP between login-server and char-server.
  1497. 2004-11-21 00:46:38.580: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1498. 2004-11-21 00:46:38.581: The LAN configuration of the server is set:
  1499. 2004-11-21 00:46:38.581: - with LAN IP of char-server: 127.0.0.1.
  1500. 2004-11-21 00:46:38.581: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1501. 2004-11-21 00:46:38.583: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1502. 2004-11-21 00:46:38.585: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1503. 2004-11-21 00:46:38.586: The login-server is ready (Server is listening on the port 6900).
  1504. 2004-11-21 00:46:39.009: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1505. 2004-11-21 00:46:39.009: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1506. 2004-11-21 00:46:39.011: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1507. 2004-11-21 00:46:52.234: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1508. 2004-11-21 00:46:52.235: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1509. 2004-11-21 00:46:52.770: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1510. 2004-11-21 00:59:14.916: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1511. 2004-11-21 00:59:14.916: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1512. 2004-11-21 00:59:15.679: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1513. 2004-11-21 00:59:28.523: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1514. 2004-11-21 00:59:29.075: ----End of login-server (normal end with closing of all files).
  1515. 2004-11-21 09:21:59.296: The login-server starting...
  1516. 2004-11-21 09:21:59.296: The configuration of the server is set:
  1517. 2004-11-21 09:21:59.296: - with a remote administration with the DEFAULT password.
  1518. 2004-11-21 09:21:59.296: - to accept any IP for remote administration
  1519. 2004-11-21 09:21:59.296: - with the DEFAULT 'To GM become' password (gm_pass).
  1520. 2004-11-21 09:21:59.296: - to create GM with level '60' when @gm is used.
  1521. 2004-11-21 09:21:59.296: - to ALLOW new users (with _F/_M).
  1522. 2004-11-21 09:21:59.296: - with port: 6900.
  1523. 2004-11-21 09:21:59.296: - with the accounts file name: 'save/account.txt'.
  1524. 2004-11-21 09:21:59.297: - with the GM accounts file name: 'conf/GM_account.txt'.
  1525. 2004-11-21 09:21:59.297: - to check GM accounts file modifications every 15 seconds.
  1526. 2004-11-21 09:21:59.297: - to save password in plain text.
  1527. 2004-11-21 09:21:59.297: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1528. 2004-11-21 09:21:59.297: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1529. 2004-11-21 09:21:59.297: - to NOT display normal parse packets on console.
  1530. 2004-11-21 09:21:59.297: - to NOT display administration parse packets on console.
  1531. 2004-11-21 09:21:59.297: - to NOT display char-server parse packets on console.
  1532. 2004-11-21 09:21:59.297: - with no minimum level for connection.
  1533. 2004-11-21 09:21:59.297: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1534. 2004-11-21 09:21:59.297: - to create new accounts with an unlimited time.
  1535. 2004-11-21 09:21:59.298: - with control of players IP between login-server and char-server.
  1536. 2004-11-21 09:21:59.298: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1537. 2004-11-21 09:21:59.316: The LAN configuration of the server is set:
  1538. 2004-11-21 09:21:59.316: - with LAN IP of char-server: 127.0.0.1.
  1539. 2004-11-21 09:21:59.316: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1540. 2004-11-21 09:21:59.330: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1541. 2004-11-21 09:21:59.346: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1542. 2004-11-21 09:21:59.346: The login-server is ready (Server is listening on the port 6900).
  1543. 2004-11-21 09:22:01.800: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1544. 2004-11-21 09:22:01.800: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1545. 2004-11-21 09:22:01.819: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1546. 2004-11-21 09:22:37.143: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1547. 2004-11-21 09:22:37.143: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1548. 2004-11-21 09:22:37.642: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1549. 2004-11-21 09:23:06.489: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1550. 2004-11-21 09:23:08.809: ----End of login-server (normal end with closing of all files).
  1551. 2004-11-21 09:35:36.234: The login-server starting...
  1552. 2004-11-21 09:35:36.234: The configuration of the server is set:
  1553. 2004-11-21 09:35:36.234: - with a remote administration with the DEFAULT password.
  1554. 2004-11-21 09:35:36.234: - to accept any IP for remote administration
  1555. 2004-11-21 09:35:36.234: - with the DEFAULT 'To GM become' password (gm_pass).
  1556. 2004-11-21 09:35:36.234: - to create GM with level '60' when @gm is used.
  1557. 2004-11-21 09:35:36.234: - to ALLOW new users (with _F/_M).
  1558. 2004-11-21 09:35:36.234: - with port: 6900.
  1559. 2004-11-21 09:35:36.234: - with the accounts file name: 'save/account.txt'.
  1560. 2004-11-21 09:35:36.234: - with the GM accounts file name: 'conf/GM_account.txt'.
  1561. 2004-11-21 09:35:36.234: - to check GM accounts file modifications every 15 seconds.
  1562. 2004-11-21 09:35:36.234: - to save password in plain text.
  1563. 2004-11-21 09:35:36.234: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1564. 2004-11-21 09:35:36.234: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1565. 2004-11-21 09:35:36.234: - to NOT display normal parse packets on console.
  1566. 2004-11-21 09:35:36.234: - to NOT display administration parse packets on console.
  1567. 2004-11-21 09:35:36.235: - to NOT display char-server parse packets on console.
  1568. 2004-11-21 09:35:36.235: - with no minimum level for connection.
  1569. 2004-11-21 09:35:36.235: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1570. 2004-11-21 09:35:36.235: - to create new accounts with an unlimited time.
  1571. 2004-11-21 09:35:36.235: - with control of players IP between login-server and char-server.
  1572. 2004-11-21 09:35:36.235: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1573. 2004-11-21 09:35:36.238: The LAN configuration of the server is set:
  1574. 2004-11-21 09:35:36.238: - with LAN IP of char-server: 127.0.0.1.
  1575. 2004-11-21 09:35:36.238: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1576. 2004-11-21 09:35:36.240: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1577. 2004-11-21 09:35:36.242: 7 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1578. 2004-11-21 09:35:36.243: The login-server is ready (Server is listening on the port 6900).
  1579. 2004-11-21 09:35:39.279: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1580. 2004-11-21 09:35:39.279: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1581. 2004-11-21 09:35:39.281: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1582. 2004-11-21 09:35:41.848: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1583. 2004-11-21 09:35:41.848: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1584. 2004-11-21 09:35:42.277: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1585. 2004-11-21 09:59:21.405: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1586. 2004-11-21 09:59:21.405: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1587. 2004-11-21 09:59:21.671: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1588. 2004-11-21 10:07:41.116: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1589. 2004-11-21 10:07:41.117: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1590. 2004-11-21 10:07:41.311: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1591. 2004-11-21 10:10:40.734: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1592. 2004-11-21 10:10:40.734: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1593. 2004-11-21 10:10:41.030: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1594. 2004-11-21 10:10:52.490: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1595. 2004-11-21 10:15:32.693: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1596. 2004-11-21 10:15:32.693: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1597. 2004-11-21 10:15:33.189: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1598. 2004-11-21 10:16:05.133: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1599. 2004-11-21 10:16:05.133: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1600. 2004-11-21 10:16:05.765: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1601. 2004-11-21 10:16:21.704: Char-server 'eAthena': Sex change (account: 2000002, new sex F, ip: 127.0.0.1).
  1602. 2004-11-21 10:16:29.625: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1603. 2004-11-21 10:16:29.625: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1604. 2004-11-21 10:16:30.031: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1605. 2004-11-21 10:16:34.094: Char-server 'eAthena': Sex change (account: 2000002, new sex M, ip: 127.0.0.1).
  1606. 2004-11-21 10:16:41.959: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1607. 2004-11-21 10:16:41.959: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1608. 2004-11-21 10:16:42.437: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1609. 2004-11-21 10:17:53.246: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  1610. 2004-11-21 10:17:53.246: Unknown account (account: mc_cameri, received pass: juan16, ip: 127.0.0.1)
  1611. 2004-11-21 10:17:57.765: Request for connection (non encryption mode) of mc_cameri_M (ip: 127.0.0.1).
  1612. 2004-11-21 10:17:57.765: Account creation and authentification accepted (account mc_cameri (id: 2000003), pass: juan16, sex: M, connection with _F/_M, ip: 127.0.0.1)
  1613. 2004-11-21 10:17:58.154: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  1614. 2004-11-21 10:18:32.050: Char-server 'eAthena': e-mail of the account 2000003 found (ip: 127.0.0.1).
  1615. 2004-11-21 10:18:36.306: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1616. 2004-11-21 10:18:36.307: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1617. 2004-11-21 10:18:36.750: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1618. 2004-11-21 10:50:52.758: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1619. 2004-11-21 10:50:52.758: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1620. 2004-11-21 10:50:53.599: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1621. 2004-11-21 11:02:14.116: ----End of login-server (normal end with closing of all files).
  1622. 2004-11-21 11:09:37.515: The login-server starting...
  1623. 2004-11-21 11:09:37.515: The configuration of the server is set:
  1624. 2004-11-21 11:09:37.515: - with a remote administration with the DEFAULT password.
  1625. 2004-11-21 11:09:37.515: - to accept any IP for remote administration
  1626. 2004-11-21 11:09:37.515: - with the DEFAULT 'To GM become' password (gm_pass).
  1627. 2004-11-21 11:09:37.515: - to create GM with level '60' when @gm is used.
  1628. 2004-11-21 11:09:37.515: - to ALLOW new users (with _F/_M).
  1629. 2004-11-21 11:09:37.515: - with port: 6900.
  1630. 2004-11-21 11:09:37.517: - with the accounts file name: 'save/account.txt'.
  1631. 2004-11-21 11:09:37.517: - with the GM accounts file name: 'conf/GM_account.txt'.
  1632. 2004-11-21 11:09:37.518: - to check GM accounts file modifications every 15 seconds.
  1633. 2004-11-21 11:09:37.518: - to save password in plain text.
  1634. 2004-11-21 11:09:37.518: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1635. 2004-11-21 11:09:37.518: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1636. 2004-11-21 11:09:37.518: - to NOT display normal parse packets on console.
  1637. 2004-11-21 11:09:37.518: - to NOT display administration parse packets on console.
  1638. 2004-11-21 11:09:37.518: - to NOT display char-server parse packets on console.
  1639. 2004-11-21 11:09:37.518: - with no minimum level for connection.
  1640. 2004-11-21 11:09:37.518: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1641. 2004-11-21 11:09:37.518: - to create new accounts with an unlimited time.
  1642. 2004-11-21 11:09:37.518: - with control of players IP between login-server and char-server.
  1643. 2004-11-21 11:09:37.519: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1644. 2004-11-21 11:09:37.522: The LAN configuration of the server is set:
  1645. 2004-11-21 11:09:37.522: - with LAN IP of char-server: 127.0.0.1.
  1646. 2004-11-21 11:09:37.522: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1647. 2004-11-21 11:09:37.523: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1648. 2004-11-21 11:09:37.525: 8 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1649. 2004-11-21 11:09:37.526: The login-server is ready (Server is listening on the port 6900).
  1650. 2004-11-21 11:09:40.652: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1651. 2004-11-21 11:09:40.652: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1652. 2004-11-21 11:09:40.654: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1653. 2004-11-21 11:12:19.193: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1654. 2004-11-21 11:12:19.193: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1655. 2004-11-21 11:12:19.561: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1656. 2004-11-21 11:12:59.874: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1657. 2004-11-21 11:36:43.737: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1658. 2004-11-21 11:36:43.737: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1659. 2004-11-21 11:36:44.313: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1660. 2004-11-21 11:39:24.440: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1661. 2004-11-21 11:39:24.440: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1662. 2004-11-21 11:39:25.093: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1663. 2004-11-21 11:53:34.248: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1664. 2004-11-21 11:53:34.766: ----End of login-server (normal end with closing of all files).
  1665. 2004-11-21 12:44:33.625: The login-server starting...
  1666. 2004-11-21 12:44:33.625: The configuration of the server is set:
  1667. 2004-11-21 12:44:33.625: - with a remote administration with the DEFAULT password.
  1668. 2004-11-21 12:44:33.625: - to accept any IP for remote administration
  1669. 2004-11-21 12:44:33.625: - with the DEFAULT 'To GM become' password (gm_pass).
  1670. 2004-11-21 12:44:33.625: - to create GM with level '60' when @gm is used.
  1671. 2004-11-21 12:44:33.625: - to ALLOW new users (with _F/_M).
  1672. 2004-11-21 12:44:33.625: - with port: 6900.
  1673. 2004-11-21 12:44:33.625: - with the accounts file name: 'save/account.txt'.
  1674. 2004-11-21 12:44:33.625: - with the GM accounts file name: 'conf/GM_account.txt'.
  1675. 2004-11-21 12:44:33.625: - to check GM accounts file modifications every 15 seconds.
  1676. 2004-11-21 12:44:33.625: - to save password in plain text.
  1677. 2004-11-21 12:44:33.625: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1678. 2004-11-21 12:44:33.625: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1679. 2004-11-21 12:44:33.626: - to NOT display normal parse packets on console.
  1680. 2004-11-21 12:44:33.626: - to NOT display administration parse packets on console.
  1681. 2004-11-21 12:44:33.626: - to NOT display char-server parse packets on console.
  1682. 2004-11-21 12:44:33.626: - with no minimum level for connection.
  1683. 2004-11-21 12:44:33.626: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1684. 2004-11-21 12:44:33.626: - to create new accounts with an unlimited time.
  1685. 2004-11-21 12:44:33.626: - with control of players IP between login-server and char-server.
  1686. 2004-11-21 12:44:33.626: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1687. 2004-11-21 12:44:33.627: The LAN configuration of the server is set:
  1688. 2004-11-21 12:44:33.627: - with LAN IP of char-server: 127.0.0.1.
  1689. 2004-11-21 12:44:33.628: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1690. 2004-11-21 12:44:33.629: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1691. 2004-11-21 12:44:33.631: 8 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1692. 2004-11-21 12:44:33.632: The login-server is ready (Server is listening on the port 6900).
  1693. 2004-11-21 12:44:35.883: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1694. 2004-11-21 12:44:35.883: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1695. 2004-11-21 12:44:35.885: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1696. 2004-11-21 12:44:45.854: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1697. 2004-11-21 12:44:45.854: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1698. 2004-11-21 12:44:46.309: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1699. 2004-11-21 12:45:36.139: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  1700. 2004-11-21 12:45:36.141: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  1701. 2004-11-21 12:45:36.765: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  1702. 2004-11-21 12:47:14.681: ----End of login-server (normal end with closing of all files).
  1703. 2004-11-22 06:42:27.250: The login-server starting...
  1704. 2004-11-22 06:42:27.250: The configuration of the server is set:
  1705. 2004-11-22 06:42:27.250: - with a remote administration with the DEFAULT password.
  1706. 2004-11-22 06:42:27.250: - to accept any IP for remote administration
  1707. 2004-11-22 06:42:27.250: - with the DEFAULT 'To GM become' password (gm_pass).
  1708. 2004-11-22 06:42:27.250: - to create GM with level '60' when @gm is used.
  1709. 2004-11-22 06:42:27.252: - to ALLOW new users (with _F/_M).
  1710. 2004-11-22 06:42:27.253: - with port: 6900.
  1711. 2004-11-22 06:42:27.253: - with the accounts file name: 'save/account.txt'.
  1712. 2004-11-22 06:42:27.253: - with the GM accounts file name: 'conf/GM_account.txt'.
  1713. 2004-11-22 06:42:27.253: - to check GM accounts file modifications every 15 seconds.
  1714. 2004-11-22 06:42:27.253: - to save password in plain text.
  1715. 2004-11-22 06:42:27.253: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1716. 2004-11-22 06:42:27.253: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1717. 2004-11-22 06:42:27.253: - to NOT display normal parse packets on console.
  1718. 2004-11-22 06:42:27.253: - to NOT display administration parse packets on console.
  1719. 2004-11-22 06:42:27.253: - to NOT display char-server parse packets on console.
  1720. 2004-11-22 06:42:27.253: - with no minimum level for connection.
  1721. 2004-11-22 06:42:27.254: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1722. 2004-11-22 06:42:27.254: - to create new accounts with an unlimited time.
  1723. 2004-11-22 06:42:27.254: - with control of players IP between login-server and char-server.
  1724. 2004-11-22 06:42:27.254: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1725. 2004-11-22 06:42:27.255: The LAN configuration of the server is set:
  1726. 2004-11-22 06:42:27.255: - with LAN IP of char-server: 127.0.0.1.
  1727. 2004-11-22 06:42:27.255: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1728. 2004-11-22 06:42:27.258: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1729. 2004-11-22 06:42:27.260: 8 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1730. 2004-11-22 06:42:27.260: The login-server is ready (Server is listening on the port 6900).
  1731. 2004-11-22 06:42:29.906: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1732. 2004-11-22 06:42:29.906: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1733. 2004-11-22 06:42:29.941: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1734. 2004-11-22 06:55:43.864: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1735. 2004-11-22 06:55:43.865: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
  1736. 2004-11-22 06:55:48.272: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1737. 2004-11-22 06:55:48.273: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
  1738. 2004-11-22 06:56:38.898: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1739. 2004-11-22 06:56:38.898: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
  1740. 2004-11-22 06:58:13.590: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1741. 2004-11-22 06:58:13.590: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
  1742. 2004-11-22 06:58:35.344: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1743. 2004-11-22 06:58:35.345: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
  1744. 2004-11-22 06:58:58.020: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1745. 2004-11-22 06:58:58.021: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
  1746. 2004-11-22 15:52:36.640: The login-server starting...
  1747. 2004-11-22 15:52:36.640: The configuration of the server is set:
  1748. 2004-11-22 15:52:36.640: - with a remote administration with the DEFAULT password.
  1749. 2004-11-22 15:52:36.640: - to accept any IP for remote administration
  1750. 2004-11-22 15:52:36.640: - with the DEFAULT 'To GM become' password (gm_pass).
  1751. 2004-11-22 15:52:36.640: - to create GM with level '60' when @gm is used.
  1752. 2004-11-22 15:52:36.640: - to ALLOW new users (with _F/_M).
  1753. 2004-11-22 15:52:36.640: - with port: 6900.
  1754. 2004-11-22 15:52:36.640: - with the accounts file name: 'save/account.txt'.
  1755. 2004-11-22 15:52:36.640: - with the GM accounts file name: 'conf/GM_account.txt'.
  1756. 2004-11-22 15:52:36.641: - to check GM accounts file modifications every 15 seconds.
  1757. 2004-11-22 15:52:36.641: - to save password in plain text.
  1758. 2004-11-22 15:52:36.641: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1759. 2004-11-22 15:52:36.641: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1760. 2004-11-22 15:52:36.641: - to NOT display normal parse packets on console.
  1761. 2004-11-22 15:52:36.641: - to NOT display administration parse packets on console.
  1762. 2004-11-22 15:52:36.641: - to NOT display char-server parse packets on console.
  1763. 2004-11-22 15:52:36.641: - with no minimum level for connection.
  1764. 2004-11-22 15:52:36.641: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1765. 2004-11-22 15:52:36.642: - to create new accounts with an unlimited time.
  1766. 2004-11-22 15:52:36.642: - with control of players IP between login-server and char-server.
  1767. 2004-11-22 15:52:36.642: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1768. 2004-11-22 15:52:36.643: The LAN configuration of the server is set:
  1769. 2004-11-22 15:52:36.643: - with LAN IP of char-server: 127.0.0.1.
  1770. 2004-11-22 15:52:36.643: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1771. 2004-11-22 15:52:36.644: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1772. 2004-11-22 15:52:36.646: 8 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1773. 2004-11-22 15:52:36.647: The login-server is ready (Server is listening on the port 6900).
  1774. 2004-11-22 15:53:35.798: Request for connection (non encryption mode) of genosonic_M (ip: 127.0.0.1).
  1775. 2004-11-22 15:53:35.798: Account creation and authentification accepted (account genosonic (id: 2000004), pass: juan16, sex: M, connection with _F/_M, ip: 127.0.0.1)
  1776. 2004-11-22 15:53:35.896: Connection refused: there is no char-server online (account: genosonic, ip: 127.0.0.1).
  1777. 2004-11-22 15:53:44.516: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1778. 2004-11-22 15:53:44.517: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
  1779. 2004-11-22 15:53:44.527: Connection refused: there is no char-server online (account: genosonic, ip: 127.0.0.1).
  1780. 2004-11-22 15:53:53.263: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1781. 2004-11-22 15:53:53.263: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1782. 2004-11-22 15:53:53.265: Connection refused: there is no char-server online (account: cameri, ip: 127.0.0.1).
  1783. 2004-11-22 15:54:01.858: ----End of login-server (normal end with closing of all files).
  1784. 2004-11-22 15:54:36.453: The login-server starting...
  1785. 2004-11-22 15:54:36.453: The configuration of the server is set:
  1786. 2004-11-22 15:54:36.453: - with a remote administration with the DEFAULT password.
  1787. 2004-11-22 15:54:36.453: - to accept any IP for remote administration
  1788. 2004-11-22 15:54:36.453: - with the DEFAULT 'To GM become' password (gm_pass).
  1789. 2004-11-22 15:54:36.453: - to create GM with level '60' when @gm is used.
  1790. 2004-11-22 15:54:36.453: - to ALLOW new users (with _F/_M).
  1791. 2004-11-22 15:54:36.453: - with port: 6900.
  1792. 2004-11-22 15:54:36.453: - with the accounts file name: 'save/account.txt'.
  1793. 2004-11-22 15:54:36.453: - with the GM accounts file name: 'conf/GM_account.txt'.
  1794. 2004-11-22 15:54:36.453: - to check GM accounts file modifications every 15 seconds.
  1795. 2004-11-22 15:54:36.453: - to save password in plain text.
  1796. 2004-11-22 15:54:36.453: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1797. 2004-11-22 15:54:36.453: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1798. 2004-11-22 15:54:36.454: - to NOT display normal parse packets on console.
  1799. 2004-11-22 15:54:36.454: - to NOT display administration parse packets on console.
  1800. 2004-11-22 15:54:36.454: - to NOT display char-server parse packets on console.
  1801. 2004-11-22 15:54:36.454: - with no minimum level for connection.
  1802. 2004-11-22 15:54:36.454: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1803. 2004-11-22 15:54:36.454: - to create new accounts with an unlimited time.
  1804. 2004-11-22 15:54:36.454: - with control of players IP between login-server and char-server.
  1805. 2004-11-22 15:54:36.454: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1806. 2004-11-22 15:54:36.455: The LAN configuration of the server is set:
  1807. 2004-11-22 15:54:36.456: - with LAN IP of char-server: 127.0.0.1.
  1808. 2004-11-22 15:54:36.456: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1809. 2004-11-22 15:54:36.460: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1810. 2004-11-22 15:54:36.461: 9 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1811. 2004-11-22 15:54:36.462: The login-server is ready (Server is listening on the port 6900).
  1812. 2004-11-22 15:55:00.552: ----End of login-server (normal end with closing of all files).
  1813. 2004-11-22 15:55:01.484: The login-server starting...
  1814. 2004-11-22 15:55:01.484: The configuration of the server is set:
  1815. 2004-11-22 15:55:01.484: - with a remote administration with the DEFAULT password.
  1816. 2004-11-22 15:55:01.484: - to accept any IP for remote administration
  1817. 2004-11-22 15:55:01.484: - with the DEFAULT 'To GM become' password (gm_pass).
  1818. 2004-11-22 15:55:01.484: - to create GM with level '60' when @gm is used.
  1819. 2004-11-22 15:55:01.484: - to ALLOW new users (with _F/_M).
  1820. 2004-11-22 15:55:01.484: - with port: 6900.
  1821. 2004-11-22 15:55:01.484: - with the accounts file name: 'save/account.txt'.
  1822. 2004-11-22 15:55:01.484: - with the GM accounts file name: 'conf/GM_account.txt'.
  1823. 2004-11-22 15:55:01.484: - to check GM accounts file modifications every 15 seconds.
  1824. 2004-11-22 15:55:01.485: - to save password in plain text.
  1825. 2004-11-22 15:55:01.485: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1826. 2004-11-22 15:55:01.485: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1827. 2004-11-22 15:55:01.485: - to NOT display normal parse packets on console.
  1828. 2004-11-22 15:55:01.485: - to NOT display administration parse packets on console.
  1829. 2004-11-22 15:55:01.485: - to NOT display char-server parse packets on console.
  1830. 2004-11-22 15:55:01.485: - with no minimum level for connection.
  1831. 2004-11-22 15:55:01.485: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1832. 2004-11-22 15:55:01.485: - to create new accounts with an unlimited time.
  1833. 2004-11-22 15:55:01.485: - with control of players IP between login-server and char-server.
  1834. 2004-11-22 15:55:01.485: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1835. 2004-11-22 15:55:01.486: The LAN configuration of the server is set:
  1836. 2004-11-22 15:55:01.487: - with LAN IP of char-server: 127.0.0.1.
  1837. 2004-11-22 15:55:01.487: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1838. 2004-11-22 15:55:01.488: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1839. 2004-11-22 15:55:01.490: 9 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1840. 2004-11-22 15:55:01.490: The login-server is ready (Server is listening on the port 6900).
  1841. 2004-11-22 15:55:28.968: ----End of login-server (normal end with closing of all files).
  1842. 2004-11-22 15:55:59.937: The login-server starting...
  1843. 2004-11-22 15:55:59.937: The configuration of the server is set:
  1844. 2004-11-22 15:55:59.937: - with a remote administration with the DEFAULT password.
  1845. 2004-11-22 15:55:59.937: - to accept any IP for remote administration
  1846. 2004-11-22 15:55:59.937: - with the DEFAULT 'To GM become' password (gm_pass).
  1847. 2004-11-22 15:55:59.937: - to create GM with level '60' when @gm is used.
  1848. 2004-11-22 15:55:59.937: - to ALLOW new users (with _F/_M).
  1849. 2004-11-22 15:55:59.938: - with port: 6900.
  1850. 2004-11-22 15:55:59.938: - with the accounts file name: 'save/account.txt'.
  1851. 2004-11-22 15:55:59.938: - with the GM accounts file name: 'conf/GM_account.txt'.
  1852. 2004-11-22 15:55:59.938: - to check GM accounts file modifications every 15 seconds.
  1853. 2004-11-22 15:55:59.938: - to save password in plain text.
  1854. 2004-11-22 15:55:59.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1855. 2004-11-22 15:55:59.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1856. 2004-11-22 15:55:59.938: - to NOT display normal parse packets on console.
  1857. 2004-11-22 15:55:59.938: - to NOT display administration parse packets on console.
  1858. 2004-11-22 15:55:59.938: - to NOT display char-server parse packets on console.
  1859. 2004-11-22 15:55:59.938: - with no minimum level for connection.
  1860. 2004-11-22 15:55:59.939: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1861. 2004-11-22 15:55:59.939: - to create new accounts with an unlimited time.
  1862. 2004-11-22 15:55:59.939: - with control of players IP between login-server and char-server.
  1863. 2004-11-22 15:55:59.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1864. 2004-11-22 15:55:59.940: The LAN configuration of the server is set:
  1865. 2004-11-22 15:55:59.940: - with LAN IP of char-server: 127.0.0.1.
  1866. 2004-11-22 15:55:59.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1867. 2004-11-22 15:55:59.942: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  1868. 2004-11-22 15:55:59.943: 9 accounts read in save/account.txt, of which is 1 GM account and 5 server accounts ('S').
  1869. 2004-11-22 15:55:59.944: The login-server is ready (Server is listening on the port 6900).
  1870. 2004-11-22 15:59:35.699: ----End of login-server (normal end with closing of all files).
  1871. 2004-11-22 15:59:49.875: The login-server starting...
  1872. 2004-11-22 15:59:49.875: The configuration of the server is set:
  1873. 2004-11-22 15:59:49.875: - with a remote administration with the DEFAULT password.
  1874. 2004-11-22 15:59:49.875: - to accept any IP for remote administration
  1875. 2004-11-22 15:59:49.875: - with the DEFAULT 'To GM become' password (gm_pass).
  1876. 2004-11-22 15:59:49.875: - to create GM with level '60' when @gm is used.
  1877. 2004-11-22 15:59:49.875: - to ALLOW new users (with _F/_M).
  1878. 2004-11-22 15:59:49.875: - with port: 6900.
  1879. 2004-11-22 15:59:49.876: - with the accounts file name: 'save/account.txt'.
  1880. 2004-11-22 15:59:49.876: - with the GM accounts file name: 'conf/GM_account.txt'.
  1881. 2004-11-22 15:59:49.876: - to check GM accounts file modifications every 15 seconds.
  1882. 2004-11-22 15:59:49.876: - to save password in plain text.
  1883. 2004-11-22 15:59:49.876: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1884. 2004-11-22 15:59:49.876: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1885. 2004-11-22 15:59:49.876: - to NOT display normal parse packets on console.
  1886. 2004-11-22 15:59:49.876: - to NOT display administration parse packets on console.
  1887. 2004-11-22 15:59:49.876: - to NOT display char-server parse packets on console.
  1888. 2004-11-22 15:59:49.876: - with no minimum level for connection.
  1889. 2004-11-22 15:59:49.876: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1890. 2004-11-22 15:59:49.877: - to create new accounts with an unlimited time.
  1891. 2004-11-22 15:59:49.877: - with control of players IP between login-server and char-server.
  1892. 2004-11-22 15:59:49.877: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1893. 2004-11-22 15:59:49.878: The LAN configuration of the server is set:
  1894. 2004-11-22 15:59:49.878: - with LAN IP of char-server: 127.0.0.1.
  1895. 2004-11-22 15:59:49.878: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1896. 2004-11-22 15:59:49.879: read_gm_account: file 'conf/GM_account.txt' readed (34 GM accounts found).
  1897. 2004-11-22 15:59:49.884: 9 accounts read in save/account.txt, of which is 3 GM accounts and 5 server accounts ('S').
  1898. 2004-11-22 15:59:49.885: The login-server is ready (Server is listening on the port 6900).
  1899. 2004-11-22 16:00:08.227: ----End of login-server (normal end with closing of all files).
  1900. 2004-11-22 16:00:09.359: The login-server starting...
  1901. 2004-11-22 16:00:09.359: The configuration of the server is set:
  1902. 2004-11-22 16:00:09.359: - with a remote administration with the DEFAULT password.
  1903. 2004-11-22 16:00:09.359: - to accept any IP for remote administration
  1904. 2004-11-22 16:00:09.359: - with the DEFAULT 'To GM become' password (gm_pass).
  1905. 2004-11-22 16:00:09.359: - to create GM with level '60' when @gm is used.
  1906. 2004-11-22 16:00:09.359: - to ALLOW new users (with _F/_M).
  1907. 2004-11-22 16:00:09.359: - with port: 6900.
  1908. 2004-11-22 16:00:09.359: - with the accounts file name: 'save/account.txt'.
  1909. 2004-11-22 16:00:09.359: - with the GM accounts file name: 'conf/GM_account.txt'.
  1910. 2004-11-22 16:00:09.359: - to check GM accounts file modifications every 15 seconds.
  1911. 2004-11-22 16:00:09.359: - to save password in plain text.
  1912. 2004-11-22 16:00:09.360: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1913. 2004-11-22 16:00:09.360: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1914. 2004-11-22 16:00:09.360: - to NOT display normal parse packets on console.
  1915. 2004-11-22 16:00:09.360: - to NOT display administration parse packets on console.
  1916. 2004-11-22 16:00:09.360: - to NOT display char-server parse packets on console.
  1917. 2004-11-22 16:00:09.360: - with no minimum level for connection.
  1918. 2004-11-22 16:00:09.360: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1919. 2004-11-22 16:00:09.360: - to create new accounts with an unlimited time.
  1920. 2004-11-22 16:00:09.360: - with control of players IP between login-server and char-server.
  1921. 2004-11-22 16:00:09.360: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1922. 2004-11-22 16:00:09.361: The LAN configuration of the server is set:
  1923. 2004-11-22 16:00:09.362: - with LAN IP of char-server: 127.0.0.1.
  1924. 2004-11-22 16:00:09.362: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1925. 2004-11-22 16:00:09.363: read_gm_account: file 'conf/GM_account.txt' readed (35 GM accounts found).
  1926. 2004-11-22 16:00:09.364: 9 accounts read in save/account.txt, of which is 4 GM accounts and 5 server accounts ('S').
  1927. 2004-11-22 16:00:09.365: The login-server is ready (Server is listening on the port 6900).
  1928. 2004-11-22 16:00:21.477: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  1929. 2004-11-22 16:00:21.477: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  1930. 2004-11-22 16:00:21.482: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  1931. 2004-11-22 16:01:03.482: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  1932. 2004-11-22 16:01:03.482: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  1933. 2004-11-22 16:01:03.811: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  1934. 2004-11-22 16:01:16.510: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  1935. 2004-11-22 16:01:21.320: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  1936. 2004-11-22 16:01:21.320: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
  1937. 2004-11-22 16:01:21.806: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
  1938. 2004-11-22 16:01:35.696: Char-server 'eAthena': e-mail of the account 2000004 found (ip: 127.0.0.1).
  1939. 2004-11-22 16:01:45.244: Request for connection (non encryption mode) of metal_M (ip: 127.0.0.1).
  1940. 2004-11-22 16:01:45.244: Account creation and authentification accepted (account metal (id: 2000005), pass: metal, sex: M, connection with _F/_M, ip: 127.0.0.1)
  1941. 2004-11-22 16:01:45.884: Char-server 'eAthena': authentification of the account 2000005 accepted (ip: 127.0.0.1).
  1942. 2004-11-22 16:01:55.027: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  1943. 2004-11-22 16:01:56.433: ----End of login-server (normal end with closing of all files).
  1944. 2004-11-22 16:07:11.109: The login-server starting...
  1945. 2004-11-22 16:07:11.109: The configuration of the server is set:
  1946. 2004-11-22 16:07:11.109: - with a remote administration with the DEFAULT password.
  1947. 2004-11-22 16:07:11.109: - to accept any IP for remote administration
  1948. 2004-11-22 16:07:11.109: - with the DEFAULT 'To GM become' password (gm_pass).
  1949. 2004-11-22 16:07:11.109: - to create GM with level '60' when @gm is used.
  1950. 2004-11-22 16:07:11.109: - to ALLOW new users (with _F/_M).
  1951. 2004-11-22 16:07:11.109: - with port: 6900.
  1952. 2004-11-22 16:07:11.109: - with the accounts file name: 'save/account.txt'.
  1953. 2004-11-22 16:07:11.109: - with the GM accounts file name: 'conf/GM_account.txt'.
  1954. 2004-11-22 16:07:11.109: - to check GM accounts file modifications every 15 seconds.
  1955. 2004-11-22 16:07:11.109: - to save password in plain text.
  1956. 2004-11-22 16:07:11.109: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1957. 2004-11-22 16:07:11.109: - to SAVE only unkown packets sending by a char-server or a remote administration.
  1958. 2004-11-22 16:07:11.110: - to NOT display normal parse packets on console.
  1959. 2004-11-22 16:07:11.110: - to NOT display administration parse packets on console.
  1960. 2004-11-22 16:07:11.110: - to NOT display char-server parse packets on console.
  1961. 2004-11-22 16:07:11.110: - with no minimum level for connection.
  1962. 2004-11-22 16:07:11.110: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  1963. 2004-11-22 16:07:11.110: - to create new accounts with an unlimited time.
  1964. 2004-11-22 16:07:11.110: - with control of players IP between login-server and char-server.
  1965. 2004-11-22 16:07:11.110: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  1966. 2004-11-22 16:07:11.111: The LAN configuration of the server is set:
  1967. 2004-11-22 16:07:11.111: - with LAN IP of char-server: 127.0.0.1.
  1968. 2004-11-22 16:07:11.111: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  1969. 2004-11-22 16:07:11.112: read_gm_account: file 'conf/GM_account.txt' readed (35 GM accounts found).
  1970. 2004-11-22 16:07:11.114: 10 accounts read in save/account.txt, of which is 4 GM accounts and 5 server accounts ('S').
  1971. 2004-11-22 16:07:11.115: The login-server is ready (Server is listening on the port 6900).
  1972. 2004-11-22 16:09:26.116: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1973. 2004-11-22 16:10:56.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1974. 2004-11-22 16:11:26.116: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1975. 2004-11-22 16:11:41.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1976. 2004-11-22 16:12:11.116: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1977. 2004-11-22 16:12:26.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1978. 2004-11-22 16:12:41.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1979. 2004-11-22 16:12:56.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1980. 2004-11-22 16:13:11.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1981. 2004-11-22 16:13:26.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1982. 2004-11-22 16:13:41.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  1983. 2004-11-22 16:14:56.116: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  1984. 2004-11-22 16:15:11.117: read_gm_account: file 'conf/GM_account.txt' readed (1 GM accounts found).
  1985. 2004-11-22 16:15:11.220: ----End of login-server (normal end with closing of all files).
  1986. 2004-11-22 16:15:32.765: The login-server starting...
  1987. 2004-11-22 16:15:32.765: The configuration of the server is set:
  1988. 2004-11-22 16:15:32.765: - with a remote administration with the DEFAULT password.
  1989. 2004-11-22 16:15:32.765: - to accept any IP for remote administration
  1990. 2004-11-22 16:15:32.765: - with the DEFAULT 'To GM become' password (gm_pass).
  1991. 2004-11-22 16:15:32.765: - to create GM with level '60' when @gm is used.
  1992. 2004-11-22 16:15:32.765: - to ALLOW new users (with _F/_M).
  1993. 2004-11-22 16:15:32.765: - with port: 6900.
  1994. 2004-11-22 16:15:32.765: - with the accounts file name: 'save/account.txt'.
  1995. 2004-11-22 16:15:32.765: - with the GM accounts file name: 'conf/GM_account.txt'.
  1996. 2004-11-22 16:15:32.765: - to check GM accounts file modifications every 15 seconds.
  1997. 2004-11-22 16:15:32.765: - to save password in plain text.
  1998. 2004-11-22 16:15:32.765: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  1999. 2004-11-22 16:15:32.768: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2000. 2004-11-22 16:15:32.768: - to NOT display normal parse packets on console.
  2001. 2004-11-22 16:15:32.768: - to NOT display administration parse packets on console.
  2002. 2004-11-22 16:15:32.768: - to NOT display char-server parse packets on console.
  2003. 2004-11-22 16:15:32.768: - with no minimum level for connection.
  2004. 2004-11-22 16:15:32.768: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2005. 2004-11-22 16:15:32.768: - to create new accounts with an unlimited time.
  2006. 2004-11-22 16:15:32.769: - with control of players IP between login-server and char-server.
  2007. 2004-11-22 16:15:32.769: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2008. 2004-11-22 16:15:32.770: The LAN configuration of the server is set:
  2009. 2004-11-22 16:15:32.770: - with LAN IP of char-server: 127.0.0.1.
  2010. 2004-11-22 16:15:32.770: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2011. 2004-11-22 16:15:32.771: read_gm_account: file 'conf/GM_account.txt' readed (1 GM accounts found).
  2012. 2004-11-22 16:15:32.773: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2013. 2004-11-22 16:15:32.773: The login-server is ready (Server is listening on the port 6900).
  2014. 2004-11-22 16:16:15.139: ----End of login-server (normal end with closing of all files).
  2015. 2004-11-22 16:16:50.468: The login-server starting...
  2016. 2004-11-22 16:16:50.468: The configuration of the server is set:
  2017. 2004-11-22 16:16:50.468: - with a remote administration with the DEFAULT password.
  2018. 2004-11-22 16:16:50.468: - to accept any IP for remote administration
  2019. 2004-11-22 16:16:50.468: - with the DEFAULT 'To GM become' password (gm_pass).
  2020. 2004-11-22 16:16:50.468: - to create GM with level '60' when @gm is used.
  2021. 2004-11-22 16:16:50.468: - to ALLOW new users (with _F/_M).
  2022. 2004-11-22 16:16:50.468: - with port: 6900.
  2023. 2004-11-22 16:16:50.468: - with the accounts file name: 'save/account.txt'.
  2024. 2004-11-22 16:16:50.468: - with the GM accounts file name: 'conf/GM_account.txt'.
  2025. 2004-11-22 16:16:50.469: - to check GM accounts file modifications every 15 seconds.
  2026. 2004-11-22 16:16:50.469: - to save password in plain text.
  2027. 2004-11-22 16:16:50.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2028. 2004-11-22 16:16:50.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2029. 2004-11-22 16:16:50.469: - to NOT display normal parse packets on console.
  2030. 2004-11-22 16:16:50.469: - to NOT display administration parse packets on console.
  2031. 2004-11-22 16:16:50.469: - to NOT display char-server parse packets on console.
  2032. 2004-11-22 16:16:50.469: - with no minimum level for connection.
  2033. 2004-11-22 16:16:50.469: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2034. 2004-11-22 16:16:50.469: - to create new accounts with an unlimited time.
  2035. 2004-11-22 16:16:50.469: - with control of players IP between login-server and char-server.
  2036. 2004-11-22 16:16:50.469: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2037. 2004-11-22 16:16:50.470: The LAN configuration of the server is set:
  2038. 2004-11-22 16:16:50.470: - with LAN IP of char-server: 127.0.0.1.
  2039. 2004-11-22 16:16:50.471: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2040. 2004-11-22 16:16:50.472: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2041. 2004-11-22 16:16:50.473: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2042. 2004-11-22 16:16:50.474: The login-server is ready (Server is listening on the port 6900).
  2043. 2004-11-22 16:17:05.476: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2044. 2004-11-22 16:17:50.476: read_gm_account: file 'conf/GM_account.txt' readed (2 GM accounts found).
  2045. 2004-11-22 16:18:05.478: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  2046. 2004-11-22 16:18:35.482: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
  2047. 2004-11-22 16:18:50.476: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  2048. 2004-11-22 16:24:46.551: ----End of login-server (normal end with closing of all files).
  2049. 2004-11-22 16:24:49.687: The login-server starting...
  2050. 2004-11-22 16:24:49.687: The configuration of the server is set:
  2051. 2004-11-22 16:24:49.687: - with a remote administration with the DEFAULT password.
  2052. 2004-11-22 16:24:49.687: - to accept any IP for remote administration
  2053. 2004-11-22 16:24:49.687: - with the DEFAULT 'To GM become' password (gm_pass).
  2054. 2004-11-22 16:24:49.687: - to create GM with level '60' when @gm is used.
  2055. 2004-11-22 16:24:49.687: - to ALLOW new users (with _F/_M).
  2056. 2004-11-22 16:24:49.687: - with port: 6900.
  2057. 2004-11-22 16:24:49.687: - with the accounts file name: 'save/account.txt'.
  2058. 2004-11-22 16:24:49.687: - with the GM accounts file name: 'conf/GM_account.txt'.
  2059. 2004-11-22 16:24:49.687: - to check GM accounts file modifications every 15 seconds.
  2060. 2004-11-22 16:24:49.688: - to save password in plain text.
  2061. 2004-11-22 16:24:49.688: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2062. 2004-11-22 16:24:49.688: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2063. 2004-11-22 16:24:49.688: - to NOT display normal parse packets on console.
  2064. 2004-11-22 16:24:49.688: - to NOT display administration parse packets on console.
  2065. 2004-11-22 16:24:49.688: - to NOT display char-server parse packets on console.
  2066. 2004-11-22 16:24:49.688: - with no minimum level for connection.
  2067. 2004-11-22 16:24:49.688: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2068. 2004-11-22 16:24:49.688: - to create new accounts with an unlimited time.
  2069. 2004-11-22 16:24:49.688: - with control of players IP between login-server and char-server.
  2070. 2004-11-22 16:24:49.688: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2071. 2004-11-22 16:24:49.690: The LAN configuration of the server is set:
  2072. 2004-11-22 16:24:49.690: - with LAN IP of char-server: 127.0.0.1.
  2073. 2004-11-22 16:24:49.690: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2074. 2004-11-22 16:24:49.693: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
  2075. 2004-11-22 16:24:49.695: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2076. 2004-11-22 16:24:49.696: The login-server is ready (Server is listening on the port 6900).
  2077. 2004-11-22 16:25:16.442: ----End of login-server (normal end with closing of all files).
  2078. 2004-11-22 16:25:31.937: The login-server starting...
  2079. 2004-11-22 16:25:31.937: The configuration of the server is set:
  2080. 2004-11-22 16:25:31.937: - with a remote administration with the DEFAULT password.
  2081. 2004-11-22 16:25:31.937: - to accept any IP for remote administration
  2082. 2004-11-22 16:25:31.937: - with the DEFAULT 'To GM become' password (gm_pass).
  2083. 2004-11-22 16:25:31.937: - to create GM with level '60' when @gm is used.
  2084. 2004-11-22 16:25:31.937: - to ALLOW new users (with _F/_M).
  2085. 2004-11-22 16:25:31.937: - with port: 6900.
  2086. 2004-11-22 16:25:31.937: - with the accounts file name: 'save/account.txt'.
  2087. 2004-11-22 16:25:31.937: - with the GM accounts file name: 'conf/GM_account.txt'.
  2088. 2004-11-22 16:25:31.938: - to check GM accounts file modifications every 15 seconds.
  2089. 2004-11-22 16:25:31.938: - to save password in plain text.
  2090. 2004-11-22 16:25:31.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2091. 2004-11-22 16:25:31.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2092. 2004-11-22 16:25:31.938: - to NOT display normal parse packets on console.
  2093. 2004-11-22 16:25:31.938: - to NOT display administration parse packets on console.
  2094. 2004-11-22 16:25:31.938: - to NOT display char-server parse packets on console.
  2095. 2004-11-22 16:25:31.938: - with no minimum level for connection.
  2096. 2004-11-22 16:25:31.938: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2097. 2004-11-22 16:25:31.938: - to create new accounts with an unlimited time.
  2098. 2004-11-22 16:25:31.938: - with control of players IP between login-server and char-server.
  2099. 2004-11-22 16:25:31.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2100. 2004-11-22 16:25:31.940: The LAN configuration of the server is set:
  2101. 2004-11-22 16:25:31.940: - with LAN IP of char-server: 127.0.0.1.
  2102. 2004-11-22 16:25:31.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2103. 2004-11-22 16:25:31.941: read_gm_account: file 'conf/GM_account.txt' readed (1 GM accounts found).
  2104. 2004-11-22 16:25:31.943: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2105. 2004-11-22 16:25:31.944: The login-server is ready (Server is listening on the port 6900).
  2106. 2004-11-22 16:26:01.966: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2107. 2004-11-22 16:26:41.090: ----End of login-server (normal end with closing of all files).
  2108. 2004-11-22 16:28:11.125: The login-server starting...
  2109. 2004-11-22 16:28:11.125: The configuration of the server is set:
  2110. 2004-11-22 16:28:11.125: - with a remote administration with the DEFAULT password.
  2111. 2004-11-22 16:28:11.125: - to accept any IP for remote administration
  2112. 2004-11-22 16:28:11.125: - with the DEFAULT 'To GM become' password (gm_pass).
  2113. 2004-11-22 16:28:11.125: - to create GM with level '60' when @gm is used.
  2114. 2004-11-22 16:28:11.125: - to ALLOW new users (with _F/_M).
  2115. 2004-11-22 16:28:11.125: - with port: 6900.
  2116. 2004-11-22 16:28:11.125: - with the accounts file name: 'save/account.txt'.
  2117. 2004-11-22 16:28:11.125: - with the GM accounts file name: 'conf/GM_account.txt'.
  2118. 2004-11-22 16:28:11.125: - to check GM accounts file modifications every 15 seconds.
  2119. 2004-11-22 16:28:11.126: - to save password in plain text.
  2120. 2004-11-22 16:28:11.126: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2121. 2004-11-22 16:28:11.126: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2122. 2004-11-22 16:28:11.126: - to NOT display normal parse packets on console.
  2123. 2004-11-22 16:28:11.126: - to NOT display administration parse packets on console.
  2124. 2004-11-22 16:28:11.126: - to NOT display char-server parse packets on console.
  2125. 2004-11-22 16:28:11.126: - with no minimum level for connection.
  2126. 2004-11-22 16:28:11.126: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2127. 2004-11-22 16:28:11.126: - to create new accounts with an unlimited time.
  2128. 2004-11-22 16:28:11.127: - with control of players IP between login-server and char-server.
  2129. 2004-11-22 16:28:11.127: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2130. 2004-11-22 16:28:11.128: The LAN configuration of the server is set:
  2131. 2004-11-22 16:28:11.128: - with LAN IP of char-server: 127.0.0.1.
  2132. 2004-11-22 16:28:11.128: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2133. 2004-11-22 16:28:11.129: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2134. 2004-11-22 16:28:11.130: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2135. 2004-11-22 16:28:11.132: The login-server is ready (Server is listening on the port 6900).
  2136. 2004-11-22 16:28:15.496: ----End of login-server (normal end with closing of all files).
  2137. 2004-11-22 16:28:30.796: The login-server starting...
  2138. 2004-11-22 16:28:30.796: The configuration of the server is set:
  2139. 2004-11-22 16:28:30.796: - with a remote administration with the DEFAULT password.
  2140. 2004-11-22 16:28:30.796: - to accept any IP for remote administration
  2141. 2004-11-22 16:28:30.796: - with the DEFAULT 'To GM become' password (gm_pass).
  2142. 2004-11-22 16:28:30.796: - to create GM with level '60' when @gm is used.
  2143. 2004-11-22 16:28:30.796: - to ALLOW new users (with _F/_M).
  2144. 2004-11-22 16:28:30.797: - with port: 6900.
  2145. 2004-11-22 16:28:30.797: - with the accounts file name: 'save/account.txt'.
  2146. 2004-11-22 16:28:30.797: - with the GM accounts file name: 'conf/GM_account.txt'.
  2147. 2004-11-22 16:28:30.797: - to check GM accounts file modifications every 15 seconds.
  2148. 2004-11-22 16:28:30.797: - to save password in plain text.
  2149. 2004-11-22 16:28:30.797: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2150. 2004-11-22 16:28:30.797: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2151. 2004-11-22 16:28:30.797: - to NOT display normal parse packets on console.
  2152. 2004-11-22 16:28:30.797: - to NOT display administration parse packets on console.
  2153. 2004-11-22 16:28:30.797: - to NOT display char-server parse packets on console.
  2154. 2004-11-22 16:28:30.798: - with no minimum level for connection.
  2155. 2004-11-22 16:28:30.798: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2156. 2004-11-22 16:28:30.798: - to create new accounts with an unlimited time.
  2157. 2004-11-22 16:28:30.798: - with control of players IP between login-server and char-server.
  2158. 2004-11-22 16:28:30.798: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2159. 2004-11-22 16:28:30.799: The LAN configuration of the server is set:
  2160. 2004-11-22 16:28:30.799: - with LAN IP of char-server: 127.0.0.1.
  2161. 2004-11-22 16:28:30.799: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2162. 2004-11-22 16:28:30.800: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2163. 2004-11-22 16:28:30.802: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2164. 2004-11-22 16:28:30.802: The login-server is ready (Server is listening on the port 6900).
  2165. 2004-11-22 16:28:43.187: ----End of login-server (normal end with closing of all files).
  2166. 2004-11-22 16:28:44.203: The login-server starting...
  2167. 2004-11-22 16:28:44.203: The configuration of the server is set:
  2168. 2004-11-22 16:28:44.203: - with a remote administration with the DEFAULT password.
  2169. 2004-11-22 16:28:44.203: - to accept any IP for remote administration
  2170. 2004-11-22 16:28:44.203: - with the DEFAULT 'To GM become' password (gm_pass).
  2171. 2004-11-22 16:28:44.203: - to create GM with level '60' when @gm is used.
  2172. 2004-11-22 16:28:44.203: - to ALLOW new users (with _F/_M).
  2173. 2004-11-22 16:28:44.203: - with port: 6900.
  2174. 2004-11-22 16:28:44.203: - with the accounts file name: 'save/account.txt'.
  2175. 2004-11-22 16:28:44.203: - with the GM accounts file name: 'conf/GM_account.txt'.
  2176. 2004-11-22 16:28:44.203: - to check GM accounts file modifications every 15 seconds.
  2177. 2004-11-22 16:28:44.203: - to save password in plain text.
  2178. 2004-11-22 16:28:44.203: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2179. 2004-11-22 16:28:44.203: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2180. 2004-11-22 16:28:44.203: - to NOT display normal parse packets on console.
  2181. 2004-11-22 16:28:44.203: - to NOT display administration parse packets on console.
  2182. 2004-11-22 16:28:44.203: - to NOT display char-server parse packets on console.
  2183. 2004-11-22 16:28:44.204: - with no minimum level for connection.
  2184. 2004-11-22 16:28:44.204: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2185. 2004-11-22 16:28:44.204: - to create new accounts with an unlimited time.
  2186. 2004-11-22 16:28:44.204: - with control of players IP between login-server and char-server.
  2187. 2004-11-22 16:28:44.204: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2188. 2004-11-22 16:28:44.205: The LAN configuration of the server is set:
  2189. 2004-11-22 16:28:44.205: - with LAN IP of char-server: 127.0.0.1.
  2190. 2004-11-22 16:28:44.205: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2191. 2004-11-22 16:28:44.206: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2192. 2004-11-22 16:28:44.207: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2193. 2004-11-22 16:28:44.208: The login-server is ready (Server is listening on the port 6900).
  2194. 2004-11-22 16:29:04.225: ----End of login-server (normal end with closing of all files).
  2195. 2004-11-22 16:29:14.937: The login-server starting...
  2196. 2004-11-22 16:29:14.937: The configuration of the server is set:
  2197. 2004-11-22 16:29:14.937: - with a remote administration with the DEFAULT password.
  2198. 2004-11-22 16:29:14.937: - to accept any IP for remote administration
  2199. 2004-11-22 16:29:14.937: - with the DEFAULT 'To GM become' password (gm_pass).
  2200. 2004-11-22 16:29:14.938: - to create GM with level '60' when @gm is used.
  2201. 2004-11-22 16:29:14.938: - to ALLOW new users (with _F/_M).
  2202. 2004-11-22 16:29:14.938: - with port: 6900.
  2203. 2004-11-22 16:29:14.938: - with the accounts file name: 'save/account.txt'.
  2204. 2004-11-22 16:29:14.938: - with the GM accounts file name: 'conf/GM_account.txt'.
  2205. 2004-11-22 16:29:14.938: - to check GM accounts file modifications every 15 seconds.
  2206. 2004-11-22 16:29:14.938: - to save password in plain text.
  2207. 2004-11-22 16:29:14.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2208. 2004-11-22 16:29:14.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2209. 2004-11-22 16:29:14.938: - to NOT display normal parse packets on console.
  2210. 2004-11-22 16:29:14.938: - to NOT display administration parse packets on console.
  2211. 2004-11-22 16:29:14.939: - to NOT display char-server parse packets on console.
  2212. 2004-11-22 16:29:14.939: - with no minimum level for connection.
  2213. 2004-11-22 16:29:14.939: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2214. 2004-11-22 16:29:14.939: - to create new accounts with an unlimited time.
  2215. 2004-11-22 16:29:14.939: - with control of players IP between login-server and char-server.
  2216. 2004-11-22 16:29:14.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2217. 2004-11-22 16:29:14.940: The LAN configuration of the server is set:
  2218. 2004-11-22 16:29:14.940: - with LAN IP of char-server: 127.0.0.1.
  2219. 2004-11-22 16:29:14.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2220. 2004-11-22 16:29:14.941: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2221. 2004-11-22 16:29:14.943: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2222. 2004-11-22 16:29:14.943: The login-server is ready (Server is listening on the port 6900).
  2223. 2004-11-22 16:29:29.945: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2224. 2004-11-22 16:30:59.120: ----End of login-server (normal end with closing of all files).
  2225. 2004-11-22 16:31:14.921: The login-server starting...
  2226. 2004-11-22 16:31:14.921: The configuration of the server is set:
  2227. 2004-11-22 16:31:14.921: - with a remote administration with the DEFAULT password.
  2228. 2004-11-22 16:31:14.921: - to accept any IP for remote administration
  2229. 2004-11-22 16:31:14.921: - with the DEFAULT 'To GM become' password (gm_pass).
  2230. 2004-11-22 16:31:14.921: - to create GM with level '60' when @gm is used.
  2231. 2004-11-22 16:31:14.921: - to ALLOW new users (with _F/_M).
  2232. 2004-11-22 16:31:14.921: - with port: 6900.
  2233. 2004-11-22 16:31:14.921: - with the accounts file name: 'save/account.txt'.
  2234. 2004-11-22 16:31:14.921: - with the GM accounts file name: 'conf/GM_account.txt'.
  2235. 2004-11-22 16:31:14.921: - to check GM accounts file modifications every 15 seconds.
  2236. 2004-11-22 16:31:14.921: - to save password in plain text.
  2237. 2004-11-22 16:31:14.921: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2238. 2004-11-22 16:31:14.921: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2239. 2004-11-22 16:31:14.921: - to NOT display normal parse packets on console.
  2240. 2004-11-22 16:31:14.921: - to NOT display administration parse packets on console.
  2241. 2004-11-22 16:31:14.924: - to NOT display char-server parse packets on console.
  2242. 2004-11-22 16:31:14.924: - with no minimum level for connection.
  2243. 2004-11-22 16:31:14.924: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2244. 2004-11-22 16:31:14.924: - to create new accounts with an unlimited time.
  2245. 2004-11-22 16:31:14.924: - with control of players IP between login-server and char-server.
  2246. 2004-11-22 16:31:14.925: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2247. 2004-11-22 16:31:14.925: The LAN configuration of the server is set:
  2248. 2004-11-22 16:31:14.926: - with LAN IP of char-server: 127.0.0.1.
  2249. 2004-11-22 16:31:14.926: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2250. 2004-11-22 16:31:14.927: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2251. 2004-11-22 16:31:14.928: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2252. 2004-11-22 16:31:14.929: The login-server is ready (Server is listening on the port 6900).
  2253. 2004-11-22 16:32:18.610: ----End of login-server (normal end with closing of all files).
  2254. 2004-11-22 16:32:28.296: The login-server starting...
  2255. 2004-11-22 16:32:28.296: The configuration of the server is set:
  2256. 2004-11-22 16:32:28.296: - with a remote administration with the DEFAULT password.
  2257. 2004-11-22 16:32:28.296: - to accept any IP for remote administration
  2258. 2004-11-22 16:32:28.296: - with the DEFAULT 'To GM become' password (gm_pass).
  2259. 2004-11-22 16:32:28.296: - to create GM with level '60' when @gm is used.
  2260. 2004-11-22 16:32:28.296: - to ALLOW new users (with _F/_M).
  2261. 2004-11-22 16:32:28.296: - with port: 6900.
  2262. 2004-11-22 16:32:28.296: - with the accounts file name: 'save/account.txt'.
  2263. 2004-11-22 16:32:28.296: - with the GM accounts file name: 'conf/GM_account.txt'.
  2264. 2004-11-22 16:32:28.296: - to check GM accounts file modifications every 15 seconds.
  2265. 2004-11-22 16:32:28.296: - to save password in plain text.
  2266. 2004-11-22 16:32:28.296: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2267. 2004-11-22 16:32:28.297: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2268. 2004-11-22 16:32:28.297: - to NOT display normal parse packets on console.
  2269. 2004-11-22 16:32:28.297: - to NOT display administration parse packets on console.
  2270. 2004-11-22 16:32:28.297: - to NOT display char-server parse packets on console.
  2271. 2004-11-22 16:32:28.297: - with no minimum level for connection.
  2272. 2004-11-22 16:32:28.297: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2273. 2004-11-22 16:32:28.297: - to create new accounts with an unlimited time.
  2274. 2004-11-22 16:32:28.297: - with control of players IP between login-server and char-server.
  2275. 2004-11-22 16:32:28.297: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2276. 2004-11-22 16:32:28.298: The LAN configuration of the server is set:
  2277. 2004-11-22 16:32:28.298: - with LAN IP of char-server: 127.0.0.1.
  2278. 2004-11-22 16:32:28.298: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2279. 2004-11-22 16:32:28.300: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2280. 2004-11-22 16:32:28.326: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2281. 2004-11-22 16:32:28.327: The login-server is ready (Server is listening on the port 6900).
  2282. 2004-11-22 16:33:10.263: ----End of login-server (normal end with closing of all files).
  2283. 2004-11-22 16:33:24.218: The login-server starting...
  2284. 2004-11-22 16:33:24.219: The configuration of the server is set:
  2285. 2004-11-22 16:33:24.219: - with a remote administration with the DEFAULT password.
  2286. 2004-11-22 16:33:24.219: - to accept any IP for remote administration
  2287. 2004-11-22 16:33:24.219: - with the DEFAULT 'To GM become' password (gm_pass).
  2288. 2004-11-22 16:33:24.219: - to create GM with level '60' when @gm is used.
  2289. 2004-11-22 16:33:24.219: - to ALLOW new users (with _F/_M).
  2290. 2004-11-22 16:33:24.219: - with port: 6900.
  2291. 2004-11-22 16:33:24.219: - with the accounts file name: 'save/account.txt'.
  2292. 2004-11-22 16:33:24.219: - with the GM accounts file name: 'conf/GM_account.txt'.
  2293. 2004-11-22 16:33:24.219: - to check GM accounts file modifications every 15 seconds.
  2294. 2004-11-22 16:33:24.219: - to save password in plain text.
  2295. 2004-11-22 16:33:24.220: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2296. 2004-11-22 16:33:24.220: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2297. 2004-11-22 16:33:24.220: - to NOT display normal parse packets on console.
  2298. 2004-11-22 16:33:24.220: - to NOT display administration parse packets on console.
  2299. 2004-11-22 16:33:24.220: - to NOT display char-server parse packets on console.
  2300. 2004-11-22 16:33:24.220: - with no minimum level for connection.
  2301. 2004-11-22 16:33:24.220: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2302. 2004-11-22 16:33:24.221: - to create new accounts with an unlimited time.
  2303. 2004-11-22 16:33:24.221: - with control of players IP between login-server and char-server.
  2304. 2004-11-22 16:33:24.221: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2305. 2004-11-22 16:33:24.222: The LAN configuration of the server is set:
  2306. 2004-11-22 16:33:24.222: - with LAN IP of char-server: 127.0.0.1.
  2307. 2004-11-22 16:33:24.222: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2308. 2004-11-22 16:33:24.224: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2309. 2004-11-22 16:33:24.225: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2310. 2004-11-22 16:33:24.225: The login-server is ready (Server is listening on the port 6900).
  2311. 2004-11-22 16:33:50.146: ----End of login-server (normal end with closing of all files).
  2312. 2004-11-22 16:33:59.656: The login-server starting...
  2313. 2004-11-22 16:33:59.656: The configuration of the server is set:
  2314. 2004-11-22 16:33:59.656: - with a remote administration with the DEFAULT password.
  2315. 2004-11-22 16:33:59.656: - to accept any IP for remote administration
  2316. 2004-11-22 16:33:59.656: - with the DEFAULT 'To GM become' password (gm_pass).
  2317. 2004-11-22 16:33:59.656: - to create GM with level '60' when @gm is used.
  2318. 2004-11-22 16:33:59.656: - to ALLOW new users (with _F/_M).
  2319. 2004-11-22 16:33:59.656: - with port: 6900.
  2320. 2004-11-22 16:33:59.656: - with the accounts file name: 'save/account.txt'.
  2321. 2004-11-22 16:33:59.657: - with the GM accounts file name: 'conf/GM_account.txt'.
  2322. 2004-11-22 16:33:59.657: - to check GM accounts file modifications every 15 seconds.
  2323. 2004-11-22 16:33:59.657: - to save password in plain text.
  2324. 2004-11-22 16:33:59.657: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2325. 2004-11-22 16:33:59.657: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2326. 2004-11-22 16:33:59.658: - to NOT display normal parse packets on console.
  2327. 2004-11-22 16:33:59.658: - to NOT display administration parse packets on console.
  2328. 2004-11-22 16:33:59.658: - to NOT display char-server parse packets on console.
  2329. 2004-11-22 16:33:59.658: - with no minimum level for connection.
  2330. 2004-11-22 16:33:59.658: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2331. 2004-11-22 16:33:59.658: - to create new accounts with an unlimited time.
  2332. 2004-11-22 16:33:59.658: - with control of players IP between login-server and char-server.
  2333. 2004-11-22 16:33:59.658: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2334. 2004-11-22 16:33:59.659: The LAN configuration of the server is set:
  2335. 2004-11-22 16:33:59.659: - with LAN IP of char-server: 127.0.0.1.
  2336. 2004-11-22 16:33:59.659: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2337. 2004-11-22 16:33:59.661: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2338. 2004-11-22 16:33:59.664: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2339. 2004-11-22 16:33:59.665: The login-server is ready (Server is listening on the port 6900).
  2340. 2004-11-22 16:35:28.708: ----End of login-server (normal end with closing of all files).
  2341. 2004-11-22 16:35:40.015: The login-server starting...
  2342. 2004-11-22 16:35:40.015: The configuration of the server is set:
  2343. 2004-11-22 16:35:40.015: - with a remote administration with the DEFAULT password.
  2344. 2004-11-22 16:35:40.015: - to accept any IP for remote administration
  2345. 2004-11-22 16:35:40.015: - with the DEFAULT 'To GM become' password (gm_pass).
  2346. 2004-11-22 16:35:40.015: - to create GM with level '60' when @gm is used.
  2347. 2004-11-22 16:35:40.015: - to ALLOW new users (with _F/_M).
  2348. 2004-11-22 16:35:40.016: - with port: 6900.
  2349. 2004-11-22 16:35:40.016: - with the accounts file name: 'save/account.txt'.
  2350. 2004-11-22 16:35:40.016: - with the GM accounts file name: 'conf/GM_account.txt'.
  2351. 2004-11-22 16:35:40.016: - to check GM accounts file modifications every 15 seconds.
  2352. 2004-11-22 16:35:40.016: - to save password in plain text.
  2353. 2004-11-22 16:35:40.016: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2354. 2004-11-22 16:35:40.016: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2355. 2004-11-22 16:35:40.016: - to NOT display normal parse packets on console.
  2356. 2004-11-22 16:35:40.016: - to NOT display administration parse packets on console.
  2357. 2004-11-22 16:35:40.016: - to NOT display char-server parse packets on console.
  2358. 2004-11-22 16:35:40.016: - with no minimum level for connection.
  2359. 2004-11-22 16:35:40.016: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2360. 2004-11-22 16:35:40.017: - to create new accounts with an unlimited time.
  2361. 2004-11-22 16:35:40.017: - with control of players IP between login-server and char-server.
  2362. 2004-11-22 16:35:40.017: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2363. 2004-11-22 16:35:40.018: The LAN configuration of the server is set:
  2364. 2004-11-22 16:35:40.018: - with LAN IP of char-server: 127.0.0.1.
  2365. 2004-11-22 16:35:40.018: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2366. 2004-11-22 16:35:40.020: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2367. 2004-11-22 16:35:40.023: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2368. 2004-11-22 16:35:40.023: The login-server is ready (Server is listening on the port 6900).
  2369. 2004-11-22 16:35:47.223: ----End of login-server (normal end with closing of all files).
  2370. 2004-11-22 16:35:58.687: The login-server starting...
  2371. 2004-11-22 16:35:58.687: The configuration of the server is set:
  2372. 2004-11-22 16:35:58.687: - with a remote administration with the DEFAULT password.
  2373. 2004-11-22 16:35:58.687: - to accept any IP for remote administration
  2374. 2004-11-22 16:35:58.687: - with the DEFAULT 'To GM become' password (gm_pass).
  2375. 2004-11-22 16:35:58.687: - to create GM with level '60' when @gm is used.
  2376. 2004-11-22 16:35:58.687: - to ALLOW new users (with _F/_M).
  2377. 2004-11-22 16:35:58.687: - with port: 6900.
  2378. 2004-11-22 16:35:58.687: - with the accounts file name: 'save/account.txt'.
  2379. 2004-11-22 16:35:58.687: - with the GM accounts file name: 'conf/GM_account.txt'.
  2380. 2004-11-22 16:35:58.687: - to check GM accounts file modifications every 15 seconds.
  2381. 2004-11-22 16:35:58.687: - to save password in plain text.
  2382. 2004-11-22 16:35:58.687: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2383. 2004-11-22 16:35:58.687: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2384. 2004-11-22 16:35:58.687: - to NOT display normal parse packets on console.
  2385. 2004-11-22 16:35:58.687: - to NOT display administration parse packets on console.
  2386. 2004-11-22 16:35:58.688: - to NOT display char-server parse packets on console.
  2387. 2004-11-22 16:35:58.688: - with no minimum level for connection.
  2388. 2004-11-22 16:35:58.688: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2389. 2004-11-22 16:35:58.688: - to create new accounts with an unlimited time.
  2390. 2004-11-22 16:35:58.688: - with control of players IP between login-server and char-server.
  2391. 2004-11-22 16:35:58.688: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2392. 2004-11-22 16:35:58.689: The LAN configuration of the server is set:
  2393. 2004-11-22 16:35:58.689: - with LAN IP of char-server: 127.0.0.1.
  2394. 2004-11-22 16:35:58.689: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2395. 2004-11-22 16:35:58.691: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2396. 2004-11-22 16:35:58.692: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2397. 2004-11-22 16:35:58.692: The login-server is ready (Server is listening on the port 6900).
  2398. 2004-11-22 16:38:44.359: ----End of login-server (normal end with closing of all files).
  2399. 2004-11-22 16:39:28.375: The login-server starting...
  2400. 2004-11-22 16:39:28.375: The configuration of the server is set:
  2401. 2004-11-22 16:39:28.375: - with a remote administration with the DEFAULT password.
  2402. 2004-11-22 16:39:28.375: - to accept any IP for remote administration
  2403. 2004-11-22 16:39:28.375: - with the DEFAULT 'To GM become' password (gm_pass).
  2404. 2004-11-22 16:39:28.375: - to create GM with level '60' when @gm is used.
  2405. 2004-11-22 16:39:28.375: - to ALLOW new users (with _F/_M).
  2406. 2004-11-22 16:39:28.375: - with port: 6900.
  2407. 2004-11-22 16:39:28.375: - with the accounts file name: 'save/account.txt'.
  2408. 2004-11-22 16:39:28.375: - with the GM accounts file name: 'conf/GM_account.txt'.
  2409. 2004-11-22 16:39:28.375: - to check GM accounts file modifications every 15 seconds.
  2410. 2004-11-22 16:39:28.375: - to save password in plain text.
  2411. 2004-11-22 16:39:28.375: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2412. 2004-11-22 16:39:28.375: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2413. 2004-11-22 16:39:28.375: - to NOT display normal parse packets on console.
  2414. 2004-11-22 16:39:28.375: - to NOT display administration parse packets on console.
  2415. 2004-11-22 16:39:28.376: - to NOT display char-server parse packets on console.
  2416. 2004-11-22 16:39:28.376: - with no minimum level for connection.
  2417. 2004-11-22 16:39:28.376: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2418. 2004-11-22 16:39:28.376: - to create new accounts with an unlimited time.
  2419. 2004-11-22 16:39:28.376: - with control of players IP between login-server and char-server.
  2420. 2004-11-22 16:39:28.376: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2421. 2004-11-22 16:39:28.377: The LAN configuration of the server is set:
  2422. 2004-11-22 16:39:28.377: - with LAN IP of char-server: 127.0.0.1.
  2423. 2004-11-22 16:39:28.377: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2424. 2004-11-22 16:39:28.379: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2425. 2004-11-22 16:39:28.380: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
  2426. 2004-11-22 16:39:28.380: The login-server is ready (Server is listening on the port 6900).
  2427. 2004-11-22 16:39:56.330: ----End of login-server (normal end with closing of all files).
  2428. 2004-11-22 16:40:08.875: The login-server starting...
  2429. 2004-11-22 16:40:08.875: The configuration of the server is set:
  2430. 2004-11-22 16:40:08.875: - with a remote administration with the DEFAULT password.
  2431. 2004-11-22 16:40:08.875: - to accept any IP for remote administration
  2432. 2004-11-22 16:40:08.875: - with the DEFAULT 'To GM become' password (gm_pass).
  2433. 2004-11-22 16:40:08.875: - to create GM with level '60' when @gm is used.
  2434. 2004-11-22 16:40:08.875: - to ALLOW new users (with _F/_M).
  2435. 2004-11-22 16:40:08.875: - with port: 6900.
  2436. 2004-11-22 16:40:08.875: - with the accounts file name: 'save/account.txt'.
  2437. 2004-11-22 16:40:08.876: - with the GM accounts file name: 'conf/GM_account.txt'.
  2438. 2004-11-22 16:40:08.876: - to check GM accounts file modifications every 15 seconds.
  2439. 2004-11-22 16:40:08.876: - to save password in plain text.
  2440. 2004-11-22 16:40:08.876: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2441. 2004-11-22 16:40:08.876: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2442. 2004-11-22 16:40:08.876: - to NOT display normal parse packets on console.
  2443. 2004-11-22 16:40:08.876: - to NOT display administration parse packets on console.
  2444. 2004-11-22 16:40:08.876: - to NOT display char-server parse packets on console.
  2445. 2004-11-22 16:40:08.876: - with no minimum level for connection.
  2446. 2004-11-22 16:40:08.876: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2447. 2004-11-22 16:40:08.880: - to create new accounts with an unlimited time.
  2448. 2004-11-22 16:40:08.880: - with control of players IP between login-server and char-server.
  2449. 2004-11-22 16:40:08.880: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2450. 2004-11-22 16:40:08.881: The LAN configuration of the server is set:
  2451. 2004-11-22 16:40:08.881: - with LAN IP of char-server: 127.0.0.1.
  2452. 2004-11-22 16:40:08.881: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2453. 2004-11-22 16:40:08.883: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2454. 2004-11-22 16:40:08.883: read_gm_account: file 'conf/GM_account.txt' readed (4 GM accounts found).
  2455. 2004-11-22 16:40:08.884: The login-server is ready (Server is listening on the port 6900).
  2456. 2004-11-22 16:40:38.885: read_gm_account: file 'conf/GM_account.txt' readed (5 GM accounts found).
  2457. 2004-11-22 16:40:53.886: read_gm_account: file 'conf/GM_account.txt' readed (5 GM accounts found).
  2458. 2004-11-22 16:41:04.862: ----End of login-server (normal end with closing of all files).
  2459. 2004-11-22 16:46:56.640: The login-server starting...
  2460. 2004-11-22 16:46:56.640: The configuration of the server is set:
  2461. 2004-11-22 16:46:56.640: - with a remote administration with the DEFAULT password.
  2462. 2004-11-22 16:46:56.640: - to accept any IP for remote administration
  2463. 2004-11-22 16:46:56.640: - with the DEFAULT 'To GM become' password (gm_pass).
  2464. 2004-11-22 16:46:56.640: - to create GM with level '60' when @gm is used.
  2465. 2004-11-22 16:46:56.640: - to ALLOW new users (with _F/_M).
  2466. 2004-11-22 16:46:56.640: - with port: 6900.
  2467. 2004-11-22 16:46:56.640: - with the accounts file name: 'save/account.txt'.
  2468. 2004-11-22 16:46:56.640: - with the GM accounts file name: 'conf/GM_account.txt'.
  2469. 2004-11-22 16:46:56.641: - to check GM accounts file modifications every 15 seconds.
  2470. 2004-11-22 16:46:56.641: - to save password in plain text.
  2471. 2004-11-22 16:46:56.641: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2472. 2004-11-22 16:46:56.641: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2473. 2004-11-22 16:46:56.641: - to NOT display normal parse packets on console.
  2474. 2004-11-22 16:46:56.641: - to NOT display administration parse packets on console.
  2475. 2004-11-22 16:46:56.641: - to NOT display char-server parse packets on console.
  2476. 2004-11-22 16:46:56.641: - with no minimum level for connection.
  2477. 2004-11-22 16:46:56.641: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2478. 2004-11-22 16:46:56.641: - to create new accounts with an unlimited time.
  2479. 2004-11-22 16:46:56.641: - with control of players IP between login-server and char-server.
  2480. 2004-11-22 16:46:56.641: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2481. 2004-11-22 16:46:56.642: The LAN configuration of the server is set:
  2482. 2004-11-22 16:46:56.642: - with LAN IP of char-server: 127.0.0.1.
  2483. 2004-11-22 16:46:56.644: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2484. 2004-11-22 16:46:56.646: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2485. 2004-11-22 16:46:56.646: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2486. 2004-11-22 16:46:56.647: The login-server is ready (Server is listening on the port 6900).
  2487. 2004-11-22 16:47:35.910: ----End of login-server (normal end with closing of all files).
  2488. 2004-11-22 16:49:45.093: The login-server starting...
  2489. 2004-11-22 16:49:45.093: The configuration of the server is set:
  2490. 2004-11-22 16:49:45.093: - with a remote administration with the DEFAULT password.
  2491. 2004-11-22 16:49:45.093: - to accept any IP for remote administration
  2492. 2004-11-22 16:49:45.093: - with the DEFAULT 'To GM become' password (gm_pass).
  2493. 2004-11-22 16:49:45.093: - to create GM with level '60' when @gm is used.
  2494. 2004-11-22 16:49:45.093: - to ALLOW new users (with _F/_M).
  2495. 2004-11-22 16:49:45.094: - with port: 6900.
  2496. 2004-11-22 16:49:45.094: - with the accounts file name: 'save/account.txt'.
  2497. 2004-11-22 16:49:45.094: - with the GM accounts file name: 'conf/GM_account.txt'.
  2498. 2004-11-22 16:49:45.094: - to check GM accounts file modifications every 15 seconds.
  2499. 2004-11-22 16:49:45.094: - to save password in plain text.
  2500. 2004-11-22 16:49:45.094: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2501. 2004-11-22 16:49:45.094: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2502. 2004-11-22 16:49:45.094: - to NOT display normal parse packets on console.
  2503. 2004-11-22 16:49:45.094: - to NOT display administration parse packets on console.
  2504. 2004-11-22 16:49:45.094: - to NOT display char-server parse packets on console.
  2505. 2004-11-22 16:49:45.094: - with no minimum level for connection.
  2506. 2004-11-22 16:49:45.095: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2507. 2004-11-22 16:49:45.095: - to create new accounts with an unlimited time.
  2508. 2004-11-22 16:49:45.095: - with control of players IP between login-server and char-server.
  2509. 2004-11-22 16:49:45.095: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2510. 2004-11-22 16:49:45.096: The LAN configuration of the server is set:
  2511. 2004-11-22 16:49:45.096: - with LAN IP of char-server: 127.0.0.1.
  2512. 2004-11-22 16:49:45.096: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2513. 2004-11-22 16:49:45.098: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2514. 2004-11-22 16:49:45.099: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2515. 2004-11-22 16:49:45.099: The login-server is ready (Server is listening on the port 6900).
  2516. 2004-11-22 16:49:53.290: ----End of login-server (normal end with closing of all files).
  2517. 2004-11-22 16:59:30.671: The login-server starting...
  2518. 2004-11-22 16:59:30.671: The configuration of the server is set:
  2519. 2004-11-22 16:59:30.671: - with a remote administration with the DEFAULT password.
  2520. 2004-11-22 16:59:30.671: - to accept any IP for remote administration
  2521. 2004-11-22 16:59:30.671: - with the DEFAULT 'To GM become' password (gm_pass).
  2522. 2004-11-22 16:59:30.671: - to create GM with level '60' when @gm is used.
  2523. 2004-11-22 16:59:30.672: - to ALLOW new users (with _F/_M).
  2524. 2004-11-22 16:59:30.672: - with port: 6900.
  2525. 2004-11-22 16:59:30.672: - with the accounts file name: 'save/account.txt'.
  2526. 2004-11-22 16:59:30.672: - with the GM accounts file name: 'conf/GM_account.txt'.
  2527. 2004-11-22 16:59:30.672: - to check GM accounts file modifications every 15 seconds.
  2528. 2004-11-22 16:59:30.672: - to save password in plain text.
  2529. 2004-11-22 16:59:30.672: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2530. 2004-11-22 16:59:30.672: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2531. 2004-11-22 16:59:30.672: - to NOT display normal parse packets on console.
  2532. 2004-11-22 16:59:30.672: - to NOT display administration parse packets on console.
  2533. 2004-11-22 16:59:30.672: - to NOT display char-server parse packets on console.
  2534. 2004-11-22 16:59:30.673: - with no minimum level for connection.
  2535. 2004-11-22 16:59:30.673: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2536. 2004-11-22 16:59:30.673: - to create new accounts with an unlimited time.
  2537. 2004-11-22 16:59:30.673: - with control of players IP between login-server and char-server.
  2538. 2004-11-22 16:59:30.673: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2539. 2004-11-22 16:59:30.674: The LAN configuration of the server is set:
  2540. 2004-11-22 16:59:30.674: - with LAN IP of char-server: 127.0.0.1.
  2541. 2004-11-22 16:59:30.674: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2542. 2004-11-22 16:59:30.676: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2543. 2004-11-22 16:59:30.677: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2544. 2004-11-22 16:59:30.677: The login-server is ready (Server is listening on the port 6900).
  2545. 2004-11-22 16:59:57.602: ----End of login-server (normal end with closing of all files).
  2546. 2004-11-22 16:59:58.406: The login-server starting...
  2547. 2004-11-22 16:59:58.406: The configuration of the server is set:
  2548. 2004-11-22 16:59:58.406: - with a remote administration with the DEFAULT password.
  2549. 2004-11-22 16:59:58.406: - to accept any IP for remote administration
  2550. 2004-11-22 16:59:58.406: - with the DEFAULT 'To GM become' password (gm_pass).
  2551. 2004-11-22 16:59:58.406: - to create GM with level '60' when @gm is used.
  2552. 2004-11-22 16:59:58.406: - to ALLOW new users (with _F/_M).
  2553. 2004-11-22 16:59:58.406: - with port: 6900.
  2554. 2004-11-22 16:59:58.406: - with the accounts file name: 'save/account.txt'.
  2555. 2004-11-22 16:59:58.406: - with the GM accounts file name: 'conf/GM_account.txt'.
  2556. 2004-11-22 16:59:58.406: - to check GM accounts file modifications every 15 seconds.
  2557. 2004-11-22 16:59:58.406: - to save password in plain text.
  2558. 2004-11-22 16:59:58.406: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2559. 2004-11-22 16:59:58.407: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2560. 2004-11-22 16:59:58.407: - to NOT display normal parse packets on console.
  2561. 2004-11-22 16:59:58.407: - to NOT display administration parse packets on console.
  2562. 2004-11-22 16:59:58.407: - to NOT display char-server parse packets on console.
  2563. 2004-11-22 16:59:58.407: - with no minimum level for connection.
  2564. 2004-11-22 16:59:58.407: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2565. 2004-11-22 16:59:58.407: - to create new accounts with an unlimited time.
  2566. 2004-11-22 16:59:58.407: - with control of players IP between login-server and char-server.
  2567. 2004-11-22 16:59:58.407: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2568. 2004-11-22 16:59:58.408: The LAN configuration of the server is set:
  2569. 2004-11-22 16:59:58.408: - with LAN IP of char-server: 127.0.0.1.
  2570. 2004-11-22 16:59:58.408: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2571. 2004-11-22 16:59:58.410: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2572. 2004-11-22 16:59:58.411: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2573. 2004-11-22 16:59:58.411: The login-server is ready (Server is listening on the port 6900).
  2574. 2004-11-22 17:00:08.573: ----End of login-server (normal end with closing of all files).
  2575. 2004-11-22 17:00:15.828: The login-server starting...
  2576. 2004-11-22 17:00:15.828: The configuration of the server is set:
  2577. 2004-11-22 17:00:15.828: - with a remote administration with the DEFAULT password.
  2578. 2004-11-22 17:00:15.828: - to accept any IP for remote administration
  2579. 2004-11-22 17:00:15.828: - with the DEFAULT 'To GM become' password (gm_pass).
  2580. 2004-11-22 17:00:15.828: - to create GM with level '60' when @gm is used.
  2581. 2004-11-22 17:00:15.828: - to ALLOW new users (with _F/_M).
  2582. 2004-11-22 17:00:15.828: - with port: 6900.
  2583. 2004-11-22 17:00:15.829: - with the accounts file name: 'save/account.txt'.
  2584. 2004-11-22 17:00:15.829: - with the GM accounts file name: 'conf/GM_account.txt'.
  2585. 2004-11-22 17:00:15.829: - to check GM accounts file modifications every 15 seconds.
  2586. 2004-11-22 17:00:15.829: - to save password in plain text.
  2587. 2004-11-22 17:00:15.829: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2588. 2004-11-22 17:00:15.829: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2589. 2004-11-22 17:00:15.829: - to NOT display normal parse packets on console.
  2590. 2004-11-22 17:00:15.829: - to NOT display administration parse packets on console.
  2591. 2004-11-22 17:00:15.829: - to NOT display char-server parse packets on console.
  2592. 2004-11-22 17:00:15.829: - with no minimum level for connection.
  2593. 2004-11-22 17:00:15.829: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2594. 2004-11-22 17:00:15.830: - to create new accounts with an unlimited time.
  2595. 2004-11-22 17:00:15.830: - with control of players IP between login-server and char-server.
  2596. 2004-11-22 17:00:15.830: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2597. 2004-11-22 17:00:15.831: The LAN configuration of the server is set:
  2598. 2004-11-22 17:00:15.831: - with LAN IP of char-server: 127.0.0.1.
  2599. 2004-11-22 17:00:15.831: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2600. 2004-11-22 17:00:15.833: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2601. 2004-11-22 17:00:15.833: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2602. 2004-11-22 17:00:15.836: The login-server is ready (Server is listening on the port 6900).
  2603. 2004-11-22 17:01:00.838: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2604. 2004-11-22 17:01:15.839: read_gm_account: file 'conf/GM_account.txt' read (3 GM accounts found).
  2605. 2004-11-22 17:02:19.056: ----End of login-server (normal end with closing of all files).
  2606. 2004-11-22 17:05:21.062: The login-server starting...
  2607. 2004-11-22 17:05:21.062: The configuration of the server is set:
  2608. 2004-11-22 17:05:21.062: - with a remote administration with the DEFAULT password.
  2609. 2004-11-22 17:05:21.062: - to accept any IP for remote administration
  2610. 2004-11-22 17:05:21.062: - with the DEFAULT 'To GM become' password (gm_pass).
  2611. 2004-11-22 17:05:21.062: - to create GM with level '60' when @gm is used.
  2612. 2004-11-22 17:05:21.062: - to ALLOW new users (with _F/_M).
  2613. 2004-11-22 17:05:21.062: - with port: 6900.
  2614. 2004-11-22 17:05:21.062: - with the accounts file name: 'save/account.txt'.
  2615. 2004-11-22 17:05:21.062: - with the GM accounts file name: 'conf/GM_account.txt'.
  2616. 2004-11-22 17:05:21.062: - to check GM accounts file modifications every 15 seconds.
  2617. 2004-11-22 17:05:21.062: - to save password in plain text.
  2618. 2004-11-22 17:05:21.062: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2619. 2004-11-22 17:05:21.062: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2620. 2004-11-22 17:05:21.063: - to NOT display normal parse packets on console.
  2621. 2004-11-22 17:05:21.063: - to NOT display administration parse packets on console.
  2622. 2004-11-22 17:05:21.063: - to NOT display char-server parse packets on console.
  2623. 2004-11-22 17:05:21.063: - with no minimum level for connection.
  2624. 2004-11-22 17:05:21.063: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2625. 2004-11-22 17:05:21.063: - to create new accounts with an unlimited time.
  2626. 2004-11-22 17:05:21.063: - with control of players IP between login-server and char-server.
  2627. 2004-11-22 17:05:21.063: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2628. 2004-11-22 17:05:21.066: The LAN configuration of the server is set:
  2629. 2004-11-22 17:05:21.066: - with LAN IP of char-server: 127.0.0.1.
  2630. 2004-11-22 17:05:21.066: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2631. 2004-11-22 17:05:21.069: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2632. 2004-11-22 17:05:21.070: read_gm_account: file 'conf/GM_account.txt' read (3 GM accounts found).
  2633. 2004-11-22 17:05:21.071: The login-server is ready (Server is listening on the port 6900).
  2634. 2004-11-22 17:05:36.072: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2635. 2004-11-22 17:06:37.114: ----End of login-server (normal end with closing of all files).
  2636. 2004-11-22 20:36:06.421: The login-server starting...
  2637. 2004-11-22 20:36:06.610: The configuration of the server is set:
  2638. 2004-11-22 20:36:06.611: - with a remote administration with the DEFAULT password.
  2639. 2004-11-22 20:36:06.611: - to accept any IP for remote administration
  2640. 2004-11-22 20:36:06.611: - with the DEFAULT 'To GM become' password (gm_pass).
  2641. 2004-11-22 20:36:06.612: - to create GM with level '60' when @gm is used.
  2642. 2004-11-22 20:36:06.612: - to ALLOW new users (with _F/_M).
  2643. 2004-11-22 20:36:06.612: - with port: 6900.
  2644. 2004-11-22 20:36:06.613: - with the accounts file name: 'save/account.txt'.
  2645. 2004-11-22 20:36:06.613: - with the GM accounts file name: 'conf/GM_account.txt'.
  2646. 2004-11-22 20:36:06.613: - to check GM accounts file modifications every 15 seconds.
  2647. 2004-11-22 20:36:06.614: - to save password in plain text.
  2648. 2004-11-22 20:36:06.614: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2649. 2004-11-22 20:36:06.614: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2650. 2004-11-22 20:36:06.615: - to NOT display normal parse packets on console.
  2651. 2004-11-22 20:36:06.615: - to NOT display administration parse packets on console.
  2652. 2004-11-22 20:36:06.615: - to NOT display char-server parse packets on console.
  2653. 2004-11-22 20:36:06.616: - with no minimum level for connection.
  2654. 2004-11-22 20:36:06.616: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2655. 2004-11-22 20:36:06.616: - to create new accounts with an unlimited time.
  2656. 2004-11-22 20:36:06.617: - with control of players IP between login-server and char-server.
  2657. 2004-11-22 20:36:06.617: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2658. 2004-11-22 20:36:06.619: The LAN configuration of the server is set:
  2659. 2004-11-22 20:36:06.619: - with LAN IP of char-server: 127.0.0.1.
  2660. 2004-11-22 20:36:06.619: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2661. 2004-11-22 20:36:06.621: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2662. 2004-11-22 20:36:06.623: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2663. 2004-11-22 20:36:06.629: The login-server is ready (Server is listening on the port 6900).
  2664. 2004-11-22 20:36:08.997: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2665. 2004-11-22 20:36:08.997: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2666. 2004-11-22 20:36:09.029: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2667. 2004-11-22 20:36:15.153: ----End of login-server (normal end with closing of all files).
  2668. 2004-11-22 20:52:21.984: The login-server starting...
  2669. 2004-11-22 20:52:21.984: The configuration of the server is set:
  2670. 2004-11-22 20:52:21.984: - with a remote administration with the DEFAULT password.
  2671. 2004-11-22 20:52:21.984: - to accept any IP for remote administration
  2672. 2004-11-22 20:52:21.985: - with the DEFAULT 'To GM become' password (gm_pass).
  2673. 2004-11-22 20:52:21.985: - to create GM with level '60' when @gm is used.
  2674. 2004-11-22 20:52:21.985: - to ALLOW new users (with _F/_M).
  2675. 2004-11-22 20:52:21.986: - with port: 6900.
  2676. 2004-11-22 20:52:21.986: - with the accounts file name: 'save/account.txt'.
  2677. 2004-11-22 20:52:21.986: - with the GM accounts file name: 'conf/GM_account.txt'.
  2678. 2004-11-22 20:52:21.987: - to check GM accounts file modifications every 15 seconds.
  2679. 2004-11-22 20:52:21.987: - to save password in plain text.
  2680. 2004-11-22 20:52:21.987: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2681. 2004-11-22 20:52:21.988: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2682. 2004-11-22 20:52:21.988: - to NOT display normal parse packets on console.
  2683. 2004-11-22 20:52:21.988: - to NOT display administration parse packets on console.
  2684. 2004-11-22 20:52:21.989: - to NOT display char-server parse packets on console.
  2685. 2004-11-22 20:52:21.990: - with no minimum level for connection.
  2686. 2004-11-22 20:52:21.990: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2687. 2004-11-22 20:52:21.990: - to create new accounts with an unlimited time.
  2688. 2004-11-22 20:52:21.991: - with control of players IP between login-server and char-server.
  2689. 2004-11-22 20:52:21.991: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2690. 2004-11-22 20:52:21.992: The LAN configuration of the server is set:
  2691. 2004-11-22 20:52:21.993: - with LAN IP of char-server: 127.0.0.1.
  2692. 2004-11-22 20:52:21.993: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2693. 2004-11-22 20:52:21.995: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2694. 2004-11-22 20:52:21.996: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2695. 2004-11-22 20:52:22.001: The login-server is ready (Server is listening on the port 6900).
  2696. 2004-11-22 20:52:24.192: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2697. 2004-11-22 20:52:24.192: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2698. 2004-11-22 20:52:24.195: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2699. 2004-11-22 20:53:16.333: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  2700. 2004-11-22 20:53:16.334: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  2701. 2004-11-22 20:53:16.789: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  2702. 2004-11-22 20:54:23.395: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2703. 2004-11-22 20:54:23.395: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2704. 2004-11-22 20:54:23.817: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2705. 2004-11-22 20:55:45.446: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  2706. 2004-11-22 20:55:45.446: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  2707. 2004-11-22 20:55:46.254: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  2708. 2004-11-22 22:01:42.625: The login-server starting...
  2709. 2004-11-22 22:01:42.625: The configuration of the server is set:
  2710. 2004-11-22 22:01:42.626: - with a remote administration with the DEFAULT password.
  2711. 2004-11-22 22:01:42.626: - to accept any IP for remote administration
  2712. 2004-11-22 22:01:42.626: - with the DEFAULT 'To GM become' password (gm_pass).
  2713. 2004-11-22 22:01:42.627: - to create GM with level '60' when @gm is used.
  2714. 2004-11-22 22:01:42.627: - to ALLOW new users (with _F/_M).
  2715. 2004-11-22 22:01:42.628: - with port: 6900.
  2716. 2004-11-22 22:01:42.628: - with the accounts file name: 'save/account.txt'.
  2717. 2004-11-22 22:01:42.628: - with the GM accounts file name: 'conf/GM_account.txt'.
  2718. 2004-11-22 22:01:42.629: - to check GM accounts file modifications every 15 seconds.
  2719. 2004-11-22 22:01:42.629: - to save password in plain text.
  2720. 2004-11-22 22:01:42.630: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2721. 2004-11-22 22:01:42.630: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2722. 2004-11-22 22:01:42.631: - to NOT display normal parse packets on console.
  2723. 2004-11-22 22:01:42.631: - to NOT display administration parse packets on console.
  2724. 2004-11-22 22:01:42.632: - to NOT display char-server parse packets on console.
  2725. 2004-11-22 22:01:42.632: - with no minimum level for connection.
  2726. 2004-11-22 22:01:42.633: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2727. 2004-11-22 22:01:42.633: - to create new accounts with an unlimited time.
  2728. 2004-11-22 22:01:42.634: - with control of players IP between login-server and char-server.
  2729. 2004-11-22 22:01:42.634: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2730. 2004-11-22 22:01:42.657: The LAN configuration of the server is set:
  2731. 2004-11-22 22:01:42.658: - with LAN IP of char-server: 127.0.0.1.
  2732. 2004-11-22 22:01:42.660: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2733. 2004-11-22 22:01:42.673: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2734. 2004-11-22 22:01:42.676: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2735. 2004-11-22 22:01:42.693: The login-server is ready (Server is listening on the port 6900).
  2736. 2004-11-22 22:01:43.166: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2737. 2004-11-22 22:01:43.166: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2738. 2004-11-22 22:01:43.197: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2739. 2004-11-22 22:03:00.896: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2740. 2004-11-22 22:03:00.897: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2741. 2004-11-22 22:03:01.296: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2742. 2004-11-22 22:03:26.445: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  2743. 2004-11-22 22:27:29.125: The login-server starting...
  2744. 2004-11-22 22:27:29.125: The configuration of the server is set:
  2745. 2004-11-22 22:27:29.125: - with a remote administration with the DEFAULT password.
  2746. 2004-11-22 22:27:29.125: - to accept any IP for remote administration
  2747. 2004-11-22 22:27:29.125: - with the DEFAULT 'To GM become' password (gm_pass).
  2748. 2004-11-22 22:27:29.125: - to create GM with level '60' when @gm is used.
  2749. 2004-11-22 22:27:29.125: - to ALLOW new users (with _F/_M).
  2750. 2004-11-22 22:27:29.125: - with port: 6900.
  2751. 2004-11-22 22:27:29.125: - with the accounts file name: 'save/account.txt'.
  2752. 2004-11-22 22:27:29.125: - with the GM accounts file name: 'conf/GM_account.txt'.
  2753. 2004-11-22 22:27:29.125: - to check GM accounts file modifications every 15 seconds.
  2754. 2004-11-22 22:27:29.125: - to save password in plain text.
  2755. 2004-11-22 22:27:29.125: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2756. 2004-11-22 22:27:29.125: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2757. 2004-11-22 22:27:29.125: - to NOT display normal parse packets on console.
  2758. 2004-11-22 22:27:29.125: - to NOT display administration parse packets on console.
  2759. 2004-11-22 22:27:29.125: - to NOT display char-server parse packets on console.
  2760. 2004-11-22 22:27:29.125: - with no minimum level for connection.
  2761. 2004-11-22 22:27:29.140: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2762. 2004-11-22 22:27:29.156: - to create new accounts with an unlimited time.
  2763. 2004-11-22 22:27:29.156: - with control of players IP between login-server and char-server.
  2764. 2004-11-22 22:27:29.156: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2765. 2004-11-22 22:27:29.158: The LAN configuration of the server is set:
  2766. 2004-11-22 22:27:29.158: - with LAN IP of char-server: 127.0.0.1.
  2767. 2004-11-22 22:27:29.159: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2768. 2004-11-22 22:27:29.161: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2769. 2004-11-22 22:27:29.162: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2770. 2004-11-22 22:27:29.166: The login-server is ready (Server is listening on the port 6900).
  2771. 2004-11-22 22:27:31.643: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2772. 2004-11-22 22:27:31.643: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2773. 2004-11-22 22:27:31.681: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2774. 2004-11-22 22:30:07.826: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2775. 2004-11-22 22:30:07.826: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2776. 2004-11-22 22:30:08.199: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2777. 2004-11-22 22:31:24.025: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  2778. 2004-11-22 22:33:12.795: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2779. 2004-11-22 22:33:12.795: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2780. 2004-11-22 22:33:13.137: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2781. 2004-11-22 22:36:43.335: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2782. 2004-11-22 22:36:43.336: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2783. 2004-11-22 22:36:43.935: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2784. 2004-11-22 22:37:54.649: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  2785. 2004-11-22 22:41:38.501: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2786. 2004-11-22 22:41:38.502: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2787. 2004-11-22 22:41:38.868: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2788. 2004-11-22 22:44:24.741: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  2789. 2004-11-22 22:46:32.210: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2790. 2004-11-22 22:46:32.210: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2791. 2004-11-22 22:46:32.541: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2792. 2004-11-22 22:48:59.253: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2793. 2004-11-22 22:48:59.254: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2794. 2004-11-22 22:48:59.630: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2795. 2004-11-22 22:50:24.467: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  2796. 2004-11-22 22:55:38.701: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  2797. 2004-11-24 18:55:47.578: The login-server starting...
  2798. 2004-11-24 18:55:47.578: The configuration of the server is set:
  2799. 2004-11-24 18:55:47.579: - with a remote administration with the DEFAULT password.
  2800. 2004-11-24 18:55:47.579: - to accept any IP for remote administration
  2801. 2004-11-24 18:55:47.579: - with the DEFAULT 'To GM become' password (gm_pass).
  2802. 2004-11-24 18:55:47.580: - to create GM with level '60' when @gm is used.
  2803. 2004-11-24 18:55:47.580: - to ALLOW new users (with _F/_M).
  2804. 2004-11-24 18:55:47.581: - with port: 6900.
  2805. 2004-11-24 18:55:47.581: - with the accounts file name: 'save/account.txt'.
  2806. 2004-11-24 18:55:47.581: - with the GM accounts file name: 'conf/GM_account.txt'.
  2807. 2004-11-24 18:55:47.582: - to check GM accounts file modifications every 15 seconds.
  2808. 2004-11-24 18:55:47.582: - to save password in plain text.
  2809. 2004-11-24 18:55:47.582: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2810. 2004-11-24 18:55:47.583: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2811. 2004-11-24 18:55:47.583: - to NOT display normal parse packets on console.
  2812. 2004-11-24 18:55:47.583: - to NOT display administration parse packets on console.
  2813. 2004-11-24 18:55:47.584: - to NOT display char-server parse packets on console.
  2814. 2004-11-24 18:55:47.584: - with no minimum level for connection.
  2815. 2004-11-24 18:55:47.584: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2816. 2004-11-24 18:55:47.585: - to create new accounts with an unlimited time.
  2817. 2004-11-24 18:55:47.585: - with control of players IP between login-server and char-server.
  2818. 2004-11-24 18:55:47.585: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2819. 2004-11-24 18:55:47.587: The LAN configuration of the server is set:
  2820. 2004-11-24 18:55:47.587: - with LAN IP of char-server: 127.0.0.1.
  2821. 2004-11-24 18:55:47.588: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2822. 2004-11-24 18:55:47.590: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2823. 2004-11-24 18:55:47.591: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2824. 2004-11-24 18:55:47.596: The login-server is ready (Server is listening on the port 6900).
  2825. 2004-11-24 18:55:49.624: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2826. 2004-11-24 18:55:49.625: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2827. 2004-11-24 18:55:49.631: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2828. 2004-11-24 18:58:04.449: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  2829. 2004-11-27 22:59:11.531: The login-server starting...
  2830. 2004-11-27 22:59:11.531: The configuration of the server is set:
  2831. 2004-11-27 22:59:11.531: - with a remote administration with the DEFAULT password.
  2832. 2004-11-27 22:59:11.531: - to accept any IP for remote administration
  2833. 2004-11-27 22:59:11.531: - with the DEFAULT 'To GM become' password (gm_pass).
  2834. 2004-11-27 22:59:11.531: - to create GM with level '60' when @gm is used.
  2835. 2004-11-27 22:59:11.531: - to ALLOW new users (with _F/_M).
  2836. 2004-11-27 22:59:11.531: - with port: 6900.
  2837. 2004-11-27 22:59:11.531: - with the accounts file name: 'save/account.txt'.
  2838. 2004-11-27 22:59:11.531: - with the GM accounts file name: 'conf/GM_account.txt'.
  2839. 2004-11-27 22:59:11.531: - to check GM accounts file modifications every 15 seconds.
  2840. 2004-11-27 22:59:11.531: - to save password in plain text.
  2841. 2004-11-27 22:59:11.531: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2842. 2004-11-27 22:59:11.532: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2843. 2004-11-27 22:59:11.532: - to NOT display normal parse packets on console.
  2844. 2004-11-27 22:59:11.532: - to NOT display administration parse packets on console.
  2845. 2004-11-27 22:59:11.532: - to NOT display char-server parse packets on console.
  2846. 2004-11-27 22:59:11.532: - with no minimum level for connection.
  2847. 2004-11-27 22:59:11.532: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2848. 2004-11-27 22:59:11.532: - to create new accounts with an unlimited time.
  2849. 2004-11-27 22:59:11.532: - with control of players IP between login-server and char-server.
  2850. 2004-11-27 22:59:11.532: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2851. 2004-11-27 22:59:11.538: The LAN configuration of the server is set:
  2852. 2004-11-27 22:59:11.538: - with LAN IP of char-server: 127.0.0.1.
  2853. 2004-11-27 22:59:11.538: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2854. 2004-11-27 22:59:11.541: read_gm_account: file 'conf/GM_account.txt' read (0 GM accounts found).
  2855. 2004-11-27 22:59:11.541: The login-server is ready (Server is listening on the port 6900).
  2856. 2004-11-27 22:59:15.990: ----End of login-server (normal end with closing of all files).
  2857. 2004-11-27 22:59:47.546: The login-server starting...
  2858. 2004-11-27 22:59:47.546: The configuration of the server is set:
  2859. 2004-11-27 22:59:47.546: - with a remote administration with the DEFAULT password.
  2860. 2004-11-27 22:59:47.546: - to accept any IP for remote administration
  2861. 2004-11-27 22:59:47.546: - with the DEFAULT 'To GM become' password (gm_pass).
  2862. 2004-11-27 22:59:47.546: - to create GM with level '60' when @gm is used.
  2863. 2004-11-27 22:59:47.547: - to ALLOW new users (with _F/_M).
  2864. 2004-11-27 22:59:47.547: - with port: 6900.
  2865. 2004-11-27 22:59:47.547: - with the accounts file name: 'save/account.txt'.
  2866. 2004-11-27 22:59:47.547: - with the GM accounts file name: 'conf/GM_account.txt'.
  2867. 2004-11-27 22:59:47.547: - to check GM accounts file modifications every 15 seconds.
  2868. 2004-11-27 22:59:47.547: - to save password in plain text.
  2869. 2004-11-27 22:59:47.547: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2870. 2004-11-27 22:59:47.547: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2871. 2004-11-27 22:59:47.547: - to NOT display normal parse packets on console.
  2872. 2004-11-27 22:59:47.547: - to NOT display administration parse packets on console.
  2873. 2004-11-27 22:59:47.547: - to NOT display char-server parse packets on console.
  2874. 2004-11-27 22:59:47.548: - with no minimum level for connection.
  2875. 2004-11-27 22:59:47.548: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2876. 2004-11-27 22:59:47.548: - to create new accounts with an unlimited time.
  2877. 2004-11-27 22:59:47.548: - with control of players IP between login-server and char-server.
  2878. 2004-11-27 22:59:47.548: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2879. 2004-11-27 22:59:47.550: The LAN configuration of the server is set:
  2880. 2004-11-27 22:59:47.550: - with LAN IP of char-server: 127.0.0.1.
  2881. 2004-11-27 22:59:47.550: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2882. 2004-11-27 22:59:47.553: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2883. 2004-11-27 22:59:47.553: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2884. 2004-11-27 22:59:47.554: The login-server is ready (Server is listening on the port 6900).
  2885. 2004-11-27 22:59:53.206: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2886. 2004-11-27 22:59:53.206: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2887. 2004-11-27 22:59:53.208: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2888. 2004-11-27 23:00:47.082: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2889. 2004-11-27 23:00:47.082: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2890. 2004-11-27 23:00:47.930: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2891. 2004-11-27 23:01:17.461: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  2892. 2004-11-27 23:01:17.461: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  2893. 2004-11-27 23:01:18.090: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  2894. 2004-11-27 23:02:51.027: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  2895. 2004-11-27 23:02:51.027: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  2896. 2004-11-27 23:02:51.565: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  2897. 2004-11-27 23:02:56.768: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  2898. 2004-11-27 23:02:56.769: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  2899. 2004-11-27 23:02:57.248: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  2900. 2004-11-27 23:03:03.418: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2901. 2004-11-27 23:03:03.418: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2902. 2004-11-27 23:03:03.838: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2903. 2004-11-27 23:06:22.520: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  2904. 2004-11-27 23:06:23.637: ----End of login-server (normal end with closing of all files).
  2905. 2004-11-28 08:49:45.843: The login-server starting...
  2906. 2004-11-28 08:49:45.843: The configuration of the server is set:
  2907. 2004-11-28 08:49:45.843: - with a remote administration with the DEFAULT password.
  2908. 2004-11-28 08:49:45.843: - to accept any IP for remote administration
  2909. 2004-11-28 08:49:45.844: - with the DEFAULT 'To GM become' password (gm_pass).
  2910. 2004-11-28 08:49:45.844: - to create GM with level '60' when @gm is used.
  2911. 2004-11-28 08:49:45.844: - to ALLOW new users (with _F/_M).
  2912. 2004-11-28 08:49:45.844: - with port: 6900.
  2913. 2004-11-28 08:49:45.844: - with the accounts file name: 'save/account.txt'.
  2914. 2004-11-28 08:49:45.844: - with the GM accounts file name: 'conf/GM_account.txt'.
  2915. 2004-11-28 08:49:45.844: - to check GM accounts file modifications every 15 seconds.
  2916. 2004-11-28 08:49:45.844: - to save password in plain text.
  2917. 2004-11-28 08:49:45.844: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2918. 2004-11-28 08:49:45.844: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2919. 2004-11-28 08:49:45.844: - to NOT display normal parse packets on console.
  2920. 2004-11-28 08:49:45.845: - to NOT display administration parse packets on console.
  2921. 2004-11-28 08:49:45.845: - to NOT display char-server parse packets on console.
  2922. 2004-11-28 08:49:45.845: - with no minimum level for connection.
  2923. 2004-11-28 08:49:45.845: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2924. 2004-11-28 08:49:45.845: - to create new accounts with an unlimited time.
  2925. 2004-11-28 08:49:45.845: - with control of players IP between login-server and char-server.
  2926. 2004-11-28 08:49:45.845: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2927. 2004-11-28 08:49:45.864: The LAN configuration of the server is set:
  2928. 2004-11-28 08:49:45.865: - with LAN IP of char-server: 127.0.0.1.
  2929. 2004-11-28 08:49:45.865: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2930. 2004-11-28 08:49:45.883: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2931. 2004-11-28 08:49:45.884: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2932. 2004-11-28 08:49:45.902: The login-server is ready (Server is listening on the port 6900).
  2933. 2004-11-28 08:49:51.462: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2934. 2004-11-28 08:49:51.462: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2935. 2004-11-28 08:49:51.465: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2936. 2004-11-28 08:50:14.161: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2937. 2004-11-28 08:50:14.161: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2938. 2004-11-28 08:50:14.569: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2939. 2004-11-28 08:51:50.480: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  2940. 2004-11-28 10:40:25.953: The login-server starting...
  2941. 2004-11-28 10:40:25.953: The configuration of the server is set:
  2942. 2004-11-28 10:40:25.953: - with a remote administration with the DEFAULT password.
  2943. 2004-11-28 10:40:25.953: - to accept any IP for remote administration
  2944. 2004-11-28 10:40:25.953: - with the DEFAULT 'To GM become' password (gm_pass).
  2945. 2004-11-28 10:40:25.954: - to create GM with level '60' when @gm is used.
  2946. 2004-11-28 10:40:25.954: - to ALLOW new users (with _F/_M).
  2947. 2004-11-28 10:40:25.954: - with port: 6900.
  2948. 2004-11-28 10:40:25.954: - with the accounts file name: 'save/account.txt'.
  2949. 2004-11-28 10:40:25.954: - with the GM accounts file name: 'conf/GM_account.txt'.
  2950. 2004-11-28 10:40:25.954: - to check GM accounts file modifications every 15 seconds.
  2951. 2004-11-28 10:40:25.954: - to save password in plain text.
  2952. 2004-11-28 10:40:25.954: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2953. 2004-11-28 10:40:25.954: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2954. 2004-11-28 10:40:25.954: - to NOT display normal parse packets on console.
  2955. 2004-11-28 10:40:25.954: - to NOT display administration parse packets on console.
  2956. 2004-11-28 10:40:25.954: - to NOT display char-server parse packets on console.
  2957. 2004-11-28 10:40:25.955: - with no minimum level for connection.
  2958. 2004-11-28 10:40:25.955: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2959. 2004-11-28 10:40:25.955: - to create new accounts with an unlimited time.
  2960. 2004-11-28 10:40:25.955: - with control of players IP between login-server and char-server.
  2961. 2004-11-28 10:40:25.955: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2962. 2004-11-28 10:40:25.958: The LAN configuration of the server is set:
  2963. 2004-11-28 10:40:25.959: - with LAN IP of char-server: 127.0.0.1.
  2964. 2004-11-28 10:40:25.959: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  2965. 2004-11-28 10:40:25.961: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  2966. 2004-11-28 10:40:25.962: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  2967. 2004-11-28 10:40:25.963: The login-server is ready (Server is listening on the port 6900).
  2968. 2004-11-28 10:40:31.420: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  2969. 2004-11-28 10:40:31.420: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  2970. 2004-11-28 10:40:31.422: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  2971. 2004-11-28 10:40:54.173: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  2972. 2004-11-28 10:40:54.173: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  2973. 2004-11-28 10:40:54.525: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  2974. 2004-11-28 10:59:36.792: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  2975. 2004-11-28 10:59:38.687: ----End of login-server (normal end with closing of all files).
  2976. 2004-11-28 11:08:58.250: The login-server starting...
  2977. 2004-11-28 11:08:58.250: The configuration of the server is set:
  2978. 2004-11-28 11:08:58.250: - with a remote administration with the DEFAULT password.
  2979. 2004-11-28 11:08:58.250: - to accept any IP for remote administration
  2980. 2004-11-28 11:08:58.250: - with the DEFAULT 'To GM become' password (gm_pass).
  2981. 2004-11-28 11:08:58.250: - to create GM with level '60' when @gm is used.
  2982. 2004-11-28 11:08:58.250: - to ALLOW new users (with _F/_M).
  2983. 2004-11-28 11:08:58.251: - with port: 6900.
  2984. 2004-11-28 11:08:58.251: - with the accounts file name: 'save/account.txt'.
  2985. 2004-11-28 11:08:58.251: - with the GM accounts file name: 'conf/GM_account.txt'.
  2986. 2004-11-28 11:08:58.251: - to check GM accounts file modifications every 15 seconds.
  2987. 2004-11-28 11:08:58.251: - to save password in plain text.
  2988. 2004-11-28 11:08:58.251: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  2989. 2004-11-28 11:08:58.251: - to SAVE only unkown packets sending by a char-server or a remote administration.
  2990. 2004-11-28 11:08:58.251: - to NOT display normal parse packets on console.
  2991. 2004-11-28 11:08:58.251: - to NOT display administration parse packets on console.
  2992. 2004-11-28 11:08:58.251: - to NOT display char-server parse packets on console.
  2993. 2004-11-28 11:08:58.251: - with no minimum level for connection.
  2994. 2004-11-28 11:08:58.252: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  2995. 2004-11-28 11:08:58.252: - to create new accounts with an unlimited time.
  2996. 2004-11-28 11:08:58.252: - with control of players IP between login-server and char-server.
  2997. 2004-11-28 11:08:58.252: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  2998. 2004-11-28 11:08:58.253: The LAN configuration of the server is set:
  2999. 2004-11-28 11:08:58.253: - with LAN IP of char-server: 127.0.0.1.
  3000. 2004-11-28 11:08:58.253: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3001. 2004-11-28 11:08:58.256: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3002. 2004-11-28 11:08:58.256: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3003. 2004-11-28 11:08:58.257: The login-server is ready (Server is listening on the port 6900).
  3004. 2004-11-28 11:09:02.405: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  3005. 2004-11-28 11:09:02.405: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  3006. 2004-11-28 11:09:02.407: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  3007. 2004-11-28 11:10:40.477: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  3008. 2004-11-28 11:10:40.478: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  3009. 2004-11-28 11:10:40.791: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  3010. 2004-11-28 11:16:17.556: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  3011. 2004-11-28 11:20:35.041: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  3012. 2004-11-28 11:20:35.041: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  3013. 2004-11-28 11:20:35.438: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  3014. 2004-11-28 11:20:49.502: Char-server 'eAthena': e-mail of the account 2000003 found (ip: 127.0.0.1).
  3015. 2004-11-28 11:20:54.555: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  3016. 2004-11-28 11:20:54.556: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  3017. 2004-11-28 11:20:54.878: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  3018. 2004-11-28 11:26:08.860: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  3019. 2004-11-28 11:26:08.860: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  3020. 2004-11-28 11:26:09.298: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  3021. 2004-11-28 11:37:42.407: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  3022. 2004-11-28 11:37:42.407: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  3023. 2004-11-28 11:37:42.940: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  3024. 2004-11-28 11:56:28.201: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
  3025. 2004-11-28 11:56:33.732: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
  3026. 2004-11-28 11:56:33.732: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
  3027. 2004-11-28 11:56:34.129: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
  3028. 2004-11-28 12:05:53.857: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  3029. 2004-11-28 12:05:53.857: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
  3030. 2004-11-28 12:05:54.466: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
  3031. 2004-11-28 12:58:27.862: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  3032. 2004-11-28 12:58:27.863: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
  3033. 2004-11-28 12:58:28.566: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
  3034. 2004-11-28 14:15:13.227: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
  3035. 2004-11-28 14:15:13.227: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
  3036. 2004-11-28 14:15:14.248: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
  3037. 2004-11-29 16:55:36.156: The login-server starting...
  3038. 2004-11-29 16:55:36.343: The configuration of the server is set:
  3039. 2004-11-29 16:55:36.343: - with a remote administration with the DEFAULT password.
  3040. 2004-11-29 16:55:36.343: - to accept any IP for remote administration
  3041. 2004-11-29 16:55:36.343: - with the DEFAULT 'To GM become' password (gm_pass).
  3042. 2004-11-29 16:55:36.343: - to create GM with level '60' when @gm is used.
  3043. 2004-11-29 16:55:36.343: - to ALLOW new users (with _F/_M).
  3044. 2004-11-29 16:55:36.344: - with port: 6900.
  3045. 2004-11-29 16:55:36.344: - with the accounts file name: 'save/account.txt'.
  3046. 2004-11-29 16:55:36.344: - with the GM accounts file name: 'conf/GM_account.txt'.
  3047. 2004-11-29 16:55:36.344: - to check GM accounts file modifications every 15 seconds.
  3048. 2004-11-29 16:55:36.344: - to save password in plain text.
  3049. 2004-11-29 16:55:36.344: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3050. 2004-11-29 16:55:36.344: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3051. 2004-11-29 16:55:36.344: - to NOT display normal parse packets on console.
  3052. 2004-11-29 16:55:36.344: - to NOT display administration parse packets on console.
  3053. 2004-11-29 16:55:36.344: - to NOT display char-server parse packets on console.
  3054. 2004-11-29 16:55:36.344: - with no minimum level for connection.
  3055. 2004-11-29 16:55:36.345: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3056. 2004-11-29 16:55:36.345: - to create new accounts with an unlimited time.
  3057. 2004-11-29 16:55:36.345: - with control of players IP between login-server and char-server.
  3058. 2004-11-29 16:55:36.345: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3059. 2004-11-29 16:55:36.383: The LAN configuration of the server is set:
  3060. 2004-11-29 16:55:36.383: - with LAN IP of char-server: 127.0.0.1.
  3061. 2004-11-29 16:55:36.383: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3062. 2004-11-29 16:55:36.426: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3063. 2004-11-29 16:55:36.427: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3064. 2004-11-29 16:55:36.428: The login-server is ready (Server is listening on the port 6900).
  3065. 2004-11-29 16:55:39.863: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  3066. 2004-11-29 16:55:39.863: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  3067. 2004-11-29 16:55:39.864: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  3068. 2004-11-29 17:02:22.947: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  3069. 2004-11-29 17:02:22.947: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  3070. 2004-11-29 17:02:28.635: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  3071. 2004-11-29 17:05:36.670: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
  3072. 2004-11-29 17:05:37.048: ----End of login-server (normal end with closing of all files).
  3073. 2004-12-04 12:14:45.701: The login-server starting...
  3074. 2004-12-04 12:14:45.809: The configuration of the server is set:
  3075. 2004-12-04 12:14:45.809: - with a remote administration with the DEFAULT password.
  3076. 2004-12-04 12:14:45.809: - to accept any IP for remote administration
  3077. 2004-12-04 12:14:45.809: - with the DEFAULT 'To GM become' password (gm_pass).
  3078. 2004-12-04 12:14:45.809: - to create GM with level '60' when @gm is used.
  3079. 2004-12-04 12:14:45.809: - to ALLOW new users (with _F/_M).
  3080. 2004-12-04 12:14:45.810: - with port: 6900.
  3081. 2004-12-04 12:14:45.810: - with the accounts file name: 'save/account.txt'.
  3082. 2004-12-04 12:14:45.810: - with the GM accounts file name: 'conf/GM_account.txt'.
  3083. 2004-12-04 12:14:45.810: - to check GM accounts file modifications every 15 seconds.
  3084. 2004-12-04 12:14:45.810: - to save password in plain text.
  3085. 2004-12-04 12:14:45.810: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3086. 2004-12-04 12:14:45.810: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3087. 2004-12-04 12:14:45.810: - to NOT display normal parse packets on console.
  3088. 2004-12-04 12:14:45.810: - to NOT display administration parse packets on console.
  3089. 2004-12-04 12:14:45.810: - to NOT display char-server parse packets on console.
  3090. 2004-12-04 12:14:45.810: - with no minimum level for connection.
  3091. 2004-12-04 12:14:45.810: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3092. 2004-12-04 12:14:45.811: - to create new accounts with an unlimited time.
  3093. 2004-12-04 12:14:45.811: - with control of players IP between login-server and char-server.
  3094. 2004-12-04 12:14:45.811: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3095. 2004-12-04 12:14:45.820: The LAN configuration of the server is set:
  3096. 2004-12-04 12:14:45.821: - with LAN IP of char-server: 127.0.0.1.
  3097. 2004-12-04 12:14:45.821: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3098. 2004-12-04 12:14:45.861: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3099. 2004-12-04 12:14:45.863: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3100. 2004-12-04 12:14:45.864: The login-server is ready (Server is listening on the port 6900).
  3101. 2004-12-04 12:16:50.673: ----End of login-server (normal end with closing of all files).
  3102. 2004-12-04 12:30:11.405: The login-server starting...
  3103. 2004-12-04 12:30:11.405: The configuration of the server is set:
  3104. 2004-12-04 12:30:11.405: - with a remote administration with the DEFAULT password.
  3105. 2004-12-04 12:30:11.405: - to accept any IP for remote administration
  3106. 2004-12-04 12:30:11.406: - with the DEFAULT 'To GM become' password (gm_pass).
  3107. 2004-12-04 12:30:11.406: - to create GM with level '60' when @gm is used.
  3108. 2004-12-04 12:30:11.406: - to ALLOW new users (with _F/_M).
  3109. 2004-12-04 12:30:11.406: - with port: 6900.
  3110. 2004-12-04 12:30:11.406: - with the accounts file name: 'save/account.txt'.
  3111. 2004-12-04 12:30:11.406: - with the GM accounts file name: 'conf/GM_account.txt'.
  3112. 2004-12-04 12:30:11.406: - to check GM accounts file modifications every 15 seconds.
  3113. 2004-12-04 12:30:11.406: - to save password in plain text.
  3114. 2004-12-04 12:30:11.406: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3115. 2004-12-04 12:30:11.406: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3116. 2004-12-04 12:30:11.406: - to NOT display normal parse packets on console.
  3117. 2004-12-04 12:30:11.406: - to NOT display administration parse packets on console.
  3118. 2004-12-04 12:30:11.407: - to NOT display char-server parse packets on console.
  3119. 2004-12-04 12:30:11.407: - with no minimum level for connection.
  3120. 2004-12-04 12:30:11.407: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3121. 2004-12-04 12:30:11.407: - to create new accounts with an unlimited time.
  3122. 2004-12-04 12:30:11.407: - with control of players IP between login-server and char-server.
  3123. 2004-12-04 12:30:11.407: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3124. 2004-12-04 12:30:11.408: The LAN configuration of the server is set:
  3125. 2004-12-04 12:30:11.408: - with LAN IP of char-server: 127.0.0.1.
  3126. 2004-12-04 12:30:11.408: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3127. 2004-12-04 12:30:11.410: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3128. 2004-12-04 12:30:11.411: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3129. 2004-12-04 12:30:11.412: The login-server is ready (Server is listening on the port 6900).
  3130. 2004-12-04 22:27:16.546: The login-server starting...
  3131. 2004-12-04 22:27:16.546: The configuration of the server is set:
  3132. 2004-12-04 22:27:16.546: - with a remote administration with the DEFAULT password.
  3133. 2004-12-04 22:27:16.546: - to accept any IP for remote administration
  3134. 2004-12-04 22:27:16.546: - with the DEFAULT 'To GM become' password (gm_pass).
  3135. 2004-12-04 22:27:16.546: - to create GM with level '60' when @gm is used.
  3136. 2004-12-04 22:27:16.546: - to ALLOW new users (with _F/_M).
  3137. 2004-12-04 22:27:16.546: - with port: 6900.
  3138. 2004-12-04 22:27:16.546: - with the accounts file name: 'save/account.txt'.
  3139. 2004-12-04 22:27:16.546: - with the GM accounts file name: 'conf/GM_account.txt'.
  3140. 2004-12-04 22:27:16.546: - to check GM accounts file modifications every 15 seconds.
  3141. 2004-12-04 22:27:16.546: - to save password in plain text.
  3142. 2004-12-04 22:27:16.546: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3143. 2004-12-04 22:27:16.546: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3144. 2004-12-04 22:27:16.547: - to NOT display normal parse packets on console.
  3145. 2004-12-04 22:27:16.547: - to NOT display administration parse packets on console.
  3146. 2004-12-04 22:27:16.547: - to NOT display char-server parse packets on console.
  3147. 2004-12-04 22:27:16.547: - with no minimum level for connection.
  3148. 2004-12-04 22:27:16.547: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3149. 2004-12-04 22:27:16.547: - to create new accounts with an unlimited time.
  3150. 2004-12-04 22:27:16.547: - with control of players IP between login-server and char-server.
  3151. 2004-12-04 22:27:16.547: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3152. 2004-12-04 22:27:16.556: The LAN configuration of the server is set:
  3153. 2004-12-04 22:27:16.556: - with LAN IP of char-server: 127.0.0.1.
  3154. 2004-12-04 22:27:16.556: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3155. 2004-12-04 22:27:16.569: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3156. 2004-12-04 22:27:16.570: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3157. 2004-12-04 22:27:16.571: The login-server is ready (Server is listening on the port 6900).
  3158. 2004-12-04 22:27:17.003: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  3159. 2004-12-04 22:27:17.003: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  3160. 2004-12-04 22:27:17.011: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  3161. 2004-12-04 22:27:37.996: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
  3162. 2004-12-04 22:27:37.997: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
  3163. 2004-12-04 22:27:38.574: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
  3164. 2004-12-04 22:29:13.406: The login-server starting...
  3165. 2004-12-04 22:29:13.406: The configuration of the server is set:
  3166. 2004-12-04 22:29:13.406: - with a remote administration with the DEFAULT password.
  3167. 2004-12-04 22:29:13.406: - to accept any IP for remote administration
  3168. 2004-12-04 22:29:13.406: - with the DEFAULT 'To GM become' password (gm_pass).
  3169. 2004-12-04 22:29:13.406: - to create GM with level '60' when @gm is used.
  3170. 2004-12-04 22:29:13.406: - to ALLOW new users (with _F/_M).
  3171. 2004-12-04 22:29:13.406: - with port: 6900.
  3172. 2004-12-04 22:29:13.406: - with the accounts file name: 'save/account.txt'.
  3173. 2004-12-04 22:29:13.406: - with the GM accounts file name: 'conf/GM_account.txt'.
  3174. 2004-12-04 22:29:13.406: - to check GM accounts file modifications every 15 seconds.
  3175. 2004-12-04 22:29:13.406: - to save password in plain text.
  3176. 2004-12-04 22:29:13.406: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3177. 2004-12-04 22:29:13.406: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3178. 2004-12-04 22:29:13.406: - to NOT display normal parse packets on console.
  3179. 2004-12-04 22:29:13.407: - to NOT display administration parse packets on console.
  3180. 2004-12-04 22:29:13.407: - to NOT display char-server parse packets on console.
  3181. 2004-12-04 22:29:13.407: - with no minimum level for connection.
  3182. 2004-12-04 22:29:13.407: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3183. 2004-12-04 22:29:13.407: - to create new accounts with an unlimited time.
  3184. 2004-12-04 22:29:13.407: - with control of players IP between login-server and char-server.
  3185. 2004-12-04 22:29:13.407: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3186. 2004-12-04 22:29:13.408: The LAN configuration of the server is set:
  3187. 2004-12-04 22:29:13.408: - with LAN IP of char-server: 127.0.0.1.
  3188. 2004-12-04 22:29:13.408: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3189. 2004-12-04 22:29:13.411: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3190. 2004-12-04 22:29:13.411: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3191. 2004-12-04 22:29:13.412: The login-server is ready (Server is listening on the port 6900).
  3192. 2004-12-04 22:29:14.146: ----End of login-server (normal end with closing of all files).
  3193. 2004-12-04 22:29:15.953: The login-server starting...
  3194. 2004-12-04 22:29:15.953: The configuration of the server is set:
  3195. 2004-12-04 22:29:15.953: - with a remote administration with the DEFAULT password.
  3196. 2004-12-04 22:29:15.953: - to accept any IP for remote administration
  3197. 2004-12-04 22:29:15.953: - with the DEFAULT 'To GM become' password (gm_pass).
  3198. 2004-12-04 22:29:15.953: - to create GM with level '60' when @gm is used.
  3199. 2004-12-04 22:29:15.953: - to ALLOW new users (with _F/_M).
  3200. 2004-12-04 22:29:15.953: - with port: 6900.
  3201. 2004-12-04 22:29:15.953: - with the accounts file name: 'save/account.txt'.
  3202. 2004-12-04 22:29:15.953: - with the GM accounts file name: 'conf/GM_account.txt'.
  3203. 2004-12-04 22:29:15.953: - to check GM accounts file modifications every 15 seconds.
  3204. 2004-12-04 22:29:15.954: - to save password in plain text.
  3205. 2004-12-04 22:29:15.954: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3206. 2004-12-04 22:29:15.954: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3207. 2004-12-04 22:29:15.954: - to NOT display normal parse packets on console.
  3208. 2004-12-04 22:29:15.954: - to NOT display administration parse packets on console.
  3209. 2004-12-04 22:29:15.954: - to NOT display char-server parse packets on console.
  3210. 2004-12-04 22:29:15.954: - with no minimum level for connection.
  3211. 2004-12-04 22:29:15.954: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3212. 2004-12-04 22:29:15.954: - to create new accounts with an unlimited time.
  3213. 2004-12-04 22:29:15.954: - with control of players IP between login-server and char-server.
  3214. 2004-12-04 22:29:15.955: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3215. 2004-12-04 22:29:15.958: The LAN configuration of the server is set:
  3216. 2004-12-04 22:29:15.958: - with LAN IP of char-server: 127.0.0.1.
  3217. 2004-12-04 22:29:15.958: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3218. 2004-12-04 22:29:15.961: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3219. 2004-12-04 22:29:15.961: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3220. 2004-12-04 22:29:15.962: The login-server is ready (Server is listening on the port 6900).
  3221. 2004-12-04 22:29:20.986: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  3222. 2004-12-04 22:29:20.986: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  3223. 2004-12-04 22:29:20.988: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  3224. 2004-12-04 22:29:34.843: The login-server starting...
  3225. 2004-12-04 22:29:34.843: The configuration of the server is set:
  3226. 2004-12-04 22:29:34.843: - with a remote administration with the DEFAULT password.
  3227. 2004-12-04 22:29:34.843: - to accept any IP for remote administration
  3228. 2004-12-04 22:29:34.843: - with the DEFAULT 'To GM become' password (gm_pass).
  3229. 2004-12-04 22:29:34.843: - to create GM with level '60' when @gm is used.
  3230. 2004-12-04 22:29:34.843: - to ALLOW new users (with _F/_M).
  3231. 2004-12-04 22:29:34.843: - with port: 6900.
  3232. 2004-12-04 22:29:34.844: - with the accounts file name: 'save/account.txt'.
  3233. 2004-12-04 22:29:34.844: - with the GM accounts file name: 'conf/GM_account.txt'.
  3234. 2004-12-04 22:29:34.844: - to check GM accounts file modifications every 15 seconds.
  3235. 2004-12-04 22:29:34.844: - to save password in plain text.
  3236. 2004-12-04 22:29:34.844: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3237. 2004-12-04 22:29:34.844: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3238. 2004-12-04 22:29:34.844: - to NOT display normal parse packets on console.
  3239. 2004-12-04 22:29:34.844: - to NOT display administration parse packets on console.
  3240. 2004-12-04 22:29:34.844: - to NOT display char-server parse packets on console.
  3241. 2004-12-04 22:29:34.844: - with no minimum level for connection.
  3242. 2004-12-04 22:29:34.844: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3243. 2004-12-04 22:29:34.845: - to create new accounts with an unlimited time.
  3244. 2004-12-04 22:29:34.845: - with control of players IP between login-server and char-server.
  3245. 2004-12-04 22:29:34.845: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3246. 2004-12-04 22:29:34.846: The LAN configuration of the server is set:
  3247. 2004-12-04 22:29:34.846: - with LAN IP of char-server: 127.0.0.1.
  3248. 2004-12-04 22:29:34.846: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3249. 2004-12-04 22:29:34.848: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3250. 2004-12-04 22:29:34.849: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3251. 2004-12-04 22:29:34.849: The login-server is ready (Server is listening on the port 6900).
  3252. 2004-12-04 22:29:40.980: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  3253. 2004-12-04 22:29:40.980: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  3254. 2004-12-04 22:29:40.983: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
  3255. 2004-12-04 22:31:44.796: The login-server starting...
  3256. 2004-12-04 22:31:44.796: The configuration of the server is set:
  3257. 2004-12-04 22:31:44.796: - with a remote administration with the DEFAULT password.
  3258. 2004-12-04 22:31:44.796: - to accept any IP for remote administration
  3259. 2004-12-04 22:31:44.796: - with the DEFAULT 'To GM become' password (gm_pass).
  3260. 2004-12-04 22:31:44.796: - to create GM with level '60' when @gm is used.
  3261. 2004-12-04 22:31:44.796: - to ALLOW new users (with _F/_M).
  3262. 2004-12-04 22:31:44.796: - with port: 6900.
  3263. 2004-12-04 22:31:44.797: - with the accounts file name: 'save/account.txt'.
  3264. 2004-12-04 22:31:44.797: - with the GM accounts file name: 'conf/GM_account.txt'.
  3265. 2004-12-04 22:31:44.797: - to check GM accounts file modifications every 15 seconds.
  3266. 2004-12-04 22:31:44.797: - to save password in plain text.
  3267. 2004-12-04 22:31:44.797: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3268. 2004-12-04 22:31:44.797: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3269. 2004-12-04 22:31:44.797: - to NOT display normal parse packets on console.
  3270. 2004-12-04 22:31:44.797: - to NOT display administration parse packets on console.
  3271. 2004-12-04 22:31:44.797: - to NOT display char-server parse packets on console.
  3272. 2004-12-04 22:31:44.797: - with no minimum level for connection.
  3273. 2004-12-04 22:31:44.797: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3274. 2004-12-04 22:31:44.797: - to create new accounts with an unlimited time.
  3275. 2004-12-04 22:31:44.798: - with control of players IP between login-server and char-server.
  3276. 2004-12-04 22:31:44.798: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3277. 2004-12-04 22:31:44.799: The LAN configuration of the server is set:
  3278. 2004-12-04 22:31:44.799: - with LAN IP of char-server: 127.0.0.1.
  3279. 2004-12-04 22:31:44.799: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3280. 2004-12-04 22:31:44.805: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3281. 2004-12-04 22:31:44.806: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3282. 2004-12-04 22:31:44.806: The login-server is ready (Server is listening on the port 6900).
  3283. 2004-12-04 22:32:11.169: ----End of login-server (normal end with closing of all files).
  3284. 2004-12-04 22:32:23.937: The login-server starting...
  3285. 2004-12-04 22:32:23.937: The configuration of the server is set:
  3286. 2004-12-04 22:32:23.937: - with a remote administration with the DEFAULT password.
  3287. 2004-12-04 22:32:23.937: - to accept any IP for remote administration
  3288. 2004-12-04 22:32:23.937: - with the DEFAULT 'To GM become' password (gm_pass).
  3289. 2004-12-04 22:32:23.937: - to create GM with level '60' when @gm is used.
  3290. 2004-12-04 22:32:23.937: - to ALLOW new users (with _F/_M).
  3291. 2004-12-04 22:32:23.937: - with port: 6900.
  3292. 2004-12-04 22:32:23.937: - with the accounts file name: 'save/account.txt'.
  3293. 2004-12-04 22:32:23.937: - with the GM accounts file name: 'conf/GM_account.txt'.
  3294. 2004-12-04 22:32:23.937: - to check GM accounts file modifications every 15 seconds.
  3295. 2004-12-04 22:32:23.937: - to save password in plain text.
  3296. 2004-12-04 22:32:23.937: - with the unknown packets file name: 'log/login_unknown_packets.log'.
  3297. 2004-12-04 22:32:23.937: - to SAVE only unkown packets sending by a char-server or a remote administration.
  3298. 2004-12-04 22:32:23.938: - to NOT display normal parse packets on console.
  3299. 2004-12-04 22:32:23.938: - to NOT display administration parse packets on console.
  3300. 2004-12-04 22:32:23.938: - to NOT display char-server parse packets on console.
  3301. 2004-12-04 22:32:23.938: - with no minimum level for connection.
  3302. 2004-12-04 22:32:23.938: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
  3303. 2004-12-04 22:32:23.938: - to create new accounts with an unlimited time.
  3304. 2004-12-04 22:32:23.938: - with control of players IP between login-server and char-server.
  3305. 2004-12-04 22:32:23.938: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
  3306. 2004-12-04 22:32:23.939: The LAN configuration of the server is set:
  3307. 2004-12-04 22:32:23.940: - with LAN IP of char-server: 127.0.0.1.
  3308. 2004-12-04 22:32:23.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
  3309. 2004-12-04 22:32:23.945: 10 accounts read in save/account.txt, of which is no GM account and 5 server accounts ('S').
  3310. 2004-12-04 22:32:23.945: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
  3311. 2004-12-04 22:32:23.946: The login-server is ready (Server is listening on the port 6900).
  3312. 2004-12-04 22:32:27.779: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
  3313. 2004-12-04 22:32:27.779: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
  3314. 2004-12-04 22:32:27.781: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)