123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408 |
- <<<<<<< .mine
- <<<<<<< .mine
- 2004-11-11 16:42:57.500: The login-server starting...
- 2004-11-11 16:42:57.574: The configuration of the server is set:
- 2004-11-11 16:42:57.574: - with no remote administration.
- 2004-11-11 16:42:57.574: - to accept any IP for remote administration
- 2004-11-11 16:42:57.574: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:42:57.574: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:42:57.574: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:42:57.575: - with port: 6900.
- 2004-11-11 16:42:57.575: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:42:57.575: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:42:57.575: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:42:57.575: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:42:57.576: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:42:57.576: - to NOT display normal parse packets on console.
- 2004-11-11 16:42:57.576: - to NOT display administration parse packets on console.
- 2004-11-11 16:42:57.576: - to NOT display char-server parse packets on console.
- 2004-11-11 16:42:57.576: - with no minimum level for connection.
- 2004-11-11 16:42:57.576: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:42:57.576: - to create new accounts with an unlimited time.
- 2004-11-11 16:42:57.576: - with control of players IP between login-server and char-server.
- 2004-11-11 16:42:57.576: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:42:57.594: The LAN configuration of the server is set:
- 2004-11-11 16:42:57.595: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:42:57.595: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:42:57.596: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:42:57.600: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:43:39.859: The login-server starting...
- 2004-11-11 16:43:39.859: The configuration of the server is set:
- 2004-11-11 16:43:39.859: - with no remote administration.
- 2004-11-11 16:43:39.859: - to accept any IP for remote administration
- 2004-11-11 16:43:39.859: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:43:39.859: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:43:39.859: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:43:39.859: - with port: 6900.
- 2004-11-11 16:43:39.860: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:43:39.860: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:43:39.860: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:43:39.860: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:43:39.860: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:43:39.860: - to NOT display normal parse packets on console.
- 2004-11-11 16:43:39.860: - to NOT display administration parse packets on console.
- 2004-11-11 16:43:39.860: - to NOT display char-server parse packets on console.
- 2004-11-11 16:43:39.860: - with no minimum level for connection.
- 2004-11-11 16:43:39.861: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:43:39.861: - to create new accounts with an unlimited time.
- 2004-11-11 16:43:39.861: - with control of players IP between login-server and char-server.
- 2004-11-11 16:43:39.861: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:43:39.862: The LAN configuration of the server is set:
- 2004-11-11 16:43:39.862: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:43:39.862: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:43:39.864: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:43:39.866: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:43:42.308: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:43:42.309: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:43:42.310: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:43:44.791: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:44:26.468: The login-server starting...
- 2004-11-11 16:44:26.468: The configuration of the server is set:
- 2004-11-11 16:44:26.468: - with no remote administration.
- 2004-11-11 16:44:26.468: - to accept any IP for remote administration
- 2004-11-11 16:44:26.468: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:44:26.468: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:44:26.468: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:44:26.468: - with port: 6900.
- 2004-11-11 16:44:26.469: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:44:26.469: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:44:26.469: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:44:26.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:44:26.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:44:26.469: - to NOT display normal parse packets on console.
- 2004-11-11 16:44:26.469: - to NOT display administration parse packets on console.
- 2004-11-11 16:44:26.469: - to NOT display char-server parse packets on console.
- 2004-11-11 16:44:26.469: - with no minimum level for connection.
- 2004-11-11 16:44:26.470: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:44:26.470: - to create new accounts with an unlimited time.
- 2004-11-11 16:44:26.470: - with control of players IP between login-server and char-server.
- 2004-11-11 16:44:26.470: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:44:26.471: The LAN configuration of the server is set:
- 2004-11-11 16:44:26.471: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:44:26.471: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:44:26.472: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-11 16:44:26.474: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:44:29.635: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:44:29.635: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:44:29.637: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:46:36.685: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:46:36.685: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
- 2004-11-11 16:46:37.308: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
- 2004-11-11 16:46:52.378: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:47:20.578: The login-server starting...
- 2004-11-11 16:47:20.578: The configuration of the server is set:
- 2004-11-11 16:47:20.578: - with no remote administration.
- 2004-11-11 16:47:20.578: - to accept any IP for remote administration
- 2004-11-11 16:47:20.578: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:47:20.578: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:47:20.578: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:47:20.578: - with port: 6900.
- 2004-11-11 16:47:20.578: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:47:20.578: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:47:20.578: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:47:20.579: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:47:20.579: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:47:20.579: - to NOT display normal parse packets on console.
- 2004-11-11 16:47:20.579: - to NOT display administration parse packets on console.
- 2004-11-11 16:47:20.579: - to NOT display char-server parse packets on console.
- 2004-11-11 16:47:20.579: - with no minimum level for connection.
- 2004-11-11 16:47:20.579: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:47:20.579: - to create new accounts with an unlimited time.
- 2004-11-11 16:47:20.580: - with control of players IP between login-server and char-server.
- 2004-11-11 16:47:20.580: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:47:20.580: The LAN configuration of the server is set:
- 2004-11-11 16:47:20.582: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:47:20.582: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:47:20.584: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-11 16:47:20.587: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:47:22.331: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:47:22.331: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:47:22.332: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:47:44.744: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:47:44.744: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
- 2004-11-11 16:47:45.135: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
- 2004-11-11 16:47:47.911: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:47:47.912: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
- 2004-11-11 16:47:48.300: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
- 2004-11-11 16:48:03.321: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:48:03.825: ----End of login-server (normal end with closing of all files).
- 2004-11-11 16:48:22.000: The login-server starting...
- 2004-11-11 16:48:22.000: The configuration of the server is set:
- 2004-11-11 16:48:22.000: - with no remote administration.
- 2004-11-11 16:48:22.000: - to accept any IP for remote administration
- 2004-11-11 16:48:22.000: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:48:22.000: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:48:22.000: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:48:22.000: - with port: 6900.
- 2004-11-11 16:48:22.001: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:48:22.001: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:48:22.001: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:48:22.001: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:48:22.001: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:48:22.001: - to NOT display normal parse packets on console.
- 2004-11-11 16:48:22.001: - to NOT display administration parse packets on console.
- 2004-11-11 16:48:22.001: - to NOT display char-server parse packets on console.
- 2004-11-11 16:48:22.002: - with no minimum level for connection.
- 2004-11-11 16:48:22.002: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:48:22.002: - to create new accounts with an unlimited time.
- 2004-11-11 16:48:22.002: - with control of players IP between login-server and char-server.
- 2004-11-11 16:48:22.002: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:48:22.003: The LAN configuration of the server is set:
- 2004-11-11 16:48:22.003: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:48:22.003: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:48:22.004: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-11 16:48:22.009: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:48:24.342: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:48:24.342: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:48:24.344: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:49:09.967: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:49:09.967: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
- 2004-11-11 16:49:15.570: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
- 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)
- 2004-11-11 16:49:16.398: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-11 16:51:17.974: ----End of login-server (normal end with closing of all files).
- 2004-11-11 16:51:25.234: The login-server starting...
- 2004-11-11 16:51:25.234: The configuration of the server is set:
- 2004-11-11 16:51:25.234: - with no remote administration.
- 2004-11-11 16:51:25.234: - to accept any IP for remote administration
- 2004-11-11 16:51:25.234: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:51:25.234: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:51:25.234: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:51:25.235: - with port: 6900.
- 2004-11-11 16:51:25.235: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:51:25.235: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:51:25.235: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:51:25.235: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:51:25.235: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:51:25.235: - to NOT display normal parse packets on console.
- 2004-11-11 16:51:25.235: - to NOT display administration parse packets on console.
- 2004-11-11 16:51:25.235: - to NOT display char-server parse packets on console.
- 2004-11-11 16:51:25.236: - with no minimum level for connection.
- 2004-11-11 16:51:25.236: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:51:25.236: - to create new accounts with an unlimited time.
- 2004-11-11 16:51:25.236: - with control of players IP between login-server and char-server.
- 2004-11-11 16:51:25.236: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:51:25.237: The LAN configuration of the server is set:
- 2004-11-11 16:51:25.237: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:51:25.237: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:51:25.238: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:51:25.241: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:51:27.129: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:51:27.130: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:51:27.133: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:51:48.970: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:51:48.970: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-11 16:51:49.440: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-11 16:51:59.769: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:52:00.665: ----End of login-server (normal end with closing of all files).
- 2004-11-11 16:52:15.890: The login-server starting...
- 2004-11-11 16:52:15.890: The configuration of the server is set:
- 2004-11-11 16:52:15.890: - with no remote administration.
- 2004-11-11 16:52:15.890: - to accept any IP for remote administration
- 2004-11-11 16:52:15.890: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:52:15.890: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:52:15.890: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:52:15.890: - with port: 6900.
- 2004-11-11 16:52:15.891: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:52:15.891: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:52:15.891: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:52:15.891: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:52:15.891: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:52:15.891: - to NOT display normal parse packets on console.
- 2004-11-11 16:52:15.891: - to NOT display administration parse packets on console.
- 2004-11-11 16:52:15.891: - to NOT display char-server parse packets on console.
- 2004-11-11 16:52:15.892: - with no minimum level for connection.
- 2004-11-11 16:52:15.892: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:52:15.892: - to create new accounts with an unlimited time.
- 2004-11-11 16:52:15.892: - with control of players IP between login-server and char-server.
- 2004-11-11 16:52:15.892: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:52:15.893: The LAN configuration of the server is set:
- 2004-11-11 16:52:15.893: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:52:15.893: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:52:15.896: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:52:15.898: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:52:17.567: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:52:17.567: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:52:17.572: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:52:56.354: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:52:56.355: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
- 2004-11-11 16:53:01.776: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
- 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)
- 2004-11-11 16:53:02.316: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-11 16:53:11.597: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:53:12.191: ----End of login-server (normal end with closing of all files).
- 2004-11-12 23:28:26.843: The login-server starting...
- 2004-11-12 23:28:26.904: The configuration of the server is set:
- 2004-11-12 23:28:26.904: - with no remote administration.
- 2004-11-12 23:28:26.904: - to accept any IP for remote administration
- 2004-11-12 23:28:26.904: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-12 23:28:26.904: - to create GM with level '60' when @gm is used.
- 2004-11-12 23:28:26.904: - to ALLOW new users (with _F/_M).
- 2004-11-12 23:28:26.905: - with port: 6900.
- 2004-11-12 23:28:26.905: - with the accounts file name: 'save/account.txt'.
- 2004-11-12 23:28:26.905: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-12 23:28:26.905: - to check GM accounts file modifications every 15 seconds.
- 2004-11-12 23:28:26.905: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-12 23:28:26.905: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-12 23:28:26.905: - to NOT display normal parse packets on console.
- 2004-11-12 23:28:26.905: - to NOT display administration parse packets on console.
- 2004-11-12 23:28:26.905: - to NOT display char-server parse packets on console.
- 2004-11-12 23:28:26.906: - with no minimum level for connection.
- 2004-11-12 23:28:26.906: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-12 23:28:26.906: - to create new accounts with an unlimited time.
- 2004-11-12 23:28:26.906: - with control of players IP between login-server and char-server.
- 2004-11-12 23:28:26.906: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-12 23:28:26.907: The LAN configuration of the server is set:
- 2004-11-12 23:28:26.907: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-12 23:28:26.907: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-12 23:28:26.909: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-12 23:28:26.911: The login-server is ready (Server is listening on the port 6900).
- 2004-11-12 23:28:38.177: ----End of login-server (normal end with closing of all files).
- 2004-11-12 23:32:31.937: The login-server starting...
- 2004-11-12 23:32:31.937: The configuration of the server is set:
- 2004-11-12 23:32:31.937: - with no remote administration.
- 2004-11-12 23:32:31.937: - to accept any IP for remote administration
- 2004-11-12 23:32:31.937: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-12 23:32:31.937: - to create GM with level '60' when @gm is used.
- 2004-11-12 23:32:31.937: - to ALLOW new users (with _F/_M).
- 2004-11-12 23:32:31.937: - with port: 6900.
- 2004-11-12 23:32:31.938: - with the accounts file name: 'save/account.txt'.
- 2004-11-12 23:32:31.938: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-12 23:32:31.938: - to check GM accounts file modifications every 15 seconds.
- 2004-11-12 23:32:31.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-12 23:32:31.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-12 23:32:31.938: - to NOT display normal parse packets on console.
- 2004-11-12 23:32:31.938: - to NOT display administration parse packets on console.
- 2004-11-12 23:32:31.938: - to NOT display char-server parse packets on console.
- 2004-11-12 23:32:31.938: - with no minimum level for connection.
- 2004-11-12 23:32:31.939: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-12 23:32:31.939: - to create new accounts with an unlimited time.
- 2004-11-12 23:32:31.939: - with control of players IP between login-server and char-server.
- 2004-11-12 23:32:31.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-12 23:32:31.940: The LAN configuration of the server is set:
- 2004-11-12 23:32:31.940: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-12 23:32:31.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-12 23:32:31.943: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-12 23:32:31.945: The login-server is ready (Server is listening on the port 6900).
- 2004-11-12 23:32:33.967: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-12 23:32:33.968: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-12 23:32:33.969: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-12 23:33:24.566: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
- 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)
- 2004-11-12 23:33:25.808: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-12 23:34:14.724: ----End of login-server (normal end with closing of all files).
- 2004-11-12 23:37:12.437: The login-server starting...
- 2004-11-12 23:37:12.437: The configuration of the server is set:
- 2004-11-12 23:37:12.437: - with no remote administration.
- 2004-11-12 23:37:12.437: - to accept any IP for remote administration
- 2004-11-12 23:37:12.437: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-12 23:37:12.437: - to create GM with level '60' when @gm is used.
- 2004-11-12 23:37:12.438: - to ALLOW new users (with _F/_M).
- 2004-11-12 23:37:12.438: - with port: 6900.
- 2004-11-12 23:37:12.438: - with the accounts file name: 'save/account.txt'.
- 2004-11-12 23:37:12.438: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-12 23:37:12.438: - to check GM accounts file modifications every 15 seconds.
- 2004-11-12 23:37:12.438: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-12 23:37:12.438: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-12 23:37:12.439: - to NOT display normal parse packets on console.
- 2004-11-12 23:37:12.439: - to NOT display administration parse packets on console.
- 2004-11-12 23:37:12.439: - to NOT display char-server parse packets on console.
- 2004-11-12 23:37:12.439: - with no minimum level for connection.
- 2004-11-12 23:37:12.439: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-12 23:37:12.439: - to create new accounts with an unlimited time.
- 2004-11-12 23:37:12.439: - with control of players IP between login-server and char-server.
- 2004-11-12 23:37:12.439: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-12 23:37:12.441: The LAN configuration of the server is set:
- 2004-11-12 23:37:12.441: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-12 23:37:12.442: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-12 23:37:12.443: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-12 23:37:12.445: The login-server is ready (Server is listening on the port 6900).
- 2004-11-12 23:37:34.077: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-12 23:37:34.077: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-12 23:37:34.079: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-12 23:38:07.480: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
- 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)
- 2004-11-12 23:38:09.862: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
- 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)
- 2004-11-12 23:38:11.485: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
- 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)
- 2004-11-12 23:38:22.658: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-12 23:38:22.658: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-12 23:38:23.234: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-12 23:38:28.152: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-12 23:56:15.812: The login-server starting...
- 2004-11-12 23:56:15.812: The configuration of the server is set:
- 2004-11-12 23:56:15.812: - with no remote administration.
- 2004-11-12 23:56:15.812: - to accept any IP for remote administration
- 2004-11-12 23:56:15.812: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-12 23:56:15.812: - to create GM with level '60' when @gm is used.
- 2004-11-12 23:56:15.812: - to ALLOW new users (with _F/_M).
- 2004-11-12 23:56:15.812: - with port: 6900.
- 2004-11-12 23:56:15.812: - with the accounts file name: 'save/account.txt'.
- 2004-11-12 23:56:15.812: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-12 23:56:15.812: - to check GM accounts file modifications every 15 seconds.
- 2004-11-12 23:56:15.812: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-12 23:56:15.812: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-12 23:56:15.813: - to NOT display normal parse packets on console.
- 2004-11-12 23:56:15.813: - to NOT display administration parse packets on console.
- 2004-11-12 23:56:15.813: - to NOT display char-server parse packets on console.
- 2004-11-12 23:56:15.813: - with no minimum level for connection.
- 2004-11-12 23:56:15.813: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-12 23:56:15.813: - to create new accounts with an unlimited time.
- 2004-11-12 23:56:15.813: - with control of players IP between login-server and char-server.
- 2004-11-12 23:56:15.813: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-12 23:56:15.814: The LAN configuration of the server is set:
- 2004-11-12 23:56:15.814: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-12 23:56:15.814: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-12 23:56:15.816: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-12 23:56:15.818: The login-server is ready (Server is listening on the port 6900).
- 2004-11-12 23:56:17.869: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-12 23:56:17.869: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-12 23:56:17.963: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-12 23:56:35.389: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-12 23:56:35.389: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-12 23:56:36.205: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 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)
- 2004-11-12 23:57:10.469: ----End of login-server (normal end with closing of all files).
- 2004-11-13 00:04:29.140: The login-server starting...
- 2004-11-13 00:04:29.140: The configuration of the server is set:
- 2004-11-13 00:04:29.140: - with no remote administration.
- 2004-11-13 00:04:29.140: - to accept any IP for remote administration
- 2004-11-13 00:04:29.140: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 00:04:29.140: - to create GM with level '60' when @gm is used.
- 2004-11-13 00:04:29.141: - to ALLOW new users (with _F/_M).
- 2004-11-13 00:04:29.141: - with port: 6900.
- 2004-11-13 00:04:29.141: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 00:04:29.141: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 00:04:29.141: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 00:04:29.141: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 00:04:29.141: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 00:04:29.141: - to NOT display normal parse packets on console.
- 2004-11-13 00:04:29.142: - to NOT display administration parse packets on console.
- 2004-11-13 00:04:29.142: - to NOT display char-server parse packets on console.
- 2004-11-13 00:04:29.142: - with no minimum level for connection.
- 2004-11-13 00:04:29.142: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 00:04:29.142: - to create new accounts with an unlimited time.
- 2004-11-13 00:04:29.142: - with control of players IP between login-server and char-server.
- 2004-11-13 00:04:29.142: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 00:04:29.143: The LAN configuration of the server is set:
- 2004-11-13 00:04:29.144: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 00:04:29.144: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 00:04:29.145: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-13 00:04:29.149: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 00:04:31.007: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 00:04:31.007: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 00:04:31.100: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 00:05:06.976: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:05:06.977: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:05:07.788: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 00:06:00.287: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:06:00.287: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:06:00.835: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 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)
- 2004-11-13 00:06:35.288: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:06:35.288: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:06:35.650: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 00:07:44.771: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:07:44.771: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:07:45.104: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 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)
- 2004-11-13 00:08:58.530: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-13 00:08:59.206: ----End of login-server (normal end with closing of all files).
- 2004-11-13 00:19:04.984: The login-server starting...
- 2004-11-13 00:19:04.984: The configuration of the server is set:
- 2004-11-13 00:19:04.984: - with no remote administration.
- 2004-11-13 00:19:04.984: - to accept any IP for remote administration
- 2004-11-13 00:19:04.984: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 00:19:04.984: - to create GM with level '60' when @gm is used.
- 2004-11-13 00:19:04.985: - to ALLOW new users (with _F/_M).
- 2004-11-13 00:19:04.985: - with port: 6900.
- 2004-11-13 00:19:04.985: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 00:19:04.985: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 00:19:04.985: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 00:19:04.985: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 00:19:04.985: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 00:19:04.985: - to NOT display normal parse packets on console.
- 2004-11-13 00:19:04.985: - to NOT display administration parse packets on console.
- 2004-11-13 00:19:04.986: - to NOT display char-server parse packets on console.
- 2004-11-13 00:19:04.986: - with no minimum level for connection.
- 2004-11-13 00:19:04.986: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 00:19:04.986: - to create new accounts with an unlimited time.
- 2004-11-13 00:19:04.986: - with control of players IP between login-server and char-server.
- 2004-11-13 00:19:04.986: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 00:19:04.987: The LAN configuration of the server is set:
- 2004-11-13 00:19:04.987: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 00:19:04.987: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 00:19:04.988: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-13 00:19:04.991: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 00:19:06.793: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 00:19:06.793: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 00:19:06.794: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 00:19:14.895: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:19:14.896: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:19:15.931: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 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)
- 2004-11-13 00:23:42.000: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-13 00:24:21.429: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-13 00:24:22.080: ----End of login-server (normal end with closing of all files).
- 2004-11-13 00:31:04.468: The login-server starting...
- 2004-11-13 00:31:04.468: The configuration of the server is set:
- 2004-11-13 00:31:04.468: - with no remote administration.
- 2004-11-13 00:31:04.468: - to accept any IP for remote administration
- 2004-11-13 00:31:04.468: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 00:31:04.468: - to create GM with level '60' when @gm is used.
- 2004-11-13 00:31:04.468: - to ALLOW new users (with _F/_M).
- 2004-11-13 00:31:04.468: - with port: 6900.
- 2004-11-13 00:31:04.468: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 00:31:04.468: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 00:31:04.469: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 00:31:04.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 00:31:04.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 00:31:04.469: - to NOT display normal parse packets on console.
- 2004-11-13 00:31:04.470: - to NOT display administration parse packets on console.
- 2004-11-13 00:31:04.470: - to NOT display char-server parse packets on console.
- 2004-11-13 00:31:04.470: - with no minimum level for connection.
- 2004-11-13 00:31:04.470: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 00:31:04.470: - to create new accounts with an unlimited time.
- 2004-11-13 00:31:04.470: - with control of players IP between login-server and char-server.
- 2004-11-13 00:31:04.470: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 00:31:04.472: The LAN configuration of the server is set:
- 2004-11-13 00:31:04.473: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 00:31:04.473: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 00:31:04.474: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 00:31:04.476: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 00:31:06.674: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 00:31:06.674: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 00:31:06.676: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 00:31:15.453: The login-server starting...
- 2004-11-13 00:31:15.453: The configuration of the server is set:
- 2004-11-13 00:31:15.453: - with no remote administration.
- 2004-11-13 00:31:15.453: - to accept any IP for remote administration
- 2004-11-13 00:31:15.453: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 00:31:15.454: - to create GM with level '60' when @gm is used.
- 2004-11-13 00:31:15.454: - to ALLOW new users (with _F/_M).
- 2004-11-13 00:31:15.454: - with port: 6900.
- 2004-11-13 00:31:15.454: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 00:31:15.454: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 00:31:15.454: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 00:31:15.454: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 00:31:15.454: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 00:31:15.455: - to NOT display normal parse packets on console.
- 2004-11-13 00:31:15.455: - to NOT display administration parse packets on console.
- 2004-11-13 00:31:15.455: - to NOT display char-server parse packets on console.
- 2004-11-13 00:31:15.455: - with no minimum level for connection.
- 2004-11-13 00:31:15.455: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 00:31:15.455: - to create new accounts with an unlimited time.
- 2004-11-13 00:31:15.455: - with control of players IP between login-server and char-server.
- 2004-11-13 00:31:15.455: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 00:31:15.456: The LAN configuration of the server is set:
- 2004-11-13 00:31:15.456: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 00:31:15.456: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 00:31:15.481: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 00:31:15.499: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 00:31:16.683: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 00:31:16.683: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 00:31:16.685: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 00:31:17.695: ----End of login-server (normal end with closing of all files).
- 2004-11-13 00:32:40.671: The login-server starting...
- 2004-11-13 00:32:40.671: The configuration of the server is set:
- 2004-11-13 00:32:40.671: - with no remote administration.
- 2004-11-13 00:32:40.671: - to accept any IP for remote administration
- 2004-11-13 00:32:40.671: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 00:32:40.672: - to create GM with level '60' when @gm is used.
- 2004-11-13 00:32:40.672: - to ALLOW new users (with _F/_M).
- 2004-11-13 00:32:40.672: - with port: 6900.
- 2004-11-13 00:32:40.672: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 00:32:40.672: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 00:32:40.672: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 00:32:40.672: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 00:32:40.672: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 00:32:40.672: - to NOT display normal parse packets on console.
- 2004-11-13 00:32:40.673: - to NOT display administration parse packets on console.
- 2004-11-13 00:32:40.673: - to NOT display char-server parse packets on console.
- 2004-11-13 00:32:40.673: - with no minimum level for connection.
- 2004-11-13 00:32:40.673: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 00:32:40.673: - to create new accounts with an unlimited time.
- 2004-11-13 00:32:40.673: - with control of players IP between login-server and char-server.
- 2004-11-13 00:32:40.673: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 00:32:40.674: The LAN configuration of the server is set:
- 2004-11-13 00:32:40.674: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 00:32:40.674: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 00:32:40.679: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 00:32:40.687: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 00:32:41.952: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 00:32:41.952: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 00:32:41.952: Connexion of the char-server 'eAthena' REFUSED (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 00:32:42.062: End of connection, unknown packet (ip: 127.0.0.1)
- 2004-11-13 00:32:54.427: ----End of login-server (normal end with closing of all files).
- 2004-11-13 00:33:19.274: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:33:19.274: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:33:19.797: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 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)
- 2004-11-13 00:34:10.104: ----End of login-server (normal end with closing of all files).
- 2004-11-13 00:34:26.671: The login-server starting...
- 2004-11-13 00:34:26.671: The configuration of the server is set:
- 2004-11-13 00:34:26.671: - with no remote administration.
- 2004-11-13 00:34:26.671: - to accept any IP for remote administration
- 2004-11-13 00:34:26.671: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 00:34:26.671: - to create GM with level '60' when @gm is used.
- 2004-11-13 00:34:26.671: - to ALLOW new users (with _F/_M).
- 2004-11-13 00:34:26.671: - with port: 6900.
- 2004-11-13 00:34:26.671: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 00:34:26.671: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 00:34:26.671: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 00:34:26.671: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 00:34:26.672: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 00:34:26.672: - to NOT display normal parse packets on console.
- 2004-11-13 00:34:26.672: - to NOT display administration parse packets on console.
- 2004-11-13 00:34:26.672: - to NOT display char-server parse packets on console.
- 2004-11-13 00:34:26.672: - with no minimum level for connection.
- 2004-11-13 00:34:26.672: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 00:34:26.672: - to create new accounts with an unlimited time.
- 2004-11-13 00:34:26.672: - with control of players IP between login-server and char-server.
- 2004-11-13 00:34:26.672: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 00:34:26.699: The LAN configuration of the server is set:
- 2004-11-13 00:34:26.699: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 00:34:26.699: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 00:34:26.714: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 00:34:26.741: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 00:34:28.403: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 00:34:28.403: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 00:34:28.418: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 00:34:48.931: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:34:48.932: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:34:49.638: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 00:37:07.992: ----End of login-server (normal end with closing of all files).
- 2004-11-13 00:53:33.140: The login-server starting...
- 2004-11-13 00:53:33.140: The configuration of the server is set:
- 2004-11-13 00:53:33.140: - with no remote administration.
- 2004-11-13 00:53:33.140: - to accept any IP for remote administration
- 2004-11-13 00:53:33.140: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 00:53:33.141: - to create GM with level '60' when @gm is used.
- 2004-11-13 00:53:33.141: - to ALLOW new users (with _F/_M).
- 2004-11-13 00:53:33.141: - with port: 6900.
- 2004-11-13 00:53:33.141: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 00:53:33.141: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 00:53:33.141: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 00:53:33.141: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 00:53:33.141: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 00:53:33.142: - to NOT display normal parse packets on console.
- 2004-11-13 00:53:33.142: - to NOT display administration parse packets on console.
- 2004-11-13 00:53:33.142: - to NOT display char-server parse packets on console.
- 2004-11-13 00:53:33.142: - with no minimum level for connection.
- 2004-11-13 00:53:33.142: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 00:53:33.142: - to create new accounts with an unlimited time.
- 2004-11-13 00:53:33.142: - with control of players IP between login-server and char-server.
- 2004-11-13 00:53:33.142: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 00:53:33.143: The LAN configuration of the server is set:
- 2004-11-13 00:53:33.143: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 00:53:33.144: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 00:53:33.145: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 00:53:33.147: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 00:53:38.310: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 00:53:38.310: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 00:53:38.322: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 00:54:07.382: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 00:54:07.382: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 00:54:07.904: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 00:59:16.540: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-13 00:59:17.153: ----End of login-server (normal end with closing of all files).
- 2004-11-13 01:04:21.890: The login-server starting...
- 2004-11-13 01:04:21.890: The configuration of the server is set:
- 2004-11-13 01:04:21.890: - with no remote administration.
- 2004-11-13 01:04:21.890: - to accept any IP for remote administration
- 2004-11-13 01:04:21.890: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 01:04:21.890: - to create GM with level '60' when @gm is used.
- 2004-11-13 01:04:21.891: - to ALLOW new users (with _F/_M).
- 2004-11-13 01:04:21.891: - with port: 6900.
- 2004-11-13 01:04:21.891: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 01:04:21.891: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 01:04:21.891: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 01:04:21.891: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 01:04:21.891: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 01:04:21.891: - to NOT display normal parse packets on console.
- 2004-11-13 01:04:21.892: - to NOT display administration parse packets on console.
- 2004-11-13 01:04:21.892: - to NOT display char-server parse packets on console.
- 2004-11-13 01:04:21.892: - with no minimum level for connection.
- 2004-11-13 01:04:21.892: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 01:04:21.892: - to create new accounts with an unlimited time.
- 2004-11-13 01:04:21.892: - with control of players IP between login-server and char-server.
- 2004-11-13 01:04:21.892: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 01:04:21.893: The LAN configuration of the server is set:
- 2004-11-13 01:04:21.893: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 01:04:21.893: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 01:04:21.895: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 01:04:21.897: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 01:04:22.123: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 01:04:22.124: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 01:04:22.127: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 01:04:42.420: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 01:04:42.420: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 01:04:42.881: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 01:05:20.357: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-13 01:05:40.515: ----End of login-server (normal end with closing of all files).
- 2004-11-13 01:05:59.796: The login-server starting...
- 2004-11-13 01:05:59.796: The configuration of the server is set:
- 2004-11-13 01:05:59.797: - with no remote administration.
- 2004-11-13 01:05:59.797: - to accept any IP for remote administration
- 2004-11-13 01:05:59.797: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 01:05:59.797: - to create GM with level '60' when @gm is used.
- 2004-11-13 01:05:59.797: - to ALLOW new users (with _F/_M).
- 2004-11-13 01:05:59.797: - with port: 6900.
- 2004-11-13 01:05:59.797: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 01:05:59.797: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 01:05:59.798: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 01:05:59.798: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 01:05:59.798: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 01:05:59.798: - to NOT display normal parse packets on console.
- 2004-11-13 01:05:59.798: - to NOT display administration parse packets on console.
- 2004-11-13 01:05:59.798: - to NOT display char-server parse packets on console.
- 2004-11-13 01:05:59.798: - with no minimum level for connection.
- 2004-11-13 01:05:59.799: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 01:05:59.799: - to create new accounts with an unlimited time.
- 2004-11-13 01:05:59.799: - with control of players IP between login-server and char-server.
- 2004-11-13 01:05:59.799: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 01:05:59.805: The LAN configuration of the server is set:
- 2004-11-13 01:05:59.805: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 01:05:59.805: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 01:05:59.807: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 01:05:59.814: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 01:06:02.333: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 01:06:02.333: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 01:06:02.335: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 01:06:15.941: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 01:06:15.942: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 01:06:16.571: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 01:09:59.936: ----End of login-server (normal end with closing of all files).
- 2004-11-13 07:55:58.781: The login-server starting...
- 2004-11-13 07:55:58.781: The configuration of the server is set:
- 2004-11-13 07:55:58.781: - with no remote administration.
- 2004-11-13 07:55:58.782: - to accept any IP for remote administration
- 2004-11-13 07:55:58.782: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 07:55:58.782: - to create GM with level '60' when @gm is used.
- 2004-11-13 07:55:58.782: - to ALLOW new users (with _F/_M).
- 2004-11-13 07:55:58.782: - with port: 6900.
- 2004-11-13 07:55:58.782: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 07:55:58.782: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 07:55:58.783: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 07:55:58.783: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 07:55:58.784: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 07:55:58.784: - to NOT display normal parse packets on console.
- 2004-11-13 07:55:58.784: - to NOT display administration parse packets on console.
- 2004-11-13 07:55:58.784: - to NOT display char-server parse packets on console.
- 2004-11-13 07:55:58.784: - with no minimum level for connection.
- 2004-11-13 07:55:58.784: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 07:55:58.784: - to create new accounts with an unlimited time.
- 2004-11-13 07:55:58.784: - with control of players IP between login-server and char-server.
- 2004-11-13 07:55:58.785: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 07:55:58.800: The LAN configuration of the server is set:
- 2004-11-13 07:55:58.801: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 07:55:58.801: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 07:55:58.802: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 07:55:58.805: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 07:56:00.317: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 07:56:00.318: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 07:56:00.320: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 07:56:28.071: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 07:56:28.072: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 07:56:28.633: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 07:56:57.364: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 07:56:57.364: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 07:56:57.785: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 07:57:34.588: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-13 08:01:13.227: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:01:13.227: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:01:13.721: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 08:01:48.996: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:01:48.996: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:01:49.376: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 08:02:04.918: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:02:04.919: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:02:05.245: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 08:02:19.998: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:02:19.999: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:02:20.325: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 08:05:39.776: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-13 08:07:25.737: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:07:25.768: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:07:26.299: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 08:07:46.174: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-13 08:08:35.439: ----End of login-server (normal end with closing of all files).
- 2004-11-13 08:11:26.609: The login-server starting...
- 2004-11-13 08:11:26.609: The configuration of the server is set:
- 2004-11-13 08:11:26.609: - with no remote administration.
- 2004-11-13 08:11:26.609: - to accept any IP for remote administration
- 2004-11-13 08:11:26.609: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 08:11:26.609: - to create GM with level '60' when @gm is used.
- 2004-11-13 08:11:26.609: - to ALLOW new users (with _F/_M).
- 2004-11-13 08:11:26.609: - with port: 6900.
- 2004-11-13 08:11:26.610: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 08:11:26.610: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 08:11:26.610: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 08:11:26.610: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 08:11:26.610: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 08:11:26.610: - to NOT display normal parse packets on console.
- 2004-11-13 08:11:26.610: - to NOT display administration parse packets on console.
- 2004-11-13 08:11:26.611: - to NOT display char-server parse packets on console.
- 2004-11-13 08:11:26.611: - with no minimum level for connection.
- 2004-11-13 08:11:26.611: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 08:11:26.611: - to create new accounts with an unlimited time.
- 2004-11-13 08:11:26.611: - with control of players IP between login-server and char-server.
- 2004-11-13 08:11:26.612: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 08:11:26.612: The LAN configuration of the server is set:
- 2004-11-13 08:11:26.613: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 08:11:26.613: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 08:11:26.614: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 08:11:26.616: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 08:11:30.822: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 08:11:30.822: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 08:11:30.824: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 08:29:17.045: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-13 08:29:17.581: ----End of login-server (normal end with closing of all files).
- 2004-11-13 08:30:11.390: The login-server starting...
- 2004-11-13 08:30:11.390: The configuration of the server is set:
- 2004-11-13 08:30:11.390: - with no remote administration.
- 2004-11-13 08:30:11.390: - to accept any IP for remote administration
- 2004-11-13 08:30:11.390: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 08:30:11.390: - to create GM with level '60' when @gm is used.
- 2004-11-13 08:30:11.390: - to ALLOW new users (with _F/_M).
- 2004-11-13 08:30:11.390: - with port: 6900.
- 2004-11-13 08:30:11.390: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 08:30:11.390: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 08:30:11.391: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 08:30:11.391: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 08:30:11.391: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 08:30:11.391: - to NOT display normal parse packets on console.
- 2004-11-13 08:30:11.391: - to NOT display administration parse packets on console.
- 2004-11-13 08:30:11.391: - to NOT display char-server parse packets on console.
- 2004-11-13 08:30:11.391: - with no minimum level for connection.
- 2004-11-13 08:30:11.391: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 08:30:11.392: - to create new accounts with an unlimited time.
- 2004-11-13 08:30:11.392: - with control of players IP between login-server and char-server.
- 2004-11-13 08:30:11.392: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 08:30:11.393: The LAN configuration of the server is set:
- 2004-11-13 08:30:11.393: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 08:30:11.393: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 08:30:11.394: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 08:30:11.396: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 08:30:11.822: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 08:30:11.822: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 08:30:11.825: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 08:30:32.743: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:30:32.743: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:30:33.228: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 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).
- 2004-11-13 08:30:46.818: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-13 08:30:51.821: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 08:30:51.821: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 08:30:51.822: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 08:31:11.695: ----End of login-server (normal end with closing of all files).
- 2004-11-13 08:33:01.625: The login-server starting...
- 2004-11-13 08:33:01.625: The configuration of the server is set:
- 2004-11-13 08:33:01.625: - with no remote administration.
- 2004-11-13 08:33:01.625: - to accept any IP for remote administration
- 2004-11-13 08:33:01.625: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-13 08:33:01.625: - to create GM with level '60' when @gm is used.
- 2004-11-13 08:33:01.625: - to ALLOW new users (with _F/_M).
- 2004-11-13 08:33:01.625: - with port: 6900.
- 2004-11-13 08:33:01.626: - with the accounts file name: 'save/account.txt'.
- 2004-11-13 08:33:01.626: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-13 08:33:01.626: - to check GM accounts file modifications every 15 seconds.
- 2004-11-13 08:33:01.626: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-13 08:33:01.626: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-13 08:33:01.626: - to NOT display normal parse packets on console.
- 2004-11-13 08:33:01.626: - to NOT display administration parse packets on console.
- 2004-11-13 08:33:01.626: - to NOT display char-server parse packets on console.
- 2004-11-13 08:33:01.627: - with no minimum level for connection.
- 2004-11-13 08:33:01.627: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-13 08:33:01.627: - to create new accounts with an unlimited time.
- 2004-11-13 08:33:01.627: - with control of players IP between login-server and char-server.
- 2004-11-13 08:33:01.627: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-13 08:33:01.632: The LAN configuration of the server is set:
- 2004-11-13 08:33:01.632: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-13 08:33:01.632: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-13 08:33:01.644: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-13 08:33:01.649: The login-server is ready (Server is listening on the port 6900).
- 2004-11-13 08:33:03.651: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-13 08:33:03.652: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-13 08:33:03.664: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-13 08:33:27.313: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:33:27.314: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:33:27.653: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 08:33:34.196: Char-server 'eAthena': Sex change (account: 2000002, new sex F, ip: 127.0.0.1).
- 2004-11-13 08:33:44.437: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-13 08:33:44.437: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-13 08:33:44.916: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-13 08:36:13.540: Char-server 'eAthena': Sex change (account: 2000002, new sex M, ip: 127.0.0.1).
- 2004-11-13 08:39:42.926: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-13 08:39:43.613: ----End of login-server (normal end with closing of all files).
- =======
- 2004-11-11 16:42:57.500: The login-server starting...
- 2004-11-11 16:42:57.574: The configuration of the server is set:
- 2004-11-11 16:42:57.574: - with no remote administration.
- 2004-11-11 16:42:57.574: - to accept any IP for remote administration
- 2004-11-11 16:42:57.574: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:42:57.574: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:42:57.574: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:42:57.575: - with port: 6900.
- 2004-11-11 16:42:57.575: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:42:57.575: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:42:57.575: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:42:57.575: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:42:57.576: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:42:57.576: - to NOT display normal parse packets on console.
- 2004-11-11 16:42:57.576: - to NOT display administration parse packets on console.
- 2004-11-11 16:42:57.576: - to NOT display char-server parse packets on console.
- 2004-11-11 16:42:57.576: - with no minimum level for connection.
- 2004-11-11 16:42:57.576: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:42:57.576: - to create new accounts with an unlimited time.
- 2004-11-11 16:42:57.576: - with control of players IP between login-server and char-server.
- 2004-11-11 16:42:57.576: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:42:57.594: The LAN configuration of the server is set:
- 2004-11-11 16:42:57.595: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:42:57.595: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:42:57.596: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:42:57.600: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:43:39.859: The login-server starting...
- 2004-11-11 16:43:39.859: The configuration of the server is set:
- 2004-11-11 16:43:39.859: - with no remote administration.
- 2004-11-11 16:43:39.859: - to accept any IP for remote administration
- 2004-11-11 16:43:39.859: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:43:39.859: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:43:39.859: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:43:39.859: - with port: 6900.
- 2004-11-11 16:43:39.860: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:43:39.860: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:43:39.860: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:43:39.860: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:43:39.860: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:43:39.860: - to NOT display normal parse packets on console.
- 2004-11-11 16:43:39.860: - to NOT display administration parse packets on console.
- 2004-11-11 16:43:39.860: - to NOT display char-server parse packets on console.
- 2004-11-11 16:43:39.860: - with no minimum level for connection.
- 2004-11-11 16:43:39.861: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:43:39.861: - to create new accounts with an unlimited time.
- 2004-11-11 16:43:39.861: - with control of players IP between login-server and char-server.
- 2004-11-11 16:43:39.861: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:43:39.862: The LAN configuration of the server is set:
- 2004-11-11 16:43:39.862: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:43:39.862: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:43:39.864: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:43:39.866: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:43:42.308: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:43:42.309: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:43:42.310: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:43:44.791: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:44:26.468: The login-server starting...
- 2004-11-11 16:44:26.468: The configuration of the server is set:
- 2004-11-11 16:44:26.468: - with no remote administration.
- 2004-11-11 16:44:26.468: - to accept any IP for remote administration
- 2004-11-11 16:44:26.468: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:44:26.468: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:44:26.468: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:44:26.468: - with port: 6900.
- 2004-11-11 16:44:26.469: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:44:26.469: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:44:26.469: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:44:26.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:44:26.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:44:26.469: - to NOT display normal parse packets on console.
- 2004-11-11 16:44:26.469: - to NOT display administration parse packets on console.
- 2004-11-11 16:44:26.469: - to NOT display char-server parse packets on console.
- 2004-11-11 16:44:26.469: - with no minimum level for connection.
- 2004-11-11 16:44:26.470: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:44:26.470: - to create new accounts with an unlimited time.
- 2004-11-11 16:44:26.470: - with control of players IP between login-server and char-server.
- 2004-11-11 16:44:26.470: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:44:26.471: The LAN configuration of the server is set:
- 2004-11-11 16:44:26.471: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:44:26.471: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:44:26.472: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-11 16:44:26.474: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:44:29.635: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:44:29.635: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:44:29.637: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:46:36.685: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:46:36.685: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
- 2004-11-11 16:46:37.308: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
- 2004-11-11 16:46:52.378: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:47:20.578: The login-server starting...
- 2004-11-11 16:47:20.578: The configuration of the server is set:
- 2004-11-11 16:47:20.578: - with no remote administration.
- 2004-11-11 16:47:20.578: - to accept any IP for remote administration
- 2004-11-11 16:47:20.578: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:47:20.578: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:47:20.578: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:47:20.578: - with port: 6900.
- 2004-11-11 16:47:20.578: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:47:20.578: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:47:20.578: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:47:20.579: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:47:20.579: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:47:20.579: - to NOT display normal parse packets on console.
- 2004-11-11 16:47:20.579: - to NOT display administration parse packets on console.
- 2004-11-11 16:47:20.579: - to NOT display char-server parse packets on console.
- 2004-11-11 16:47:20.579: - with no minimum level for connection.
- 2004-11-11 16:47:20.579: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:47:20.579: - to create new accounts with an unlimited time.
- 2004-11-11 16:47:20.580: - with control of players IP between login-server and char-server.
- 2004-11-11 16:47:20.580: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:47:20.580: The LAN configuration of the server is set:
- 2004-11-11 16:47:20.582: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:47:20.582: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:47:20.584: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-11 16:47:20.587: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:47:22.331: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:47:22.331: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:47:22.332: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:47:44.744: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:47:44.744: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
- 2004-11-11 16:47:45.135: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
- 2004-11-11 16:47:47.911: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:47:47.912: Authentification accepted (account: cameri (id: 2000001), ip: 127.0.0.1)
- 2004-11-11 16:47:48.300: Char-server 'eAthena': authentification of the account 2000001 accepted (ip: 127.0.0.1).
- 2004-11-11 16:48:03.321: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:48:03.825: ----End of login-server (normal end with closing of all files).
- 2004-11-11 16:48:22.000: The login-server starting...
- 2004-11-11 16:48:22.000: The configuration of the server is set:
- 2004-11-11 16:48:22.000: - with no remote administration.
- 2004-11-11 16:48:22.000: - to accept any IP for remote administration
- 2004-11-11 16:48:22.000: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:48:22.000: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:48:22.000: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:48:22.000: - with port: 6900.
- 2004-11-11 16:48:22.001: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:48:22.001: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:48:22.001: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:48:22.001: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:48:22.001: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:48:22.001: - to NOT display normal parse packets on console.
- 2004-11-11 16:48:22.001: - to NOT display administration parse packets on console.
- 2004-11-11 16:48:22.001: - to NOT display char-server parse packets on console.
- 2004-11-11 16:48:22.002: - with no minimum level for connection.
- 2004-11-11 16:48:22.002: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:48:22.002: - to create new accounts with an unlimited time.
- 2004-11-11 16:48:22.002: - with control of players IP between login-server and char-server.
- 2004-11-11 16:48:22.002: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:48:22.003: The LAN configuration of the server is set:
- 2004-11-11 16:48:22.003: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:48:22.003: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:48:22.004: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-11 16:48:22.009: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:48:24.342: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:48:24.342: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:48:24.344: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:49:09.967: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:49:09.967: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
- 2004-11-11 16:49:15.570: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
- 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)
- 2004-11-11 16:49:16.398: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-11 16:51:17.974: ----End of login-server (normal end with closing of all files).
- 2004-11-11 16:51:25.234: The login-server starting...
- 2004-11-11 16:51:25.234: The configuration of the server is set:
- 2004-11-11 16:51:25.234: - with no remote administration.
- 2004-11-11 16:51:25.234: - to accept any IP for remote administration
- 2004-11-11 16:51:25.234: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:51:25.234: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:51:25.234: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:51:25.235: - with port: 6900.
- 2004-11-11 16:51:25.235: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:51:25.235: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:51:25.235: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:51:25.235: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:51:25.235: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:51:25.235: - to NOT display normal parse packets on console.
- 2004-11-11 16:51:25.235: - to NOT display administration parse packets on console.
- 2004-11-11 16:51:25.235: - to NOT display char-server parse packets on console.
- 2004-11-11 16:51:25.236: - with no minimum level for connection.
- 2004-11-11 16:51:25.236: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:51:25.236: - to create new accounts with an unlimited time.
- 2004-11-11 16:51:25.236: - with control of players IP between login-server and char-server.
- 2004-11-11 16:51:25.236: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:51:25.237: The LAN configuration of the server is set:
- 2004-11-11 16:51:25.237: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:51:25.237: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:51:25.238: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:51:25.241: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:51:27.129: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:51:27.130: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:51:27.133: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:51:48.970: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:51:48.970: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-11 16:51:49.440: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-11 16:51:59.769: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:52:00.665: ----End of login-server (normal end with closing of all files).
- 2004-11-11 16:52:15.890: The login-server starting...
- 2004-11-11 16:52:15.890: The configuration of the server is set:
- 2004-11-11 16:52:15.890: - with no remote administration.
- 2004-11-11 16:52:15.890: - to accept any IP for remote administration
- 2004-11-11 16:52:15.890: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-11 16:52:15.890: - to create GM with level '60' when @gm is used.
- 2004-11-11 16:52:15.890: - to ALLOW new users (with _F/_M).
- 2004-11-11 16:52:15.890: - with port: 6900.
- 2004-11-11 16:52:15.891: - with the accounts file name: 'save/account.txt'.
- 2004-11-11 16:52:15.891: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-11 16:52:15.891: - to check GM accounts file modifications every 15 seconds.
- 2004-11-11 16:52:15.891: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-11 16:52:15.891: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-11 16:52:15.891: - to NOT display normal parse packets on console.
- 2004-11-11 16:52:15.891: - to NOT display administration parse packets on console.
- 2004-11-11 16:52:15.891: - to NOT display char-server parse packets on console.
- 2004-11-11 16:52:15.892: - with no minimum level for connection.
- 2004-11-11 16:52:15.892: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-11 16:52:15.892: - to create new accounts with an unlimited time.
- 2004-11-11 16:52:15.892: - with control of players IP between login-server and char-server.
- 2004-11-11 16:52:15.892: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-11 16:52:15.893: The LAN configuration of the server is set:
- 2004-11-11 16:52:15.893: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-11 16:52:15.893: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-11 16:52:15.896: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-11 16:52:15.898: The login-server is ready (Server is listening on the port 6900).
- 2004-11-11 16:52:17.567: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-11 16:52:17.567: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-11 16:52:17.572: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-11 16:52:56.354: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-11 16:52:56.355: Unknown account (account: cameri, received pass: juan16, ip: 127.0.0.1)
- 2004-11-11 16:53:01.776: Request for connection (non encryption mode) of cameri_M (ip: 127.0.0.1).
- 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)
- 2004-11-11 16:53:02.316: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-11 16:53:11.597: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-11 16:53:12.191: ----End of login-server (normal end with closing of all files).
- >>>>>>> .r194
- =======
- >>>>>>> .r251
- 2004-11-18 06:56:39.281: The login-server starting...
- 2004-11-18 06:56:39.348: The configuration of the server is set:
- 2004-11-18 06:56:39.348: - with no remote administration.
- 2004-11-18 06:56:39.348: - to accept any IP for remote administration
- 2004-11-18 06:56:39.348: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-18 06:56:39.349: - to create GM with level '60' when @gm is used.
- 2004-11-18 06:56:39.349: - to ALLOW new users (with _F/_M).
- 2004-11-18 06:56:39.349: - with port: 6900.
- 2004-11-18 06:56:39.349: - with the accounts file name: 'save/account.txt'.
- 2004-11-18 06:56:39.349: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-18 06:56:39.349: - to check GM accounts file modifications every 15 seconds.
- 2004-11-18 06:56:39.349: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-18 06:56:39.350: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-18 06:56:39.350: - to NOT display normal parse packets on console.
- 2004-11-18 06:56:39.350: - to NOT display administration parse packets on console.
- 2004-11-18 06:56:39.350: - to NOT display char-server parse packets on console.
- 2004-11-18 06:56:39.350: - with no minimum level for connection.
- 2004-11-18 06:56:39.350: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-18 06:56:39.350: - to create new accounts with an unlimited time.
- 2004-11-18 06:56:39.350: - with control of players IP between login-server and char-server.
- 2004-11-18 06:56:39.351: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-18 06:56:39.362: The LAN configuration of the server is set:
- 2004-11-18 06:56:39.362: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-18 06:56:39.362: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-18 06:56:39.363: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-18 06:56:39.372: The login-server is ready (Server is listening on the port 6900).
- 2004-11-18 06:59:43.131: ----End of login-server (normal end with closing of all files).
- 2004-11-18 15:17:07.984: The login-server starting...
- 2004-11-18 15:17:07.984: The configuration of the server is set:
- 2004-11-18 15:17:07.984: - with no remote administration.
- 2004-11-18 15:17:07.984: - to accept any IP for remote administration
- 2004-11-18 15:17:07.984: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-18 15:17:07.984: - to create GM with level '60' when @gm is used.
- 2004-11-18 15:17:07.984: - to ALLOW new users (with _F/_M).
- 2004-11-18 15:17:07.985: - with port: 6900.
- 2004-11-18 15:17:07.985: - with the accounts file name: 'save/account.txt'.
- 2004-11-18 15:17:07.985: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-18 15:17:07.985: - to check GM accounts file modifications every 15 seconds.
- 2004-11-18 15:17:07.985: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-18 15:17:07.985: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-18 15:17:07.985: - to NOT display normal parse packets on console.
- 2004-11-18 15:17:07.985: - to NOT display administration parse packets on console.
- 2004-11-18 15:17:07.985: - to NOT display char-server parse packets on console.
- 2004-11-18 15:17:07.986: - with no minimum level for connection.
- 2004-11-18 15:17:07.986: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-18 15:17:07.986: - to create new accounts with an unlimited time.
- 2004-11-18 15:17:07.986: - with control of players IP between login-server and char-server.
- 2004-11-18 15:17:07.986: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-18 15:17:07.987: The LAN configuration of the server is set:
- 2004-11-18 15:17:07.987: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-18 15:17:07.987: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-18 15:17:07.988: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-18 15:17:07.991: The login-server is ready (Server is listening on the port 6900).
- 2004-11-18 15:17:16.982: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-18 15:17:16.982: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-18 15:17:17.048: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-18 15:18:29.492: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 15:18:29.493: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 15:18:34.522: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 15:19:18.396: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 15:19:18.396: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 15:19:18.833: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 15:20:11.507: ----End of login-server (normal end with closing of all files).
- 2004-11-18 15:28:11.859: The login-server starting...
- 2004-11-18 15:28:11.859: The configuration of the server is set:
- 2004-11-18 15:28:11.859: - with no remote administration.
- 2004-11-18 15:28:11.859: - to accept any IP for remote administration
- 2004-11-18 15:28:11.859: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-18 15:28:11.859: - to create GM with level '60' when @gm is used.
- 2004-11-18 15:28:11.859: - to ALLOW new users (with _F/_M).
- 2004-11-18 15:28:11.860: - with port: 6900.
- 2004-11-18 15:28:11.860: - with the accounts file name: 'save/account.txt'.
- 2004-11-18 15:28:11.860: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-18 15:28:11.860: - to check GM accounts file modifications every 15 seconds.
- 2004-11-18 15:28:11.860: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-18 15:28:11.860: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-18 15:28:11.860: - to NOT display normal parse packets on console.
- 2004-11-18 15:28:11.860: - to NOT display administration parse packets on console.
- 2004-11-18 15:28:11.860: - to NOT display char-server parse packets on console.
- 2004-11-18 15:28:11.861: - with no minimum level for connection.
- 2004-11-18 15:28:11.861: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-18 15:28:11.861: - to create new accounts with an unlimited time.
- 2004-11-18 15:28:11.861: - with control of players IP between login-server and char-server.
- 2004-11-18 15:28:11.861: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-18 15:28:11.862: The LAN configuration of the server is set:
- 2004-11-18 15:28:11.862: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-18 15:28:11.862: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-18 15:28:11.863: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-18 15:28:11.865: The login-server is ready (Server is listening on the port 6900).
- 2004-11-18 15:28:12.075: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-18 15:28:12.075: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-18 15:28:12.077: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-18 15:28:35.002: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 15:28:35.002: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 15:28:35.485: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 15:36:09.235: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 15:36:09.235: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 15:36:09.564: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 15:43:03.314: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 15:43:03.314: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 15:43:03.847: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 15:43:30.946: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 15:43:30.946: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 15:43:31.314: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 15:44:18.482: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 15:44:18.482: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 15:44:18.817: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 15:56:01.204: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-18 16:19:15.251: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-18 16:56:33.637: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 16:56:33.637: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 16:56:33.952: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 16:57:15.314: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-18 16:57:15.314: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-18 16:57:15.615: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-18 16:58:16.268: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-18 16:58:25.767: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-18 16:58:38.167: ----End of login-server (normal end with closing of all files).
- 2002-11-20 11:21:03.062: The login-server starting...
- 2002-11-20 11:21:03.062: The configuration of the server is set:
- 2002-11-20 11:21:03.063: - with no remote administration.
- 2002-11-20 11:21:03.063: - to accept any IP for remote administration
- 2002-11-20 11:21:03.063: - with the DEFAULT 'To GM become' password (gm_pass).
- 2002-11-20 11:21:03.063: - to create GM with level '60' when @gm is used.
- 2002-11-20 11:21:03.063: - to ALLOW new users (with _F/_M).
- 2002-11-20 11:21:03.063: - with port: 6900.
- 2002-11-20 11:21:03.063: - with the accounts file name: 'save/account.txt'.
- 2002-11-20 11:21:03.064: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2002-11-20 11:21:03.064: - to check GM accounts file modifications every 15 seconds.
- 2002-11-20 11:21:03.064: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2002-11-20 11:21:03.064: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2002-11-20 11:21:03.064: - to NOT display normal parse packets on console.
- 2002-11-20 11:21:03.064: - to NOT display administration parse packets on console.
- 2002-11-20 11:21:03.064: - to NOT display char-server parse packets on console.
- 2002-11-20 11:21:03.064: - with no minimum level for connection.
- 2002-11-20 11:21:03.065: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2002-11-20 11:21:03.065: - to create new accounts with an unlimited time.
- 2002-11-20 11:21:03.065: - with control of players IP between login-server and char-server.
- 2002-11-20 11:21:03.065: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2002-11-20 11:21:03.072: The LAN configuration of the server is set:
- 2002-11-20 11:21:03.073: - with LAN IP of char-server: 127.0.0.1.
- 2002-11-20 11:21:03.073: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2002-11-20 11:21:03.074: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2002-11-20 11:21:03.087: The login-server is ready (Server is listening on the port 6900).
- 2002-11-20 11:21:11.389: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2002-11-20 11:21:11.390: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2002-11-20 11:21:11.392: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2002-11-20 11:24:15.796: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2002-11-20 11:24:15.796: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2002-11-20 11:24:16.332: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2002-11-20 11:32:59.714: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2002-11-20 11:36:00.217: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2002-11-20 11:36:13.755: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2002-11-20 11:39:57.379: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2002-11-20 11:50:02.794: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
- 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)
- 2002-11-20 11:50:49.226: ----End of login-server (normal end with closing of all files).
- 2002-11-20 11:50:53.203: The login-server starting...
- 2002-11-20 11:50:53.203: The configuration of the server is set:
- 2002-11-20 11:50:53.203: - with a remote administration with the DEFAULT password.
- 2002-11-20 11:50:53.204: - to accept any IP for remote administration
- 2002-11-20 11:50:53.204: - with the DEFAULT 'To GM become' password (gm_pass).
- 2002-11-20 11:50:53.204: - to create GM with level '60' when @gm is used.
- 2002-11-20 11:50:53.204: - to ALLOW new users (with _F/_M).
- 2002-11-20 11:50:53.204: - with port: 6900.
- 2002-11-20 11:50:53.204: - with the accounts file name: 'save/account.txt'.
- 2002-11-20 11:50:53.204: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2002-11-20 11:50:53.204: - to check GM accounts file modifications every 15 seconds.
- 2002-11-20 11:50:53.205: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2002-11-20 11:50:53.205: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2002-11-20 11:50:53.205: - to NOT display normal parse packets on console.
- 2002-11-20 11:50:53.205: - to NOT display administration parse packets on console.
- 2002-11-20 11:50:53.205: - to NOT display char-server parse packets on console.
- 2002-11-20 11:50:53.205: - with no minimum level for connection.
- 2002-11-20 11:50:53.205: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2002-11-20 11:50:53.205: - to create new accounts with an unlimited time.
- 2002-11-20 11:50:53.206: - with control of players IP between login-server and char-server.
- 2002-11-20 11:50:53.206: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2002-11-20 11:50:53.207: The LAN configuration of the server is set:
- 2002-11-20 11:50:53.207: - with LAN IP of char-server: 127.0.0.1.
- 2002-11-20 11:50:53.207: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2002-11-20 11:50:53.208: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2002-11-20 11:50:53.213: The login-server is ready (Server is listening on the port 6900).
- 2002-11-20 11:50:54.687: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
- 2002-11-20 11:50:54.691: 'ladmin'-login: Connection in administration mode accepted (encrypted password, ip: 127.0.0.1)
- 2002-11-20 11:50:54.747: 'ladmin': Sending of the server version (ip: 127.0.0.1)
- 2002-11-20 11:51:01.347: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2002-11-20 11:51:01.348: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2002-11-20 11:51:01.350: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2002-11-20 11:51:04.933: 'ladmin': Sending of the server version (ip: 127.0.0.1)
- 2002-11-20 11:51:24.216: 'ladmin': Sending an accounts list (ask: from 0 to 100000000, ip: 127.0.0.1)
- 2002-11-20 11:51:24.219: 'ladmin': Sending an accounts list (ask: from 2000003 to 100000000, ip: 127.0.0.1)
- 2002-11-20 11:51:30.457: 'ladmin': Sending an accounts list (ask: from 0 to 100000000, ip: 127.0.0.1)
- 2002-11-20 11:51:30.461: 'ladmin': Sending an accounts list (ask: from 2000003 to 100000000, ip: 127.0.0.1)
- 2002-11-20 11:51:37.055: 'ladmin': Sending an accounts list (ask: from 0 to 100000000, ip: 127.0.0.1)
- 2002-11-20 11:51:37.057: 'ladmin': Sending an accounts list (ask: from 2000003 to 100000000, ip: 127.0.0.1)
- 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)
- 2002-11-20 11:54:13.334: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
- 2002-11-20 11:54:13.338: 'ladmin'-login: Connection in administration mode accepted (encrypted password, ip: 127.0.0.1)
- 2002-11-20 11:54:13.341: 'ladmin': Sending of the server version (ip: 127.0.0.1)
- 2002-11-20 11:54:15.794: 'ladmin': Sending request of the coding key (ip: 127.0.0.1)
- 2002-11-20 11:54:15.798: 'ladmin'-login: Connection in administration mode accepted (encrypted password, ip: 127.0.0.1)
- 2002-11-20 11:54:15.803: 'ladmin': Sending of the server version (ip: 127.0.0.1)
- 2002-11-20 12:05:11.981: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2002-11-20 12:05:11.981: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2002-11-20 12:05:12.591: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2002-11-20 12:08:24.119: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2002-11-20 12:08:25.493: ----End of login-server (normal end with closing of all files).
- 2002-11-20 12:09:47.562: The login-server starting...
- 2002-11-20 12:09:47.562: The configuration of the server is set:
- 2002-11-20 12:09:47.562: - with a remote administration with the DEFAULT password.
- 2002-11-20 12:09:47.562: - to accept any IP for remote administration
- 2002-11-20 12:09:47.562: - with the DEFAULT 'To GM become' password (gm_pass).
- 2002-11-20 12:09:47.562: - to create GM with level '60' when @gm is used.
- 2002-11-20 12:09:47.562: - to ALLOW new users (with _F/_M).
- 2002-11-20 12:09:47.562: - with port: 6900.
- 2002-11-20 12:09:47.562: - with the accounts file name: 'save/account.txt'.
- 2002-11-20 12:09:47.562: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2002-11-20 12:09:47.562: - to check GM accounts file modifications every 15 seconds.
- 2002-11-20 12:09:47.562: - to save password in plain text.
- 2002-11-20 12:09:47.562: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2002-11-20 12:09:47.562: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2002-11-20 12:09:47.562: - to NOT display normal parse packets on console.
- 2002-11-20 12:09:47.562: - to NOT display administration parse packets on console.
- 2002-11-20 12:09:47.563: - to NOT display char-server parse packets on console.
- 2002-11-20 12:09:47.563: - with no minimum level for connection.
- 2002-11-20 12:09:47.563: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2002-11-20 12:09:47.563: - to create new accounts with an unlimited time.
- 2002-11-20 12:09:47.563: - with control of players IP between login-server and char-server.
- 2002-11-20 12:09:47.563: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2002-11-20 12:09:47.584: The LAN configuration of the server is set:
- 2002-11-20 12:09:47.584: - with LAN IP of char-server: 127.0.0.1.
- 2002-11-20 12:09:47.584: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2002-11-20 12:09:47.597: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2002-11-20 12:09:47.608: The login-server is ready (Server is listening on the port 6900).
- 2002-11-20 12:09:53.833: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2002-11-20 12:09:53.833: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2002-11-20 12:09:53.835: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2002-11-20 12:10:16.114: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2002-11-20 12:10:16.115: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2002-11-20 12:10:16.922: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2002-11-20 12:10:25.844: Char-server 'eAthena': Sex change (account: 2000002, new sex F, ip: 127.0.0.1).
- 2002-11-20 12:10:34.645: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2002-11-20 12:10:34.645: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2002-11-20 12:10:35.024: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2002-11-20 12:10:52.147: Char-server 'eAthena': Sex change (account: 2000002, new sex M, ip: 127.0.0.1).
- 2002-11-20 12:11:01.656: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2002-11-20 12:11:01.656: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2002-11-20 12:11:02.795: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2002-11-20 12:19:23.951: ----End of login-server (normal end with closing of all files).
- 2004-11-20 22:50:49.812: The login-server starting...
- 2004-11-20 22:50:49.812: The configuration of the server is set:
- 2004-11-20 22:50:49.812: - with a remote administration with the DEFAULT password.
- 2004-11-20 22:50:49.812: - to accept any IP for remote administration
- 2004-11-20 22:50:49.812: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-20 22:50:49.812: - to create GM with level '60' when @gm is used.
- 2004-11-20 22:50:49.812: - to ALLOW new users (with _F/_M).
- 2004-11-20 22:50:49.812: - with port: 6900.
- 2004-11-20 22:50:49.812: - with the accounts file name: 'save/account.txt'.
- 2004-11-20 22:50:49.812: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-20 22:50:49.812: - to check GM accounts file modifications every 15 seconds.
- 2004-11-20 22:50:49.812: - to save password in plain text.
- 2004-11-20 22:50:49.812: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-20 22:50:49.812: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-20 22:50:49.813: - to NOT display normal parse packets on console.
- 2004-11-20 22:50:49.813: - to NOT display administration parse packets on console.
- 2004-11-20 22:50:49.813: - to NOT display char-server parse packets on console.
- 2004-11-20 22:50:49.813: - with no minimum level for connection.
- 2004-11-20 22:50:49.813: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-20 22:50:49.813: - to create new accounts with an unlimited time.
- 2004-11-20 22:50:49.813: - with control of players IP between login-server and char-server.
- 2004-11-20 22:50:49.813: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-20 22:50:49.814: The LAN configuration of the server is set:
- 2004-11-20 22:50:49.814: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-20 22:50:49.814: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-20 22:50:49.816: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-20 22:50:49.818: The login-server is ready (Server is listening on the port 6900).
- 2004-11-20 22:50:49.921: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-20 22:50:49.921: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-20 22:50:49.936: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-20 22:51:05.727: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-20 22:51:05.728: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-20 22:51:06.303: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-20 22:52:42.891: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-20 22:52:43.904: ----End of login-server (normal end with closing of all files).
- 2004-11-20 23:08:29.718: The login-server starting...
- 2004-11-20 23:08:29.718: The configuration of the server is set:
- 2004-11-20 23:08:29.718: - with a remote administration with the DEFAULT password.
- 2004-11-20 23:08:29.718: - to accept any IP for remote administration
- 2004-11-20 23:08:29.718: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-20 23:08:29.718: - to create GM with level '60' when @gm is used.
- 2004-11-20 23:08:29.718: - to ALLOW new users (with _F/_M).
- 2004-11-20 23:08:29.718: - with port: 6900.
- 2004-11-20 23:08:29.718: - with the accounts file name: 'save/account.txt'.
- 2004-11-20 23:08:29.718: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-20 23:08:29.719: - to check GM accounts file modifications every 15 seconds.
- 2004-11-20 23:08:29.719: - to save password in plain text.
- 2004-11-20 23:08:29.719: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-20 23:08:29.719: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-20 23:08:29.719: - to NOT display normal parse packets on console.
- 2004-11-20 23:08:29.719: - to NOT display administration parse packets on console.
- 2004-11-20 23:08:29.719: - to NOT display char-server parse packets on console.
- 2004-11-20 23:08:29.719: - with no minimum level for connection.
- 2004-11-20 23:08:29.719: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-20 23:08:29.719: - to create new accounts with an unlimited time.
- 2004-11-20 23:08:29.719: - with control of players IP between login-server and char-server.
- 2004-11-20 23:08:29.719: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-20 23:08:29.721: The LAN configuration of the server is set:
- 2004-11-20 23:08:29.721: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-20 23:08:29.721: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-20 23:08:29.723: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-20 23:08:29.729: The login-server is ready (Server is listening on the port 6900).
- 2004-11-20 23:08:34.807: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-20 23:08:34.807: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-20 23:08:34.809: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-20 23:09:02.121: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-20 23:09:02.121: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-20 23:09:02.589: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-20 23:12:40.881: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-20 23:12:40.882: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-20 23:12:41.361: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-20 23:13:52.892: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-20 23:13:52.892: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-20 23:13:53.333: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-20 23:19:03.374: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-20 23:19:03.374: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-20 23:19:03.723: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-20 23:28:20.065: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-20 23:28:20.700: ----End of login-server (normal end with closing of all files).
- 2004-11-21 00:33:39.265: The login-server starting...
- 2004-11-21 00:33:39.265: The configuration of the server is set:
- 2004-11-21 00:33:39.265: - with a remote administration with the DEFAULT password.
- 2004-11-21 00:33:39.265: - to accept any IP for remote administration
- 2004-11-21 00:33:39.265: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-21 00:33:39.265: - to create GM with level '60' when @gm is used.
- 2004-11-21 00:33:39.265: - to ALLOW new users (with _F/_M).
- 2004-11-21 00:33:39.265: - with port: 6900.
- 2004-11-21 00:33:39.265: - with the accounts file name: 'save/account.txt'.
- 2004-11-21 00:33:39.265: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-21 00:33:39.265: - to check GM accounts file modifications every 15 seconds.
- 2004-11-21 00:33:39.265: - to save password in plain text.
- 2004-11-21 00:33:39.265: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-21 00:33:39.265: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-21 00:33:39.265: - to NOT display normal parse packets on console.
- 2004-11-21 00:33:39.266: - to NOT display administration parse packets on console.
- 2004-11-21 00:33:39.266: - to NOT display char-server parse packets on console.
- 2004-11-21 00:33:39.266: - with no minimum level for connection.
- 2004-11-21 00:33:39.266: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-21 00:33:39.266: - to create new accounts with an unlimited time.
- 2004-11-21 00:33:39.266: - with control of players IP between login-server and char-server.
- 2004-11-21 00:33:39.266: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-21 00:33:39.267: The LAN configuration of the server is set:
- 2004-11-21 00:33:39.267: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-21 00:33:39.267: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-21 00:33:39.269: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-21 00:33:39.271: The login-server is ready (Server is listening on the port 6900).
- 2004-11-21 00:33:39.361: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-21 00:33:39.362: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-21 00:33:39.363: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-21 00:33:47.630: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 00:33:47.631: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 00:33:47.994: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 00:42:37.394: ----End of login-server (normal end with closing of all files).
- 2004-11-21 00:46:38.578: The login-server starting...
- 2004-11-21 00:46:38.578: The configuration of the server is set:
- 2004-11-21 00:46:38.578: - with a remote administration with the DEFAULT password.
- 2004-11-21 00:46:38.578: - to accept any IP for remote administration
- 2004-11-21 00:46:38.578: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-21 00:46:38.578: - to create GM with level '60' when @gm is used.
- 2004-11-21 00:46:38.578: - to ALLOW new users (with _F/_M).
- 2004-11-21 00:46:38.578: - with port: 6900.
- 2004-11-21 00:46:38.578: - with the accounts file name: 'save/account.txt'.
- 2004-11-21 00:46:38.578: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-21 00:46:38.578: - to check GM accounts file modifications every 15 seconds.
- 2004-11-21 00:46:38.578: - to save password in plain text.
- 2004-11-21 00:46:38.579: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-21 00:46:38.579: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-21 00:46:38.579: - to NOT display normal parse packets on console.
- 2004-11-21 00:46:38.579: - to NOT display administration parse packets on console.
- 2004-11-21 00:46:38.579: - to NOT display char-server parse packets on console.
- 2004-11-21 00:46:38.579: - with no minimum level for connection.
- 2004-11-21 00:46:38.579: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-21 00:46:38.579: - to create new accounts with an unlimited time.
- 2004-11-21 00:46:38.579: - with control of players IP between login-server and char-server.
- 2004-11-21 00:46:38.580: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-21 00:46:38.581: The LAN configuration of the server is set:
- 2004-11-21 00:46:38.581: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-21 00:46:38.581: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-21 00:46:38.583: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-21 00:46:38.586: The login-server is ready (Server is listening on the port 6900).
- 2004-11-21 00:46:39.009: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-21 00:46:39.009: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-21 00:46:39.011: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-21 00:46:52.234: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 00:46:52.235: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 00:46:52.770: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 00:59:14.916: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 00:59:14.916: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 00:59:15.679: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 00:59:28.523: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-21 00:59:29.075: ----End of login-server (normal end with closing of all files).
- 2004-11-21 09:21:59.296: The login-server starting...
- 2004-11-21 09:21:59.296: The configuration of the server is set:
- 2004-11-21 09:21:59.296: - with a remote administration with the DEFAULT password.
- 2004-11-21 09:21:59.296: - to accept any IP for remote administration
- 2004-11-21 09:21:59.296: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-21 09:21:59.296: - to create GM with level '60' when @gm is used.
- 2004-11-21 09:21:59.296: - to ALLOW new users (with _F/_M).
- 2004-11-21 09:21:59.296: - with port: 6900.
- 2004-11-21 09:21:59.296: - with the accounts file name: 'save/account.txt'.
- 2004-11-21 09:21:59.297: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-21 09:21:59.297: - to check GM accounts file modifications every 15 seconds.
- 2004-11-21 09:21:59.297: - to save password in plain text.
- 2004-11-21 09:21:59.297: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-21 09:21:59.297: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-21 09:21:59.297: - to NOT display normal parse packets on console.
- 2004-11-21 09:21:59.297: - to NOT display administration parse packets on console.
- 2004-11-21 09:21:59.297: - to NOT display char-server parse packets on console.
- 2004-11-21 09:21:59.297: - with no minimum level for connection.
- 2004-11-21 09:21:59.297: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-21 09:21:59.297: - to create new accounts with an unlimited time.
- 2004-11-21 09:21:59.298: - with control of players IP between login-server and char-server.
- 2004-11-21 09:21:59.298: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-21 09:21:59.316: The LAN configuration of the server is set:
- 2004-11-21 09:21:59.316: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-21 09:21:59.316: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-21 09:21:59.330: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-21 09:21:59.346: The login-server is ready (Server is listening on the port 6900).
- 2004-11-21 09:22:01.800: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-21 09:22:01.800: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-21 09:22:01.819: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-21 09:22:37.143: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 09:22:37.143: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 09:22:37.642: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 09:23:06.489: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-21 09:23:08.809: ----End of login-server (normal end with closing of all files).
- 2004-11-21 09:35:36.234: The login-server starting...
- 2004-11-21 09:35:36.234: The configuration of the server is set:
- 2004-11-21 09:35:36.234: - with a remote administration with the DEFAULT password.
- 2004-11-21 09:35:36.234: - to accept any IP for remote administration
- 2004-11-21 09:35:36.234: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-21 09:35:36.234: - to create GM with level '60' when @gm is used.
- 2004-11-21 09:35:36.234: - to ALLOW new users (with _F/_M).
- 2004-11-21 09:35:36.234: - with port: 6900.
- 2004-11-21 09:35:36.234: - with the accounts file name: 'save/account.txt'.
- 2004-11-21 09:35:36.234: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-21 09:35:36.234: - to check GM accounts file modifications every 15 seconds.
- 2004-11-21 09:35:36.234: - to save password in plain text.
- 2004-11-21 09:35:36.234: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-21 09:35:36.234: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-21 09:35:36.234: - to NOT display normal parse packets on console.
- 2004-11-21 09:35:36.234: - to NOT display administration parse packets on console.
- 2004-11-21 09:35:36.235: - to NOT display char-server parse packets on console.
- 2004-11-21 09:35:36.235: - with no minimum level for connection.
- 2004-11-21 09:35:36.235: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-21 09:35:36.235: - to create new accounts with an unlimited time.
- 2004-11-21 09:35:36.235: - with control of players IP between login-server and char-server.
- 2004-11-21 09:35:36.235: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-21 09:35:36.238: The LAN configuration of the server is set:
- 2004-11-21 09:35:36.238: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-21 09:35:36.238: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-21 09:35:36.240: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-21 09:35:36.243: The login-server is ready (Server is listening on the port 6900).
- 2004-11-21 09:35:39.279: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-21 09:35:39.279: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-21 09:35:39.281: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-21 09:35:41.848: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 09:35:41.848: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 09:35:42.277: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 09:59:21.405: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 09:59:21.405: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 09:59:21.671: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:07:41.116: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:07:41.117: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:07:41.311: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:10:40.734: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:10:40.734: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:10:41.030: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:10:52.490: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-21 10:15:32.693: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:15:32.693: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:15:33.189: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:16:05.133: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:16:05.133: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:16:05.765: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:16:21.704: Char-server 'eAthena': Sex change (account: 2000002, new sex F, ip: 127.0.0.1).
- 2004-11-21 10:16:29.625: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:16:29.625: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:16:30.031: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:16:34.094: Char-server 'eAthena': Sex change (account: 2000002, new sex M, ip: 127.0.0.1).
- 2004-11-21 10:16:41.959: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:16:41.959: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:16:42.437: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:17:53.246: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-21 10:17:53.246: Unknown account (account: mc_cameri, received pass: juan16, ip: 127.0.0.1)
- 2004-11-21 10:17:57.765: Request for connection (non encryption mode) of mc_cameri_M (ip: 127.0.0.1).
- 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)
- 2004-11-21 10:17:58.154: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-21 10:18:32.050: Char-server 'eAthena': e-mail of the account 2000003 found (ip: 127.0.0.1).
- 2004-11-21 10:18:36.306: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:18:36.307: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:18:36.750: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 10:50:52.758: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 10:50:52.758: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 10:50:53.599: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 11:02:14.116: ----End of login-server (normal end with closing of all files).
- 2004-11-21 11:09:37.515: The login-server starting...
- 2004-11-21 11:09:37.515: The configuration of the server is set:
- 2004-11-21 11:09:37.515: - with a remote administration with the DEFAULT password.
- 2004-11-21 11:09:37.515: - to accept any IP for remote administration
- 2004-11-21 11:09:37.515: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-21 11:09:37.515: - to create GM with level '60' when @gm is used.
- 2004-11-21 11:09:37.515: - to ALLOW new users (with _F/_M).
- 2004-11-21 11:09:37.515: - with port: 6900.
- 2004-11-21 11:09:37.517: - with the accounts file name: 'save/account.txt'.
- 2004-11-21 11:09:37.517: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-21 11:09:37.518: - to check GM accounts file modifications every 15 seconds.
- 2004-11-21 11:09:37.518: - to save password in plain text.
- 2004-11-21 11:09:37.518: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-21 11:09:37.518: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-21 11:09:37.518: - to NOT display normal parse packets on console.
- 2004-11-21 11:09:37.518: - to NOT display administration parse packets on console.
- 2004-11-21 11:09:37.518: - to NOT display char-server parse packets on console.
- 2004-11-21 11:09:37.518: - with no minimum level for connection.
- 2004-11-21 11:09:37.518: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-21 11:09:37.518: - to create new accounts with an unlimited time.
- 2004-11-21 11:09:37.518: - with control of players IP between login-server and char-server.
- 2004-11-21 11:09:37.519: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-21 11:09:37.522: The LAN configuration of the server is set:
- 2004-11-21 11:09:37.522: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-21 11:09:37.522: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-21 11:09:37.523: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-21 11:09:37.526: The login-server is ready (Server is listening on the port 6900).
- 2004-11-21 11:09:40.652: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-21 11:09:40.652: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-21 11:09:40.654: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-21 11:12:19.193: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 11:12:19.193: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 11:12:19.561: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 11:12:59.874: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-21 11:36:43.737: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 11:36:43.737: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 11:36:44.313: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 11:39:24.440: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 11:39:24.440: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 11:39:25.093: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 11:53:34.248: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-21 11:53:34.766: ----End of login-server (normal end with closing of all files).
- 2004-11-21 12:44:33.625: The login-server starting...
- 2004-11-21 12:44:33.625: The configuration of the server is set:
- 2004-11-21 12:44:33.625: - with a remote administration with the DEFAULT password.
- 2004-11-21 12:44:33.625: - to accept any IP for remote administration
- 2004-11-21 12:44:33.625: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-21 12:44:33.625: - to create GM with level '60' when @gm is used.
- 2004-11-21 12:44:33.625: - to ALLOW new users (with _F/_M).
- 2004-11-21 12:44:33.625: - with port: 6900.
- 2004-11-21 12:44:33.625: - with the accounts file name: 'save/account.txt'.
- 2004-11-21 12:44:33.625: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-21 12:44:33.625: - to check GM accounts file modifications every 15 seconds.
- 2004-11-21 12:44:33.625: - to save password in plain text.
- 2004-11-21 12:44:33.625: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-21 12:44:33.625: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-21 12:44:33.626: - to NOT display normal parse packets on console.
- 2004-11-21 12:44:33.626: - to NOT display administration parse packets on console.
- 2004-11-21 12:44:33.626: - to NOT display char-server parse packets on console.
- 2004-11-21 12:44:33.626: - with no minimum level for connection.
- 2004-11-21 12:44:33.626: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-21 12:44:33.626: - to create new accounts with an unlimited time.
- 2004-11-21 12:44:33.626: - with control of players IP between login-server and char-server.
- 2004-11-21 12:44:33.626: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-21 12:44:33.627: The LAN configuration of the server is set:
- 2004-11-21 12:44:33.627: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-21 12:44:33.628: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-21 12:44:33.629: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-21 12:44:33.632: The login-server is ready (Server is listening on the port 6900).
- 2004-11-21 12:44:35.883: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-21 12:44:35.883: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-21 12:44:35.885: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-21 12:44:45.854: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-21 12:44:45.854: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-21 12:44:46.309: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-21 12:45:36.139: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-21 12:45:36.141: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-21 12:45:36.765: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-21 12:47:14.681: ----End of login-server (normal end with closing of all files).
- 2004-11-22 06:42:27.250: The login-server starting...
- 2004-11-22 06:42:27.250: The configuration of the server is set:
- 2004-11-22 06:42:27.250: - with a remote administration with the DEFAULT password.
- 2004-11-22 06:42:27.250: - to accept any IP for remote administration
- 2004-11-22 06:42:27.250: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 06:42:27.250: - to create GM with level '60' when @gm is used.
- 2004-11-22 06:42:27.252: - to ALLOW new users (with _F/_M).
- 2004-11-22 06:42:27.253: - with port: 6900.
- 2004-11-22 06:42:27.253: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 06:42:27.253: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 06:42:27.253: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 06:42:27.253: - to save password in plain text.
- 2004-11-22 06:42:27.253: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 06:42:27.253: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 06:42:27.253: - to NOT display normal parse packets on console.
- 2004-11-22 06:42:27.253: - to NOT display administration parse packets on console.
- 2004-11-22 06:42:27.253: - to NOT display char-server parse packets on console.
- 2004-11-22 06:42:27.253: - with no minimum level for connection.
- 2004-11-22 06:42:27.254: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 06:42:27.254: - to create new accounts with an unlimited time.
- 2004-11-22 06:42:27.254: - with control of players IP between login-server and char-server.
- 2004-11-22 06:42:27.254: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 06:42:27.255: The LAN configuration of the server is set:
- 2004-11-22 06:42:27.255: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 06:42:27.255: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 06:42:27.258: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-22 06:42:27.260: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 06:42:29.906: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-22 06:42:29.906: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-22 06:42:29.941: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-22 06:55:43.864: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 06:55:43.865: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
- 2004-11-22 06:55:48.272: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 06:55:48.273: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
- 2004-11-22 06:56:38.898: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 06:56:38.898: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
- 2004-11-22 06:58:13.590: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 06:58:13.590: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
- 2004-11-22 06:58:35.344: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 06:58:35.345: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
- 2004-11-22 06:58:58.020: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 06:58:58.021: Unknown account (account: genosonic, received pass: juan16, ip: 127.0.0.1)
- 2004-11-22 15:52:36.640: The login-server starting...
- 2004-11-22 15:52:36.640: The configuration of the server is set:
- 2004-11-22 15:52:36.640: - with a remote administration with the DEFAULT password.
- 2004-11-22 15:52:36.640: - to accept any IP for remote administration
- 2004-11-22 15:52:36.640: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 15:52:36.640: - to create GM with level '60' when @gm is used.
- 2004-11-22 15:52:36.640: - to ALLOW new users (with _F/_M).
- 2004-11-22 15:52:36.640: - with port: 6900.
- 2004-11-22 15:52:36.640: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 15:52:36.640: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 15:52:36.641: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 15:52:36.641: - to save password in plain text.
- 2004-11-22 15:52:36.641: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 15:52:36.641: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 15:52:36.641: - to NOT display normal parse packets on console.
- 2004-11-22 15:52:36.641: - to NOT display administration parse packets on console.
- 2004-11-22 15:52:36.641: - to NOT display char-server parse packets on console.
- 2004-11-22 15:52:36.641: - with no minimum level for connection.
- 2004-11-22 15:52:36.641: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 15:52:36.642: - to create new accounts with an unlimited time.
- 2004-11-22 15:52:36.642: - with control of players IP between login-server and char-server.
- 2004-11-22 15:52:36.642: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 15:52:36.643: The LAN configuration of the server is set:
- 2004-11-22 15:52:36.643: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 15:52:36.643: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 15:52:36.644: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-22 15:52:36.647: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 15:53:35.798: Request for connection (non encryption mode) of genosonic_M (ip: 127.0.0.1).
- 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)
- 2004-11-22 15:53:35.896: Connection refused: there is no char-server online (account: genosonic, ip: 127.0.0.1).
- 2004-11-22 15:53:44.516: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 15:53:44.517: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
- 2004-11-22 15:53:44.527: Connection refused: there is no char-server online (account: genosonic, ip: 127.0.0.1).
- 2004-11-22 15:53:53.263: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 15:53:53.263: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 15:53:53.265: Connection refused: there is no char-server online (account: cameri, ip: 127.0.0.1).
- 2004-11-22 15:54:01.858: ----End of login-server (normal end with closing of all files).
- 2004-11-22 15:54:36.453: The login-server starting...
- 2004-11-22 15:54:36.453: The configuration of the server is set:
- 2004-11-22 15:54:36.453: - with a remote administration with the DEFAULT password.
- 2004-11-22 15:54:36.453: - to accept any IP for remote administration
- 2004-11-22 15:54:36.453: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 15:54:36.453: - to create GM with level '60' when @gm is used.
- 2004-11-22 15:54:36.453: - to ALLOW new users (with _F/_M).
- 2004-11-22 15:54:36.453: - with port: 6900.
- 2004-11-22 15:54:36.453: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 15:54:36.453: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 15:54:36.453: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 15:54:36.453: - to save password in plain text.
- 2004-11-22 15:54:36.453: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 15:54:36.453: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 15:54:36.454: - to NOT display normal parse packets on console.
- 2004-11-22 15:54:36.454: - to NOT display administration parse packets on console.
- 2004-11-22 15:54:36.454: - to NOT display char-server parse packets on console.
- 2004-11-22 15:54:36.454: - with no minimum level for connection.
- 2004-11-22 15:54:36.454: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 15:54:36.454: - to create new accounts with an unlimited time.
- 2004-11-22 15:54:36.454: - with control of players IP between login-server and char-server.
- 2004-11-22 15:54:36.454: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 15:54:36.455: The LAN configuration of the server is set:
- 2004-11-22 15:54:36.456: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 15:54:36.456: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 15:54:36.460: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-22 15:54:36.462: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 15:55:00.552: ----End of login-server (normal end with closing of all files).
- 2004-11-22 15:55:01.484: The login-server starting...
- 2004-11-22 15:55:01.484: The configuration of the server is set:
- 2004-11-22 15:55:01.484: - with a remote administration with the DEFAULT password.
- 2004-11-22 15:55:01.484: - to accept any IP for remote administration
- 2004-11-22 15:55:01.484: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 15:55:01.484: - to create GM with level '60' when @gm is used.
- 2004-11-22 15:55:01.484: - to ALLOW new users (with _F/_M).
- 2004-11-22 15:55:01.484: - with port: 6900.
- 2004-11-22 15:55:01.484: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 15:55:01.484: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 15:55:01.484: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 15:55:01.485: - to save password in plain text.
- 2004-11-22 15:55:01.485: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 15:55:01.485: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 15:55:01.485: - to NOT display normal parse packets on console.
- 2004-11-22 15:55:01.485: - to NOT display administration parse packets on console.
- 2004-11-22 15:55:01.485: - to NOT display char-server parse packets on console.
- 2004-11-22 15:55:01.485: - with no minimum level for connection.
- 2004-11-22 15:55:01.485: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 15:55:01.485: - to create new accounts with an unlimited time.
- 2004-11-22 15:55:01.485: - with control of players IP between login-server and char-server.
- 2004-11-22 15:55:01.485: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 15:55:01.486: The LAN configuration of the server is set:
- 2004-11-22 15:55:01.487: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 15:55:01.487: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 15:55:01.488: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-22 15:55:01.490: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 15:55:28.968: ----End of login-server (normal end with closing of all files).
- 2004-11-22 15:55:59.937: The login-server starting...
- 2004-11-22 15:55:59.937: The configuration of the server is set:
- 2004-11-22 15:55:59.937: - with a remote administration with the DEFAULT password.
- 2004-11-22 15:55:59.937: - to accept any IP for remote administration
- 2004-11-22 15:55:59.937: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 15:55:59.937: - to create GM with level '60' when @gm is used.
- 2004-11-22 15:55:59.937: - to ALLOW new users (with _F/_M).
- 2004-11-22 15:55:59.938: - with port: 6900.
- 2004-11-22 15:55:59.938: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 15:55:59.938: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 15:55:59.938: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 15:55:59.938: - to save password in plain text.
- 2004-11-22 15:55:59.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 15:55:59.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 15:55:59.938: - to NOT display normal parse packets on console.
- 2004-11-22 15:55:59.938: - to NOT display administration parse packets on console.
- 2004-11-22 15:55:59.938: - to NOT display char-server parse packets on console.
- 2004-11-22 15:55:59.938: - with no minimum level for connection.
- 2004-11-22 15:55:59.939: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 15:55:59.939: - to create new accounts with an unlimited time.
- 2004-11-22 15:55:59.939: - with control of players IP between login-server and char-server.
- 2004-11-22 15:55:59.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 15:55:59.940: The LAN configuration of the server is set:
- 2004-11-22 15:55:59.940: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 15:55:59.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 15:55:59.942: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 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').
- 2004-11-22 15:55:59.944: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 15:59:35.699: ----End of login-server (normal end with closing of all files).
- 2004-11-22 15:59:49.875: The login-server starting...
- 2004-11-22 15:59:49.875: The configuration of the server is set:
- 2004-11-22 15:59:49.875: - with a remote administration with the DEFAULT password.
- 2004-11-22 15:59:49.875: - to accept any IP for remote administration
- 2004-11-22 15:59:49.875: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 15:59:49.875: - to create GM with level '60' when @gm is used.
- 2004-11-22 15:59:49.875: - to ALLOW new users (with _F/_M).
- 2004-11-22 15:59:49.875: - with port: 6900.
- 2004-11-22 15:59:49.876: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 15:59:49.876: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 15:59:49.876: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 15:59:49.876: - to save password in plain text.
- 2004-11-22 15:59:49.876: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 15:59:49.876: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 15:59:49.876: - to NOT display normal parse packets on console.
- 2004-11-22 15:59:49.876: - to NOT display administration parse packets on console.
- 2004-11-22 15:59:49.876: - to NOT display char-server parse packets on console.
- 2004-11-22 15:59:49.876: - with no minimum level for connection.
- 2004-11-22 15:59:49.876: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 15:59:49.877: - to create new accounts with an unlimited time.
- 2004-11-22 15:59:49.877: - with control of players IP between login-server and char-server.
- 2004-11-22 15:59:49.877: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 15:59:49.878: The LAN configuration of the server is set:
- 2004-11-22 15:59:49.878: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 15:59:49.878: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 15:59:49.879: read_gm_account: file 'conf/GM_account.txt' readed (34 GM accounts found).
- 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').
- 2004-11-22 15:59:49.885: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:00:08.227: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:00:09.359: The login-server starting...
- 2004-11-22 16:00:09.359: The configuration of the server is set:
- 2004-11-22 16:00:09.359: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:00:09.359: - to accept any IP for remote administration
- 2004-11-22 16:00:09.359: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:00:09.359: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:00:09.359: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:00:09.359: - with port: 6900.
- 2004-11-22 16:00:09.359: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:00:09.359: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:00:09.359: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:00:09.359: - to save password in plain text.
- 2004-11-22 16:00:09.360: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:00:09.360: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:00:09.360: - to NOT display normal parse packets on console.
- 2004-11-22 16:00:09.360: - to NOT display administration parse packets on console.
- 2004-11-22 16:00:09.360: - to NOT display char-server parse packets on console.
- 2004-11-22 16:00:09.360: - with no minimum level for connection.
- 2004-11-22 16:00:09.360: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:00:09.360: - to create new accounts with an unlimited time.
- 2004-11-22 16:00:09.360: - with control of players IP between login-server and char-server.
- 2004-11-22 16:00:09.360: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:00:09.361: The LAN configuration of the server is set:
- 2004-11-22 16:00:09.362: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:00:09.362: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:00:09.363: read_gm_account: file 'conf/GM_account.txt' readed (35 GM accounts found).
- 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').
- 2004-11-22 16:00:09.365: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:00:21.477: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-22 16:00:21.477: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-22 16:00:21.482: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-22 16:01:03.482: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 16:01:03.482: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 16:01:03.811: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 16:01:16.510: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-22 16:01:21.320: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-22 16:01:21.320: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
- 2004-11-22 16:01:21.806: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
- 2004-11-22 16:01:35.696: Char-server 'eAthena': e-mail of the account 2000004 found (ip: 127.0.0.1).
- 2004-11-22 16:01:45.244: Request for connection (non encryption mode) of metal_M (ip: 127.0.0.1).
- 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)
- 2004-11-22 16:01:45.884: Char-server 'eAthena': authentification of the account 2000005 accepted (ip: 127.0.0.1).
- 2004-11-22 16:01:55.027: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-22 16:01:56.433: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:07:11.109: The login-server starting...
- 2004-11-22 16:07:11.109: The configuration of the server is set:
- 2004-11-22 16:07:11.109: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:07:11.109: - to accept any IP for remote administration
- 2004-11-22 16:07:11.109: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:07:11.109: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:07:11.109: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:07:11.109: - with port: 6900.
- 2004-11-22 16:07:11.109: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:07:11.109: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:07:11.109: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:07:11.109: - to save password in plain text.
- 2004-11-22 16:07:11.109: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:07:11.109: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:07:11.110: - to NOT display normal parse packets on console.
- 2004-11-22 16:07:11.110: - to NOT display administration parse packets on console.
- 2004-11-22 16:07:11.110: - to NOT display char-server parse packets on console.
- 2004-11-22 16:07:11.110: - with no minimum level for connection.
- 2004-11-22 16:07:11.110: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:07:11.110: - to create new accounts with an unlimited time.
- 2004-11-22 16:07:11.110: - with control of players IP between login-server and char-server.
- 2004-11-22 16:07:11.110: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:07:11.111: The LAN configuration of the server is set:
- 2004-11-22 16:07:11.111: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:07:11.111: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:07:11.112: read_gm_account: file 'conf/GM_account.txt' readed (35 GM accounts found).
- 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').
- 2004-11-22 16:07:11.115: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:09:26.116: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:10:56.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:11:26.116: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:11:41.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:12:11.116: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:12:26.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:12:41.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:12:56.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:13:11.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:13:26.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:13:41.117: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:14:56.116: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:15:11.117: read_gm_account: file 'conf/GM_account.txt' readed (1 GM accounts found).
- 2004-11-22 16:15:11.220: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:15:32.765: The login-server starting...
- 2004-11-22 16:15:32.765: The configuration of the server is set:
- 2004-11-22 16:15:32.765: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:15:32.765: - to accept any IP for remote administration
- 2004-11-22 16:15:32.765: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:15:32.765: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:15:32.765: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:15:32.765: - with port: 6900.
- 2004-11-22 16:15:32.765: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:15:32.765: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:15:32.765: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:15:32.765: - to save password in plain text.
- 2004-11-22 16:15:32.765: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:15:32.768: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:15:32.768: - to NOT display normal parse packets on console.
- 2004-11-22 16:15:32.768: - to NOT display administration parse packets on console.
- 2004-11-22 16:15:32.768: - to NOT display char-server parse packets on console.
- 2004-11-22 16:15:32.768: - with no minimum level for connection.
- 2004-11-22 16:15:32.768: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:15:32.768: - to create new accounts with an unlimited time.
- 2004-11-22 16:15:32.769: - with control of players IP between login-server and char-server.
- 2004-11-22 16:15:32.769: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:15:32.770: The LAN configuration of the server is set:
- 2004-11-22 16:15:32.770: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:15:32.770: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:15:32.771: read_gm_account: file 'conf/GM_account.txt' readed (1 GM accounts found).
- 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').
- 2004-11-22 16:15:32.773: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:16:15.139: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:16:50.468: The login-server starting...
- 2004-11-22 16:16:50.468: The configuration of the server is set:
- 2004-11-22 16:16:50.468: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:16:50.468: - to accept any IP for remote administration
- 2004-11-22 16:16:50.468: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:16:50.468: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:16:50.468: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:16:50.468: - with port: 6900.
- 2004-11-22 16:16:50.468: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:16:50.468: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:16:50.469: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:16:50.469: - to save password in plain text.
- 2004-11-22 16:16:50.469: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:16:50.469: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:16:50.469: - to NOT display normal parse packets on console.
- 2004-11-22 16:16:50.469: - to NOT display administration parse packets on console.
- 2004-11-22 16:16:50.469: - to NOT display char-server parse packets on console.
- 2004-11-22 16:16:50.469: - with no minimum level for connection.
- 2004-11-22 16:16:50.469: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:16:50.469: - to create new accounts with an unlimited time.
- 2004-11-22 16:16:50.469: - with control of players IP between login-server and char-server.
- 2004-11-22 16:16:50.469: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:16:50.470: The LAN configuration of the server is set:
- 2004-11-22 16:16:50.470: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:16:50.471: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:16:50.472: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 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').
- 2004-11-22 16:16:50.474: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:17:05.476: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:17:50.476: read_gm_account: file 'conf/GM_account.txt' readed (2 GM accounts found).
- 2004-11-22 16:18:05.478: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:18:35.482: read_gm_account: file 'conf/GM_account.txt' readed (32 GM accounts found).
- 2004-11-22 16:18:50.476: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 2004-11-22 16:24:46.551: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:24:49.687: The login-server starting...
- 2004-11-22 16:24:49.687: The configuration of the server is set:
- 2004-11-22 16:24:49.687: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:24:49.687: - to accept any IP for remote administration
- 2004-11-22 16:24:49.687: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:24:49.687: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:24:49.687: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:24:49.687: - with port: 6900.
- 2004-11-22 16:24:49.687: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:24:49.687: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:24:49.687: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:24:49.688: - to save password in plain text.
- 2004-11-22 16:24:49.688: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:24:49.688: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:24:49.688: - to NOT display normal parse packets on console.
- 2004-11-22 16:24:49.688: - to NOT display administration parse packets on console.
- 2004-11-22 16:24:49.688: - to NOT display char-server parse packets on console.
- 2004-11-22 16:24:49.688: - with no minimum level for connection.
- 2004-11-22 16:24:49.688: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:24:49.688: - to create new accounts with an unlimited time.
- 2004-11-22 16:24:49.688: - with control of players IP between login-server and char-server.
- 2004-11-22 16:24:49.688: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:24:49.690: The LAN configuration of the server is set:
- 2004-11-22 16:24:49.690: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:24:49.690: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:24:49.693: read_gm_account: file 'conf/GM_account.txt' readed (31 GM accounts found).
- 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').
- 2004-11-22 16:24:49.696: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:25:16.442: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:25:31.937: The login-server starting...
- 2004-11-22 16:25:31.937: The configuration of the server is set:
- 2004-11-22 16:25:31.937: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:25:31.937: - to accept any IP for remote administration
- 2004-11-22 16:25:31.937: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:25:31.937: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:25:31.937: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:25:31.937: - with port: 6900.
- 2004-11-22 16:25:31.937: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:25:31.937: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:25:31.938: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:25:31.938: - to save password in plain text.
- 2004-11-22 16:25:31.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:25:31.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:25:31.938: - to NOT display normal parse packets on console.
- 2004-11-22 16:25:31.938: - to NOT display administration parse packets on console.
- 2004-11-22 16:25:31.938: - to NOT display char-server parse packets on console.
- 2004-11-22 16:25:31.938: - with no minimum level for connection.
- 2004-11-22 16:25:31.938: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:25:31.938: - to create new accounts with an unlimited time.
- 2004-11-22 16:25:31.938: - with control of players IP between login-server and char-server.
- 2004-11-22 16:25:31.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:25:31.940: The LAN configuration of the server is set:
- 2004-11-22 16:25:31.940: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:25:31.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:25:31.941: read_gm_account: file 'conf/GM_account.txt' readed (1 GM accounts found).
- 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').
- 2004-11-22 16:25:31.944: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:26:01.966: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:26:41.090: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:28:11.125: The login-server starting...
- 2004-11-22 16:28:11.125: The configuration of the server is set:
- 2004-11-22 16:28:11.125: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:28:11.125: - to accept any IP for remote administration
- 2004-11-22 16:28:11.125: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:28:11.125: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:28:11.125: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:28:11.125: - with port: 6900.
- 2004-11-22 16:28:11.125: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:28:11.125: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:28:11.125: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:28:11.126: - to save password in plain text.
- 2004-11-22 16:28:11.126: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:28:11.126: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:28:11.126: - to NOT display normal parse packets on console.
- 2004-11-22 16:28:11.126: - to NOT display administration parse packets on console.
- 2004-11-22 16:28:11.126: - to NOT display char-server parse packets on console.
- 2004-11-22 16:28:11.126: - with no minimum level for connection.
- 2004-11-22 16:28:11.126: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:28:11.126: - to create new accounts with an unlimited time.
- 2004-11-22 16:28:11.127: - with control of players IP between login-server and char-server.
- 2004-11-22 16:28:11.127: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:28:11.128: The LAN configuration of the server is set:
- 2004-11-22 16:28:11.128: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:28:11.128: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:28:11.129: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 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').
- 2004-11-22 16:28:11.132: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:28:15.496: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:28:30.796: The login-server starting...
- 2004-11-22 16:28:30.796: The configuration of the server is set:
- 2004-11-22 16:28:30.796: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:28:30.796: - to accept any IP for remote administration
- 2004-11-22 16:28:30.796: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:28:30.796: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:28:30.796: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:28:30.797: - with port: 6900.
- 2004-11-22 16:28:30.797: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:28:30.797: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:28:30.797: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:28:30.797: - to save password in plain text.
- 2004-11-22 16:28:30.797: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:28:30.797: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:28:30.797: - to NOT display normal parse packets on console.
- 2004-11-22 16:28:30.797: - to NOT display administration parse packets on console.
- 2004-11-22 16:28:30.797: - to NOT display char-server parse packets on console.
- 2004-11-22 16:28:30.798: - with no minimum level for connection.
- 2004-11-22 16:28:30.798: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:28:30.798: - to create new accounts with an unlimited time.
- 2004-11-22 16:28:30.798: - with control of players IP between login-server and char-server.
- 2004-11-22 16:28:30.798: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:28:30.799: The LAN configuration of the server is set:
- 2004-11-22 16:28:30.799: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:28:30.799: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:28:30.800: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 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').
- 2004-11-22 16:28:30.802: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:28:43.187: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:28:44.203: The login-server starting...
- 2004-11-22 16:28:44.203: The configuration of the server is set:
- 2004-11-22 16:28:44.203: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:28:44.203: - to accept any IP for remote administration
- 2004-11-22 16:28:44.203: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:28:44.203: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:28:44.203: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:28:44.203: - with port: 6900.
- 2004-11-22 16:28:44.203: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:28:44.203: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:28:44.203: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:28:44.203: - to save password in plain text.
- 2004-11-22 16:28:44.203: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:28:44.203: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:28:44.203: - to NOT display normal parse packets on console.
- 2004-11-22 16:28:44.203: - to NOT display administration parse packets on console.
- 2004-11-22 16:28:44.203: - to NOT display char-server parse packets on console.
- 2004-11-22 16:28:44.204: - with no minimum level for connection.
- 2004-11-22 16:28:44.204: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:28:44.204: - to create new accounts with an unlimited time.
- 2004-11-22 16:28:44.204: - with control of players IP between login-server and char-server.
- 2004-11-22 16:28:44.204: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:28:44.205: The LAN configuration of the server is set:
- 2004-11-22 16:28:44.205: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:28:44.205: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:28:44.206: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 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').
- 2004-11-22 16:28:44.208: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:29:04.225: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:29:14.937: The login-server starting...
- 2004-11-22 16:29:14.937: The configuration of the server is set:
- 2004-11-22 16:29:14.937: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:29:14.937: - to accept any IP for remote administration
- 2004-11-22 16:29:14.937: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:29:14.938: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:29:14.938: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:29:14.938: - with port: 6900.
- 2004-11-22 16:29:14.938: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:29:14.938: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:29:14.938: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:29:14.938: - to save password in plain text.
- 2004-11-22 16:29:14.938: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:29:14.938: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:29:14.938: - to NOT display normal parse packets on console.
- 2004-11-22 16:29:14.938: - to NOT display administration parse packets on console.
- 2004-11-22 16:29:14.939: - to NOT display char-server parse packets on console.
- 2004-11-22 16:29:14.939: - with no minimum level for connection.
- 2004-11-22 16:29:14.939: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:29:14.939: - to create new accounts with an unlimited time.
- 2004-11-22 16:29:14.939: - with control of players IP between login-server and char-server.
- 2004-11-22 16:29:14.939: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:29:14.940: The LAN configuration of the server is set:
- 2004-11-22 16:29:14.940: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:29:14.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:29:14.941: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 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').
- 2004-11-22 16:29:14.943: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:29:29.945: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:30:59.120: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:31:14.921: The login-server starting...
- 2004-11-22 16:31:14.921: The configuration of the server is set:
- 2004-11-22 16:31:14.921: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:31:14.921: - to accept any IP for remote administration
- 2004-11-22 16:31:14.921: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:31:14.921: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:31:14.921: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:31:14.921: - with port: 6900.
- 2004-11-22 16:31:14.921: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:31:14.921: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:31:14.921: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:31:14.921: - to save password in plain text.
- 2004-11-22 16:31:14.921: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:31:14.921: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:31:14.921: - to NOT display normal parse packets on console.
- 2004-11-22 16:31:14.921: - to NOT display administration parse packets on console.
- 2004-11-22 16:31:14.924: - to NOT display char-server parse packets on console.
- 2004-11-22 16:31:14.924: - with no minimum level for connection.
- 2004-11-22 16:31:14.924: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:31:14.924: - to create new accounts with an unlimited time.
- 2004-11-22 16:31:14.924: - with control of players IP between login-server and char-server.
- 2004-11-22 16:31:14.925: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:31:14.925: The LAN configuration of the server is set:
- 2004-11-22 16:31:14.926: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:31:14.926: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-22 16:31:14.927: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 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').
- 2004-11-22 16:31:14.929: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:32:18.610: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:32:28.296: The login-server starting...
- 2004-11-22 16:32:28.296: The configuration of the server is set:
- 2004-11-22 16:32:28.296: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:32:28.296: - to accept any IP for remote administration
- 2004-11-22 16:32:28.296: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:32:28.296: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:32:28.296: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:32:28.296: - with port: 6900.
- 2004-11-22 16:32:28.296: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:32:28.296: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:32:28.296: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:32:28.296: - to save password in plain text.
- 2004-11-22 16:32:28.296: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:32:28.297: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:32:28.297: - to NOT display normal parse packets on console.
- 2004-11-22 16:32:28.297: - to NOT display administration parse packets on console.
- 2004-11-22 16:32:28.297: - to NOT display char-server parse packets on console.
- 2004-11-22 16:32:28.297: - with no minimum level for connection.
- 2004-11-22 16:32:28.297: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:32:28.297: - to create new accounts with an unlimited time.
- 2004-11-22 16:32:28.297: - with control of players IP between login-server and char-server.
- 2004-11-22 16:32:28.297: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:32:28.298: The LAN configuration of the server is set:
- 2004-11-22 16:32:28.298: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:32:28.298: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:32:28.326: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:32:28.327: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:33:10.263: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:33:24.218: The login-server starting...
- 2004-11-22 16:33:24.219: The configuration of the server is set:
- 2004-11-22 16:33:24.219: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:33:24.219: - to accept any IP for remote administration
- 2004-11-22 16:33:24.219: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:33:24.219: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:33:24.219: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:33:24.219: - with port: 6900.
- 2004-11-22 16:33:24.219: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:33:24.219: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:33:24.219: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:33:24.219: - to save password in plain text.
- 2004-11-22 16:33:24.220: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:33:24.220: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:33:24.220: - to NOT display normal parse packets on console.
- 2004-11-22 16:33:24.220: - to NOT display administration parse packets on console.
- 2004-11-22 16:33:24.220: - to NOT display char-server parse packets on console.
- 2004-11-22 16:33:24.220: - with no minimum level for connection.
- 2004-11-22 16:33:24.220: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:33:24.221: - to create new accounts with an unlimited time.
- 2004-11-22 16:33:24.221: - with control of players IP between login-server and char-server.
- 2004-11-22 16:33:24.221: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:33:24.222: The LAN configuration of the server is set:
- 2004-11-22 16:33:24.222: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:33:24.222: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:33:24.225: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:33:24.225: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:33:50.146: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:33:59.656: The login-server starting...
- 2004-11-22 16:33:59.656: The configuration of the server is set:
- 2004-11-22 16:33:59.656: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:33:59.656: - to accept any IP for remote administration
- 2004-11-22 16:33:59.656: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:33:59.656: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:33:59.656: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:33:59.656: - with port: 6900.
- 2004-11-22 16:33:59.656: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:33:59.657: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:33:59.657: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:33:59.657: - to save password in plain text.
- 2004-11-22 16:33:59.657: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:33:59.657: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:33:59.658: - to NOT display normal parse packets on console.
- 2004-11-22 16:33:59.658: - to NOT display administration parse packets on console.
- 2004-11-22 16:33:59.658: - to NOT display char-server parse packets on console.
- 2004-11-22 16:33:59.658: - with no minimum level for connection.
- 2004-11-22 16:33:59.658: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:33:59.658: - to create new accounts with an unlimited time.
- 2004-11-22 16:33:59.658: - with control of players IP between login-server and char-server.
- 2004-11-22 16:33:59.658: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:33:59.659: The LAN configuration of the server is set:
- 2004-11-22 16:33:59.659: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:33:59.659: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:33:59.664: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:33:59.665: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:35:28.708: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:35:40.015: The login-server starting...
- 2004-11-22 16:35:40.015: The configuration of the server is set:
- 2004-11-22 16:35:40.015: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:35:40.015: - to accept any IP for remote administration
- 2004-11-22 16:35:40.015: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:35:40.015: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:35:40.015: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:35:40.016: - with port: 6900.
- 2004-11-22 16:35:40.016: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:35:40.016: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:35:40.016: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:35:40.016: - to save password in plain text.
- 2004-11-22 16:35:40.016: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:35:40.016: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:35:40.016: - to NOT display normal parse packets on console.
- 2004-11-22 16:35:40.016: - to NOT display administration parse packets on console.
- 2004-11-22 16:35:40.016: - to NOT display char-server parse packets on console.
- 2004-11-22 16:35:40.016: - with no minimum level for connection.
- 2004-11-22 16:35:40.016: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:35:40.017: - to create new accounts with an unlimited time.
- 2004-11-22 16:35:40.017: - with control of players IP between login-server and char-server.
- 2004-11-22 16:35:40.017: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:35:40.018: The LAN configuration of the server is set:
- 2004-11-22 16:35:40.018: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:35:40.018: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:35:40.023: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:35:40.023: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:35:47.223: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:35:58.687: The login-server starting...
- 2004-11-22 16:35:58.687: The configuration of the server is set:
- 2004-11-22 16:35:58.687: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:35:58.687: - to accept any IP for remote administration
- 2004-11-22 16:35:58.687: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:35:58.687: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:35:58.687: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:35:58.687: - with port: 6900.
- 2004-11-22 16:35:58.687: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:35:58.687: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:35:58.687: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:35:58.687: - to save password in plain text.
- 2004-11-22 16:35:58.687: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:35:58.687: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:35:58.687: - to NOT display normal parse packets on console.
- 2004-11-22 16:35:58.687: - to NOT display administration parse packets on console.
- 2004-11-22 16:35:58.688: - to NOT display char-server parse packets on console.
- 2004-11-22 16:35:58.688: - with no minimum level for connection.
- 2004-11-22 16:35:58.688: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:35:58.688: - to create new accounts with an unlimited time.
- 2004-11-22 16:35:58.688: - with control of players IP between login-server and char-server.
- 2004-11-22 16:35:58.688: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:35:58.689: The LAN configuration of the server is set:
- 2004-11-22 16:35:58.689: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:35:58.689: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:35:58.692: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:35:58.692: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:38:44.359: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:39:28.375: The login-server starting...
- 2004-11-22 16:39:28.375: The configuration of the server is set:
- 2004-11-22 16:39:28.375: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:39:28.375: - to accept any IP for remote administration
- 2004-11-22 16:39:28.375: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:39:28.375: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:39:28.375: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:39:28.375: - with port: 6900.
- 2004-11-22 16:39:28.375: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:39:28.375: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:39:28.375: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:39:28.375: - to save password in plain text.
- 2004-11-22 16:39:28.375: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:39:28.375: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:39:28.375: - to NOT display normal parse packets on console.
- 2004-11-22 16:39:28.375: - to NOT display administration parse packets on console.
- 2004-11-22 16:39:28.376: - to NOT display char-server parse packets on console.
- 2004-11-22 16:39:28.376: - with no minimum level for connection.
- 2004-11-22 16:39:28.376: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:39:28.376: - to create new accounts with an unlimited time.
- 2004-11-22 16:39:28.376: - with control of players IP between login-server and char-server.
- 2004-11-22 16:39:28.376: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:39:28.377: The LAN configuration of the server is set:
- 2004-11-22 16:39:28.377: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:39:28.377: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:39:28.380: read_gm_account: file 'conf/GM_account.txt' readed (0 GM accounts found).
- 2004-11-22 16:39:28.380: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:39:56.330: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:40:08.875: The login-server starting...
- 2004-11-22 16:40:08.875: The configuration of the server is set:
- 2004-11-22 16:40:08.875: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:40:08.875: - to accept any IP for remote administration
- 2004-11-22 16:40:08.875: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:40:08.875: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:40:08.875: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:40:08.875: - with port: 6900.
- 2004-11-22 16:40:08.875: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:40:08.876: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:40:08.876: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:40:08.876: - to save password in plain text.
- 2004-11-22 16:40:08.876: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:40:08.876: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:40:08.876: - to NOT display normal parse packets on console.
- 2004-11-22 16:40:08.876: - to NOT display administration parse packets on console.
- 2004-11-22 16:40:08.876: - to NOT display char-server parse packets on console.
- 2004-11-22 16:40:08.876: - with no minimum level for connection.
- 2004-11-22 16:40:08.876: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:40:08.880: - to create new accounts with an unlimited time.
- 2004-11-22 16:40:08.880: - with control of players IP between login-server and char-server.
- 2004-11-22 16:40:08.880: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:40:08.881: The LAN configuration of the server is set:
- 2004-11-22 16:40:08.881: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:40:08.881: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:40:08.883: read_gm_account: file 'conf/GM_account.txt' readed (4 GM accounts found).
- 2004-11-22 16:40:08.884: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:40:38.885: read_gm_account: file 'conf/GM_account.txt' readed (5 GM accounts found).
- 2004-11-22 16:40:53.886: read_gm_account: file 'conf/GM_account.txt' readed (5 GM accounts found).
- 2004-11-22 16:41:04.862: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:46:56.640: The login-server starting...
- 2004-11-22 16:46:56.640: The configuration of the server is set:
- 2004-11-22 16:46:56.640: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:46:56.640: - to accept any IP for remote administration
- 2004-11-22 16:46:56.640: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:46:56.640: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:46:56.640: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:46:56.640: - with port: 6900.
- 2004-11-22 16:46:56.640: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:46:56.640: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:46:56.641: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:46:56.641: - to save password in plain text.
- 2004-11-22 16:46:56.641: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:46:56.641: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:46:56.641: - to NOT display normal parse packets on console.
- 2004-11-22 16:46:56.641: - to NOT display administration parse packets on console.
- 2004-11-22 16:46:56.641: - to NOT display char-server parse packets on console.
- 2004-11-22 16:46:56.641: - with no minimum level for connection.
- 2004-11-22 16:46:56.641: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:46:56.641: - to create new accounts with an unlimited time.
- 2004-11-22 16:46:56.641: - with control of players IP between login-server and char-server.
- 2004-11-22 16:46:56.641: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:46:56.642: The LAN configuration of the server is set:
- 2004-11-22 16:46:56.642: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:46:56.644: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:46:56.646: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 16:46:56.647: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:47:35.910: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:49:45.093: The login-server starting...
- 2004-11-22 16:49:45.093: The configuration of the server is set:
- 2004-11-22 16:49:45.093: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:49:45.093: - to accept any IP for remote administration
- 2004-11-22 16:49:45.093: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:49:45.093: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:49:45.093: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:49:45.094: - with port: 6900.
- 2004-11-22 16:49:45.094: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:49:45.094: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:49:45.094: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:49:45.094: - to save password in plain text.
- 2004-11-22 16:49:45.094: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:49:45.094: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:49:45.094: - to NOT display normal parse packets on console.
- 2004-11-22 16:49:45.094: - to NOT display administration parse packets on console.
- 2004-11-22 16:49:45.094: - to NOT display char-server parse packets on console.
- 2004-11-22 16:49:45.094: - with no minimum level for connection.
- 2004-11-22 16:49:45.095: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:49:45.095: - to create new accounts with an unlimited time.
- 2004-11-22 16:49:45.095: - with control of players IP between login-server and char-server.
- 2004-11-22 16:49:45.095: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:49:45.096: The LAN configuration of the server is set:
- 2004-11-22 16:49:45.096: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:49:45.096: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:49:45.099: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 16:49:45.099: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:49:53.290: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:59:30.671: The login-server starting...
- 2004-11-22 16:59:30.671: The configuration of the server is set:
- 2004-11-22 16:59:30.671: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:59:30.671: - to accept any IP for remote administration
- 2004-11-22 16:59:30.671: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:59:30.671: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:59:30.672: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:59:30.672: - with port: 6900.
- 2004-11-22 16:59:30.672: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:59:30.672: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:59:30.672: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:59:30.672: - to save password in plain text.
- 2004-11-22 16:59:30.672: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:59:30.672: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:59:30.672: - to NOT display normal parse packets on console.
- 2004-11-22 16:59:30.672: - to NOT display administration parse packets on console.
- 2004-11-22 16:59:30.672: - to NOT display char-server parse packets on console.
- 2004-11-22 16:59:30.673: - with no minimum level for connection.
- 2004-11-22 16:59:30.673: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:59:30.673: - to create new accounts with an unlimited time.
- 2004-11-22 16:59:30.673: - with control of players IP between login-server and char-server.
- 2004-11-22 16:59:30.673: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:59:30.674: The LAN configuration of the server is set:
- 2004-11-22 16:59:30.674: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:59:30.674: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:59:30.677: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 16:59:30.677: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 16:59:57.602: ----End of login-server (normal end with closing of all files).
- 2004-11-22 16:59:58.406: The login-server starting...
- 2004-11-22 16:59:58.406: The configuration of the server is set:
- 2004-11-22 16:59:58.406: - with a remote administration with the DEFAULT password.
- 2004-11-22 16:59:58.406: - to accept any IP for remote administration
- 2004-11-22 16:59:58.406: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 16:59:58.406: - to create GM with level '60' when @gm is used.
- 2004-11-22 16:59:58.406: - to ALLOW new users (with _F/_M).
- 2004-11-22 16:59:58.406: - with port: 6900.
- 2004-11-22 16:59:58.406: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 16:59:58.406: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 16:59:58.406: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 16:59:58.406: - to save password in plain text.
- 2004-11-22 16:59:58.406: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 16:59:58.407: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 16:59:58.407: - to NOT display normal parse packets on console.
- 2004-11-22 16:59:58.407: - to NOT display administration parse packets on console.
- 2004-11-22 16:59:58.407: - to NOT display char-server parse packets on console.
- 2004-11-22 16:59:58.407: - with no minimum level for connection.
- 2004-11-22 16:59:58.407: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 16:59:58.407: - to create new accounts with an unlimited time.
- 2004-11-22 16:59:58.407: - with control of players IP between login-server and char-server.
- 2004-11-22 16:59:58.407: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 16:59:58.408: The LAN configuration of the server is set:
- 2004-11-22 16:59:58.408: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 16:59:58.408: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 16:59:58.411: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 16:59:58.411: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 17:00:08.573: ----End of login-server (normal end with closing of all files).
- 2004-11-22 17:00:15.828: The login-server starting...
- 2004-11-22 17:00:15.828: The configuration of the server is set:
- 2004-11-22 17:00:15.828: - with a remote administration with the DEFAULT password.
- 2004-11-22 17:00:15.828: - to accept any IP for remote administration
- 2004-11-22 17:00:15.828: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 17:00:15.828: - to create GM with level '60' when @gm is used.
- 2004-11-22 17:00:15.828: - to ALLOW new users (with _F/_M).
- 2004-11-22 17:00:15.828: - with port: 6900.
- 2004-11-22 17:00:15.829: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 17:00:15.829: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 17:00:15.829: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 17:00:15.829: - to save password in plain text.
- 2004-11-22 17:00:15.829: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 17:00:15.829: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 17:00:15.829: - to NOT display normal parse packets on console.
- 2004-11-22 17:00:15.829: - to NOT display administration parse packets on console.
- 2004-11-22 17:00:15.829: - to NOT display char-server parse packets on console.
- 2004-11-22 17:00:15.829: - with no minimum level for connection.
- 2004-11-22 17:00:15.829: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 17:00:15.830: - to create new accounts with an unlimited time.
- 2004-11-22 17:00:15.830: - with control of players IP between login-server and char-server.
- 2004-11-22 17:00:15.830: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 17:00:15.831: The LAN configuration of the server is set:
- 2004-11-22 17:00:15.831: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 17:00:15.831: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 17:00:15.833: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 17:00:15.836: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 17:01:00.838: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 17:01:15.839: read_gm_account: file 'conf/GM_account.txt' read (3 GM accounts found).
- 2004-11-22 17:02:19.056: ----End of login-server (normal end with closing of all files).
- 2004-11-22 17:05:21.062: The login-server starting...
- 2004-11-22 17:05:21.062: The configuration of the server is set:
- 2004-11-22 17:05:21.062: - with a remote administration with the DEFAULT password.
- 2004-11-22 17:05:21.062: - to accept any IP for remote administration
- 2004-11-22 17:05:21.062: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 17:05:21.062: - to create GM with level '60' when @gm is used.
- 2004-11-22 17:05:21.062: - to ALLOW new users (with _F/_M).
- 2004-11-22 17:05:21.062: - with port: 6900.
- 2004-11-22 17:05:21.062: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 17:05:21.062: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 17:05:21.062: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 17:05:21.062: - to save password in plain text.
- 2004-11-22 17:05:21.062: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 17:05:21.062: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 17:05:21.063: - to NOT display normal parse packets on console.
- 2004-11-22 17:05:21.063: - to NOT display administration parse packets on console.
- 2004-11-22 17:05:21.063: - to NOT display char-server parse packets on console.
- 2004-11-22 17:05:21.063: - with no minimum level for connection.
- 2004-11-22 17:05:21.063: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 17:05:21.063: - to create new accounts with an unlimited time.
- 2004-11-22 17:05:21.063: - with control of players IP between login-server and char-server.
- 2004-11-22 17:05:21.063: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 17:05:21.066: The LAN configuration of the server is set:
- 2004-11-22 17:05:21.066: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 17:05:21.066: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 17:05:21.070: read_gm_account: file 'conf/GM_account.txt' read (3 GM accounts found).
- 2004-11-22 17:05:21.071: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 17:05:36.072: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 17:06:37.114: ----End of login-server (normal end with closing of all files).
- 2004-11-22 20:36:06.421: The login-server starting...
- 2004-11-22 20:36:06.610: The configuration of the server is set:
- 2004-11-22 20:36:06.611: - with a remote administration with the DEFAULT password.
- 2004-11-22 20:36:06.611: - to accept any IP for remote administration
- 2004-11-22 20:36:06.611: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 20:36:06.612: - to create GM with level '60' when @gm is used.
- 2004-11-22 20:36:06.612: - to ALLOW new users (with _F/_M).
- 2004-11-22 20:36:06.612: - with port: 6900.
- 2004-11-22 20:36:06.613: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 20:36:06.613: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 20:36:06.613: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 20:36:06.614: - to save password in plain text.
- 2004-11-22 20:36:06.614: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 20:36:06.614: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 20:36:06.615: - to NOT display normal parse packets on console.
- 2004-11-22 20:36:06.615: - to NOT display administration parse packets on console.
- 2004-11-22 20:36:06.615: - to NOT display char-server parse packets on console.
- 2004-11-22 20:36:06.616: - with no minimum level for connection.
- 2004-11-22 20:36:06.616: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 20:36:06.616: - to create new accounts with an unlimited time.
- 2004-11-22 20:36:06.617: - with control of players IP between login-server and char-server.
- 2004-11-22 20:36:06.617: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 20:36:06.619: The LAN configuration of the server is set:
- 2004-11-22 20:36:06.619: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 20:36:06.619: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 20:36:06.623: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 20:36:06.629: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 20:36:08.997: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-22 20:36:08.997: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-22 20:36:09.029: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-22 20:36:15.153: ----End of login-server (normal end with closing of all files).
- 2004-11-22 20:52:21.984: The login-server starting...
- 2004-11-22 20:52:21.984: The configuration of the server is set:
- 2004-11-22 20:52:21.984: - with a remote administration with the DEFAULT password.
- 2004-11-22 20:52:21.984: - to accept any IP for remote administration
- 2004-11-22 20:52:21.985: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 20:52:21.985: - to create GM with level '60' when @gm is used.
- 2004-11-22 20:52:21.985: - to ALLOW new users (with _F/_M).
- 2004-11-22 20:52:21.986: - with port: 6900.
- 2004-11-22 20:52:21.986: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 20:52:21.986: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 20:52:21.987: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 20:52:21.987: - to save password in plain text.
- 2004-11-22 20:52:21.987: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 20:52:21.988: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 20:52:21.988: - to NOT display normal parse packets on console.
- 2004-11-22 20:52:21.988: - to NOT display administration parse packets on console.
- 2004-11-22 20:52:21.989: - to NOT display char-server parse packets on console.
- 2004-11-22 20:52:21.990: - with no minimum level for connection.
- 2004-11-22 20:52:21.990: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 20:52:21.990: - to create new accounts with an unlimited time.
- 2004-11-22 20:52:21.991: - with control of players IP between login-server and char-server.
- 2004-11-22 20:52:21.991: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 20:52:21.992: The LAN configuration of the server is set:
- 2004-11-22 20:52:21.993: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 20:52:21.993: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 20:52:21.996: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 20:52:22.001: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 20:52:24.192: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-22 20:52:24.192: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-22 20:52:24.195: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-22 20:53:16.333: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-22 20:53:16.334: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-22 20:53:16.789: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-22 20:54:23.395: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 20:54:23.395: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 20:54:23.817: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 20:55:45.446: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-22 20:55:45.446: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-22 20:55:46.254: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-22 22:01:42.625: The login-server starting...
- 2004-11-22 22:01:42.625: The configuration of the server is set:
- 2004-11-22 22:01:42.626: - with a remote administration with the DEFAULT password.
- 2004-11-22 22:01:42.626: - to accept any IP for remote administration
- 2004-11-22 22:01:42.626: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 22:01:42.627: - to create GM with level '60' when @gm is used.
- 2004-11-22 22:01:42.627: - to ALLOW new users (with _F/_M).
- 2004-11-22 22:01:42.628: - with port: 6900.
- 2004-11-22 22:01:42.628: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 22:01:42.628: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 22:01:42.629: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 22:01:42.629: - to save password in plain text.
- 2004-11-22 22:01:42.630: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 22:01:42.630: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 22:01:42.631: - to NOT display normal parse packets on console.
- 2004-11-22 22:01:42.631: - to NOT display administration parse packets on console.
- 2004-11-22 22:01:42.632: - to NOT display char-server parse packets on console.
- 2004-11-22 22:01:42.632: - with no minimum level for connection.
- 2004-11-22 22:01:42.633: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 22:01:42.633: - to create new accounts with an unlimited time.
- 2004-11-22 22:01:42.634: - with control of players IP between login-server and char-server.
- 2004-11-22 22:01:42.634: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 22:01:42.657: The LAN configuration of the server is set:
- 2004-11-22 22:01:42.658: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 22:01:42.660: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 22:01:42.676: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 22:01:42.693: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 22:01:43.166: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-22 22:01:43.166: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-22 22:01:43.197: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-22 22:03:00.896: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 22:03:00.897: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 22:03:01.296: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 22:03:26.445: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-22 22:27:29.125: The login-server starting...
- 2004-11-22 22:27:29.125: The configuration of the server is set:
- 2004-11-22 22:27:29.125: - with a remote administration with the DEFAULT password.
- 2004-11-22 22:27:29.125: - to accept any IP for remote administration
- 2004-11-22 22:27:29.125: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-22 22:27:29.125: - to create GM with level '60' when @gm is used.
- 2004-11-22 22:27:29.125: - to ALLOW new users (with _F/_M).
- 2004-11-22 22:27:29.125: - with port: 6900.
- 2004-11-22 22:27:29.125: - with the accounts file name: 'save/account.txt'.
- 2004-11-22 22:27:29.125: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-22 22:27:29.125: - to check GM accounts file modifications every 15 seconds.
- 2004-11-22 22:27:29.125: - to save password in plain text.
- 2004-11-22 22:27:29.125: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-22 22:27:29.125: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-22 22:27:29.125: - to NOT display normal parse packets on console.
- 2004-11-22 22:27:29.125: - to NOT display administration parse packets on console.
- 2004-11-22 22:27:29.125: - to NOT display char-server parse packets on console.
- 2004-11-22 22:27:29.125: - with no minimum level for connection.
- 2004-11-22 22:27:29.140: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-22 22:27:29.156: - to create new accounts with an unlimited time.
- 2004-11-22 22:27:29.156: - with control of players IP between login-server and char-server.
- 2004-11-22 22:27:29.156: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-22 22:27:29.158: The LAN configuration of the server is set:
- 2004-11-22 22:27:29.158: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-22 22:27:29.159: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-22 22:27:29.162: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-22 22:27:29.166: The login-server is ready (Server is listening on the port 6900).
- 2004-11-22 22:27:31.643: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-22 22:27:31.643: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-22 22:27:31.681: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-22 22:30:07.826: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 22:30:07.826: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 22:30:08.199: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 22:31:24.025: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-22 22:33:12.795: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 22:33:12.795: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 22:33:13.137: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 22:36:43.335: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 22:36:43.336: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 22:36:43.935: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 22:37:54.649: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-22 22:41:38.501: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 22:41:38.502: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 22:41:38.868: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 22:44:24.741: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-22 22:46:32.210: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 22:46:32.210: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 22:46:32.541: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 22:48:59.253: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-22 22:48:59.254: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-22 22:48:59.630: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-22 22:50:24.467: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-22 22:55:38.701: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-24 18:55:47.578: The login-server starting...
- 2004-11-24 18:55:47.578: The configuration of the server is set:
- 2004-11-24 18:55:47.579: - with a remote administration with the DEFAULT password.
- 2004-11-24 18:55:47.579: - to accept any IP for remote administration
- 2004-11-24 18:55:47.579: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-24 18:55:47.580: - to create GM with level '60' when @gm is used.
- 2004-11-24 18:55:47.580: - to ALLOW new users (with _F/_M).
- 2004-11-24 18:55:47.581: - with port: 6900.
- 2004-11-24 18:55:47.581: - with the accounts file name: 'save/account.txt'.
- 2004-11-24 18:55:47.581: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-24 18:55:47.582: - to check GM accounts file modifications every 15 seconds.
- 2004-11-24 18:55:47.582: - to save password in plain text.
- 2004-11-24 18:55:47.582: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-24 18:55:47.583: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-24 18:55:47.583: - to NOT display normal parse packets on console.
- 2004-11-24 18:55:47.583: - to NOT display administration parse packets on console.
- 2004-11-24 18:55:47.584: - to NOT display char-server parse packets on console.
- 2004-11-24 18:55:47.584: - with no minimum level for connection.
- 2004-11-24 18:55:47.584: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-24 18:55:47.585: - to create new accounts with an unlimited time.
- 2004-11-24 18:55:47.585: - with control of players IP between login-server and char-server.
- 2004-11-24 18:55:47.585: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-24 18:55:47.587: The LAN configuration of the server is set:
- 2004-11-24 18:55:47.587: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-24 18:55:47.588: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-24 18:55:47.591: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-24 18:55:47.596: The login-server is ready (Server is listening on the port 6900).
- 2004-11-24 18:55:49.624: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-24 18:55:49.625: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-24 18:55:49.631: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-24 18:58:04.449: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-27 22:59:11.531: The login-server starting...
- 2004-11-27 22:59:11.531: The configuration of the server is set:
- 2004-11-27 22:59:11.531: - with a remote administration with the DEFAULT password.
- 2004-11-27 22:59:11.531: - to accept any IP for remote administration
- 2004-11-27 22:59:11.531: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-27 22:59:11.531: - to create GM with level '60' when @gm is used.
- 2004-11-27 22:59:11.531: - to ALLOW new users (with _F/_M).
- 2004-11-27 22:59:11.531: - with port: 6900.
- 2004-11-27 22:59:11.531: - with the accounts file name: 'save/account.txt'.
- 2004-11-27 22:59:11.531: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-27 22:59:11.531: - to check GM accounts file modifications every 15 seconds.
- 2004-11-27 22:59:11.531: - to save password in plain text.
- 2004-11-27 22:59:11.531: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-27 22:59:11.532: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-27 22:59:11.532: - to NOT display normal parse packets on console.
- 2004-11-27 22:59:11.532: - to NOT display administration parse packets on console.
- 2004-11-27 22:59:11.532: - to NOT display char-server parse packets on console.
- 2004-11-27 22:59:11.532: - with no minimum level for connection.
- 2004-11-27 22:59:11.532: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-27 22:59:11.532: - to create new accounts with an unlimited time.
- 2004-11-27 22:59:11.532: - with control of players IP between login-server and char-server.
- 2004-11-27 22:59:11.532: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-27 22:59:11.538: The LAN configuration of the server is set:
- 2004-11-27 22:59:11.538: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-27 22:59:11.538: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 2004-11-27 22:59:11.541: read_gm_account: file 'conf/GM_account.txt' read (0 GM accounts found).
- 2004-11-27 22:59:11.541: The login-server is ready (Server is listening on the port 6900).
- 2004-11-27 22:59:15.990: ----End of login-server (normal end with closing of all files).
- 2004-11-27 22:59:47.546: The login-server starting...
- 2004-11-27 22:59:47.546: The configuration of the server is set:
- 2004-11-27 22:59:47.546: - with a remote administration with the DEFAULT password.
- 2004-11-27 22:59:47.546: - to accept any IP for remote administration
- 2004-11-27 22:59:47.546: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-27 22:59:47.546: - to create GM with level '60' when @gm is used.
- 2004-11-27 22:59:47.547: - to ALLOW new users (with _F/_M).
- 2004-11-27 22:59:47.547: - with port: 6900.
- 2004-11-27 22:59:47.547: - with the accounts file name: 'save/account.txt'.
- 2004-11-27 22:59:47.547: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-27 22:59:47.547: - to check GM accounts file modifications every 15 seconds.
- 2004-11-27 22:59:47.547: - to save password in plain text.
- 2004-11-27 22:59:47.547: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-27 22:59:47.547: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-27 22:59:47.547: - to NOT display normal parse packets on console.
- 2004-11-27 22:59:47.547: - to NOT display administration parse packets on console.
- 2004-11-27 22:59:47.547: - to NOT display char-server parse packets on console.
- 2004-11-27 22:59:47.548: - with no minimum level for connection.
- 2004-11-27 22:59:47.548: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-27 22:59:47.548: - to create new accounts with an unlimited time.
- 2004-11-27 22:59:47.548: - with control of players IP between login-server and char-server.
- 2004-11-27 22:59:47.548: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-27 22:59:47.550: The LAN configuration of the server is set:
- 2004-11-27 22:59:47.550: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-27 22:59:47.550: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-27 22:59:47.553: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-27 22:59:47.554: The login-server is ready (Server is listening on the port 6900).
- 2004-11-27 22:59:53.206: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-27 22:59:53.206: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-27 22:59:53.208: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-27 23:00:47.082: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-27 23:00:47.082: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-27 23:00:47.930: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-27 23:01:17.461: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-27 23:01:17.461: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-27 23:01:18.090: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-27 23:02:51.027: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-27 23:02:51.027: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-27 23:02:51.565: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-27 23:02:56.768: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-27 23:02:56.769: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-27 23:02:57.248: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-27 23:03:03.418: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-27 23:03:03.418: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-27 23:03:03.838: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-27 23:06:22.520: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-27 23:06:23.637: ----End of login-server (normal end with closing of all files).
- 2004-11-28 08:49:45.843: The login-server starting...
- 2004-11-28 08:49:45.843: The configuration of the server is set:
- 2004-11-28 08:49:45.843: - with a remote administration with the DEFAULT password.
- 2004-11-28 08:49:45.843: - to accept any IP for remote administration
- 2004-11-28 08:49:45.844: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-28 08:49:45.844: - to create GM with level '60' when @gm is used.
- 2004-11-28 08:49:45.844: - to ALLOW new users (with _F/_M).
- 2004-11-28 08:49:45.844: - with port: 6900.
- 2004-11-28 08:49:45.844: - with the accounts file name: 'save/account.txt'.
- 2004-11-28 08:49:45.844: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-28 08:49:45.844: - to check GM accounts file modifications every 15 seconds.
- 2004-11-28 08:49:45.844: - to save password in plain text.
- 2004-11-28 08:49:45.844: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-28 08:49:45.844: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-28 08:49:45.844: - to NOT display normal parse packets on console.
- 2004-11-28 08:49:45.845: - to NOT display administration parse packets on console.
- 2004-11-28 08:49:45.845: - to NOT display char-server parse packets on console.
- 2004-11-28 08:49:45.845: - with no minimum level for connection.
- 2004-11-28 08:49:45.845: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-28 08:49:45.845: - to create new accounts with an unlimited time.
- 2004-11-28 08:49:45.845: - with control of players IP between login-server and char-server.
- 2004-11-28 08:49:45.845: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-28 08:49:45.864: The LAN configuration of the server is set:
- 2004-11-28 08:49:45.865: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-28 08:49:45.865: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-28 08:49:45.884: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-28 08:49:45.902: The login-server is ready (Server is listening on the port 6900).
- 2004-11-28 08:49:51.462: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-28 08:49:51.462: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-28 08:49:51.465: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-28 08:50:14.161: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-28 08:50:14.161: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-28 08:50:14.569: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-28 08:51:50.480: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-28 10:40:25.953: The login-server starting...
- 2004-11-28 10:40:25.953: The configuration of the server is set:
- 2004-11-28 10:40:25.953: - with a remote administration with the DEFAULT password.
- 2004-11-28 10:40:25.953: - to accept any IP for remote administration
- 2004-11-28 10:40:25.953: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-28 10:40:25.954: - to create GM with level '60' when @gm is used.
- 2004-11-28 10:40:25.954: - to ALLOW new users (with _F/_M).
- 2004-11-28 10:40:25.954: - with port: 6900.
- 2004-11-28 10:40:25.954: - with the accounts file name: 'save/account.txt'.
- 2004-11-28 10:40:25.954: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-28 10:40:25.954: - to check GM accounts file modifications every 15 seconds.
- 2004-11-28 10:40:25.954: - to save password in plain text.
- 2004-11-28 10:40:25.954: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-28 10:40:25.954: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-28 10:40:25.954: - to NOT display normal parse packets on console.
- 2004-11-28 10:40:25.954: - to NOT display administration parse packets on console.
- 2004-11-28 10:40:25.954: - to NOT display char-server parse packets on console.
- 2004-11-28 10:40:25.955: - with no minimum level for connection.
- 2004-11-28 10:40:25.955: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-28 10:40:25.955: - to create new accounts with an unlimited time.
- 2004-11-28 10:40:25.955: - with control of players IP between login-server and char-server.
- 2004-11-28 10:40:25.955: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-28 10:40:25.958: The LAN configuration of the server is set:
- 2004-11-28 10:40:25.959: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-28 10:40:25.959: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-28 10:40:25.962: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-28 10:40:25.963: The login-server is ready (Server is listening on the port 6900).
- 2004-11-28 10:40:31.420: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-28 10:40:31.420: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-28 10:40:31.422: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-28 10:40:54.173: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-28 10:40:54.173: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-28 10:40:54.525: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-28 10:59:36.792: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-28 10:59:38.687: ----End of login-server (normal end with closing of all files).
- 2004-11-28 11:08:58.250: The login-server starting...
- 2004-11-28 11:08:58.250: The configuration of the server is set:
- 2004-11-28 11:08:58.250: - with a remote administration with the DEFAULT password.
- 2004-11-28 11:08:58.250: - to accept any IP for remote administration
- 2004-11-28 11:08:58.250: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-28 11:08:58.250: - to create GM with level '60' when @gm is used.
- 2004-11-28 11:08:58.250: - to ALLOW new users (with _F/_M).
- 2004-11-28 11:08:58.251: - with port: 6900.
- 2004-11-28 11:08:58.251: - with the accounts file name: 'save/account.txt'.
- 2004-11-28 11:08:58.251: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-28 11:08:58.251: - to check GM accounts file modifications every 15 seconds.
- 2004-11-28 11:08:58.251: - to save password in plain text.
- 2004-11-28 11:08:58.251: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-28 11:08:58.251: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-28 11:08:58.251: - to NOT display normal parse packets on console.
- 2004-11-28 11:08:58.251: - to NOT display administration parse packets on console.
- 2004-11-28 11:08:58.251: - to NOT display char-server parse packets on console.
- 2004-11-28 11:08:58.251: - with no minimum level for connection.
- 2004-11-28 11:08:58.252: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-28 11:08:58.252: - to create new accounts with an unlimited time.
- 2004-11-28 11:08:58.252: - with control of players IP between login-server and char-server.
- 2004-11-28 11:08:58.252: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-28 11:08:58.253: The LAN configuration of the server is set:
- 2004-11-28 11:08:58.253: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-28 11:08:58.253: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-28 11:08:58.256: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-28 11:08:58.257: The login-server is ready (Server is listening on the port 6900).
- 2004-11-28 11:09:02.405: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-28 11:09:02.405: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-28 11:09:02.407: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-28 11:10:40.477: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-28 11:10:40.478: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-28 11:10:40.791: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-28 11:16:17.556: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-28 11:20:35.041: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-28 11:20:35.041: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-28 11:20:35.438: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-28 11:20:49.502: Char-server 'eAthena': e-mail of the account 2000003 found (ip: 127.0.0.1).
- 2004-11-28 11:20:54.555: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-28 11:20:54.556: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-28 11:20:54.878: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-28 11:26:08.860: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-28 11:26:08.860: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-28 11:26:09.298: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-28 11:37:42.407: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-28 11:37:42.407: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-28 11:37:42.940: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-28 11:56:28.201: Char-server 'eAthena': e-mail of the account 2000002 found (ip: 127.0.0.1).
- 2004-11-28 11:56:33.732: Request for connection (non encryption mode) of mc_cameri (ip: 127.0.0.1).
- 2004-11-28 11:56:33.732: Authentification accepted (account: mc_cameri (id: 2000003), ip: 127.0.0.1)
- 2004-11-28 11:56:34.129: Char-server 'eAthena': authentification of the account 2000003 accepted (ip: 127.0.0.1).
- 2004-11-28 12:05:53.857: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-28 12:05:53.857: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
- 2004-11-28 12:05:54.466: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
- 2004-11-28 12:58:27.862: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-28 12:58:27.863: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
- 2004-11-28 12:58:28.566: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
- 2004-11-28 14:15:13.227: Request for connection (non encryption mode) of genosonic (ip: 127.0.0.1).
- 2004-11-28 14:15:13.227: Authentification accepted (account: genosonic (id: 2000004), ip: 127.0.0.1)
- 2004-11-28 14:15:14.248: Char-server 'eAthena': authentification of the account 2000004 accepted (ip: 127.0.0.1).
- 2004-11-29 16:55:36.156: The login-server starting...
- 2004-11-29 16:55:36.343: The configuration of the server is set:
- 2004-11-29 16:55:36.343: - with a remote administration with the DEFAULT password.
- 2004-11-29 16:55:36.343: - to accept any IP for remote administration
- 2004-11-29 16:55:36.343: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-11-29 16:55:36.343: - to create GM with level '60' when @gm is used.
- 2004-11-29 16:55:36.343: - to ALLOW new users (with _F/_M).
- 2004-11-29 16:55:36.344: - with port: 6900.
- 2004-11-29 16:55:36.344: - with the accounts file name: 'save/account.txt'.
- 2004-11-29 16:55:36.344: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-11-29 16:55:36.344: - to check GM accounts file modifications every 15 seconds.
- 2004-11-29 16:55:36.344: - to save password in plain text.
- 2004-11-29 16:55:36.344: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-11-29 16:55:36.344: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-11-29 16:55:36.344: - to NOT display normal parse packets on console.
- 2004-11-29 16:55:36.344: - to NOT display administration parse packets on console.
- 2004-11-29 16:55:36.344: - to NOT display char-server parse packets on console.
- 2004-11-29 16:55:36.344: - with no minimum level for connection.
- 2004-11-29 16:55:36.345: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-11-29 16:55:36.345: - to create new accounts with an unlimited time.
- 2004-11-29 16:55:36.345: - with control of players IP between login-server and char-server.
- 2004-11-29 16:55:36.345: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-11-29 16:55:36.383: The LAN configuration of the server is set:
- 2004-11-29 16:55:36.383: - with LAN IP of char-server: 127.0.0.1.
- 2004-11-29 16:55:36.383: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-11-29 16:55:36.427: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-11-29 16:55:36.428: The login-server is ready (Server is listening on the port 6900).
- 2004-11-29 16:55:39.863: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-11-29 16:55:39.863: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-11-29 16:55:39.864: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-11-29 17:02:22.947: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-11-29 17:02:22.947: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-11-29 17:02:28.635: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-11-29 17:05:36.670: Char-server 'eAthena' has disconnected (ip: 127.0.0.1).
- 2004-11-29 17:05:37.048: ----End of login-server (normal end with closing of all files).
- 2004-12-04 12:14:45.701: The login-server starting...
- 2004-12-04 12:14:45.809: The configuration of the server is set:
- 2004-12-04 12:14:45.809: - with a remote administration with the DEFAULT password.
- 2004-12-04 12:14:45.809: - to accept any IP for remote administration
- 2004-12-04 12:14:45.809: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 12:14:45.809: - to create GM with level '60' when @gm is used.
- 2004-12-04 12:14:45.809: - to ALLOW new users (with _F/_M).
- 2004-12-04 12:14:45.810: - with port: 6900.
- 2004-12-04 12:14:45.810: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 12:14:45.810: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 12:14:45.810: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 12:14:45.810: - to save password in plain text.
- 2004-12-04 12:14:45.810: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 12:14:45.810: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 12:14:45.810: - to NOT display normal parse packets on console.
- 2004-12-04 12:14:45.810: - to NOT display administration parse packets on console.
- 2004-12-04 12:14:45.810: - to NOT display char-server parse packets on console.
- 2004-12-04 12:14:45.810: - with no minimum level for connection.
- 2004-12-04 12:14:45.810: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 12:14:45.811: - to create new accounts with an unlimited time.
- 2004-12-04 12:14:45.811: - with control of players IP between login-server and char-server.
- 2004-12-04 12:14:45.811: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 12:14:45.820: The LAN configuration of the server is set:
- 2004-12-04 12:14:45.821: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 12:14:45.821: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 12:14:45.863: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 12:14:45.864: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 12:16:50.673: ----End of login-server (normal end with closing of all files).
- 2004-12-04 12:30:11.405: The login-server starting...
- 2004-12-04 12:30:11.405: The configuration of the server is set:
- 2004-12-04 12:30:11.405: - with a remote administration with the DEFAULT password.
- 2004-12-04 12:30:11.405: - to accept any IP for remote administration
- 2004-12-04 12:30:11.406: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 12:30:11.406: - to create GM with level '60' when @gm is used.
- 2004-12-04 12:30:11.406: - to ALLOW new users (with _F/_M).
- 2004-12-04 12:30:11.406: - with port: 6900.
- 2004-12-04 12:30:11.406: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 12:30:11.406: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 12:30:11.406: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 12:30:11.406: - to save password in plain text.
- 2004-12-04 12:30:11.406: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 12:30:11.406: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 12:30:11.406: - to NOT display normal parse packets on console.
- 2004-12-04 12:30:11.406: - to NOT display administration parse packets on console.
- 2004-12-04 12:30:11.407: - to NOT display char-server parse packets on console.
- 2004-12-04 12:30:11.407: - with no minimum level for connection.
- 2004-12-04 12:30:11.407: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 12:30:11.407: - to create new accounts with an unlimited time.
- 2004-12-04 12:30:11.407: - with control of players IP between login-server and char-server.
- 2004-12-04 12:30:11.407: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 12:30:11.408: The LAN configuration of the server is set:
- 2004-12-04 12:30:11.408: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 12:30:11.408: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 12:30:11.411: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 12:30:11.412: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 22:27:16.546: The login-server starting...
- 2004-12-04 22:27:16.546: The configuration of the server is set:
- 2004-12-04 22:27:16.546: - with a remote administration with the DEFAULT password.
- 2004-12-04 22:27:16.546: - to accept any IP for remote administration
- 2004-12-04 22:27:16.546: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 22:27:16.546: - to create GM with level '60' when @gm is used.
- 2004-12-04 22:27:16.546: - to ALLOW new users (with _F/_M).
- 2004-12-04 22:27:16.546: - with port: 6900.
- 2004-12-04 22:27:16.546: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 22:27:16.546: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 22:27:16.546: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 22:27:16.546: - to save password in plain text.
- 2004-12-04 22:27:16.546: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 22:27:16.546: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 22:27:16.547: - to NOT display normal parse packets on console.
- 2004-12-04 22:27:16.547: - to NOT display administration parse packets on console.
- 2004-12-04 22:27:16.547: - to NOT display char-server parse packets on console.
- 2004-12-04 22:27:16.547: - with no minimum level for connection.
- 2004-12-04 22:27:16.547: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 22:27:16.547: - to create new accounts with an unlimited time.
- 2004-12-04 22:27:16.547: - with control of players IP between login-server and char-server.
- 2004-12-04 22:27:16.547: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 22:27:16.556: The LAN configuration of the server is set:
- 2004-12-04 22:27:16.556: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 22:27:16.556: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 22:27:16.570: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 22:27:16.571: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 22:27:17.003: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-12-04 22:27:17.003: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-12-04 22:27:17.011: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-12-04 22:27:37.996: Request for connection (non encryption mode) of cameri (ip: 127.0.0.1).
- 2004-12-04 22:27:37.997: Authentification accepted (account: cameri (id: 2000002), ip: 127.0.0.1)
- 2004-12-04 22:27:38.574: Char-server 'eAthena': authentification of the account 2000002 accepted (ip: 127.0.0.1).
- 2004-12-04 22:29:13.406: The login-server starting...
- 2004-12-04 22:29:13.406: The configuration of the server is set:
- 2004-12-04 22:29:13.406: - with a remote administration with the DEFAULT password.
- 2004-12-04 22:29:13.406: - to accept any IP for remote administration
- 2004-12-04 22:29:13.406: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 22:29:13.406: - to create GM with level '60' when @gm is used.
- 2004-12-04 22:29:13.406: - to ALLOW new users (with _F/_M).
- 2004-12-04 22:29:13.406: - with port: 6900.
- 2004-12-04 22:29:13.406: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 22:29:13.406: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 22:29:13.406: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 22:29:13.406: - to save password in plain text.
- 2004-12-04 22:29:13.406: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 22:29:13.406: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 22:29:13.406: - to NOT display normal parse packets on console.
- 2004-12-04 22:29:13.407: - to NOT display administration parse packets on console.
- 2004-12-04 22:29:13.407: - to NOT display char-server parse packets on console.
- 2004-12-04 22:29:13.407: - with no minimum level for connection.
- 2004-12-04 22:29:13.407: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 22:29:13.407: - to create new accounts with an unlimited time.
- 2004-12-04 22:29:13.407: - with control of players IP between login-server and char-server.
- 2004-12-04 22:29:13.407: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 22:29:13.408: The LAN configuration of the server is set:
- 2004-12-04 22:29:13.408: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 22:29:13.408: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 22:29:13.411: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 22:29:13.412: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 22:29:14.146: ----End of login-server (normal end with closing of all files).
- 2004-12-04 22:29:15.953: The login-server starting...
- 2004-12-04 22:29:15.953: The configuration of the server is set:
- 2004-12-04 22:29:15.953: - with a remote administration with the DEFAULT password.
- 2004-12-04 22:29:15.953: - to accept any IP for remote administration
- 2004-12-04 22:29:15.953: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 22:29:15.953: - to create GM with level '60' when @gm is used.
- 2004-12-04 22:29:15.953: - to ALLOW new users (with _F/_M).
- 2004-12-04 22:29:15.953: - with port: 6900.
- 2004-12-04 22:29:15.953: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 22:29:15.953: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 22:29:15.953: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 22:29:15.954: - to save password in plain text.
- 2004-12-04 22:29:15.954: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 22:29:15.954: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 22:29:15.954: - to NOT display normal parse packets on console.
- 2004-12-04 22:29:15.954: - to NOT display administration parse packets on console.
- 2004-12-04 22:29:15.954: - to NOT display char-server parse packets on console.
- 2004-12-04 22:29:15.954: - with no minimum level for connection.
- 2004-12-04 22:29:15.954: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 22:29:15.954: - to create new accounts with an unlimited time.
- 2004-12-04 22:29:15.954: - with control of players IP between login-server and char-server.
- 2004-12-04 22:29:15.955: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 22:29:15.958: The LAN configuration of the server is set:
- 2004-12-04 22:29:15.958: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 22:29:15.958: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 22:29:15.961: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 22:29:15.962: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 22:29:20.986: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-12-04 22:29:20.986: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-12-04 22:29:20.988: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-12-04 22:29:34.843: The login-server starting...
- 2004-12-04 22:29:34.843: The configuration of the server is set:
- 2004-12-04 22:29:34.843: - with a remote administration with the DEFAULT password.
- 2004-12-04 22:29:34.843: - to accept any IP for remote administration
- 2004-12-04 22:29:34.843: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 22:29:34.843: - to create GM with level '60' when @gm is used.
- 2004-12-04 22:29:34.843: - to ALLOW new users (with _F/_M).
- 2004-12-04 22:29:34.843: - with port: 6900.
- 2004-12-04 22:29:34.844: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 22:29:34.844: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 22:29:34.844: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 22:29:34.844: - to save password in plain text.
- 2004-12-04 22:29:34.844: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 22:29:34.844: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 22:29:34.844: - to NOT display normal parse packets on console.
- 2004-12-04 22:29:34.844: - to NOT display administration parse packets on console.
- 2004-12-04 22:29:34.844: - to NOT display char-server parse packets on console.
- 2004-12-04 22:29:34.844: - with no minimum level for connection.
- 2004-12-04 22:29:34.844: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 22:29:34.845: - to create new accounts with an unlimited time.
- 2004-12-04 22:29:34.845: - with control of players IP between login-server and char-server.
- 2004-12-04 22:29:34.845: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 22:29:34.846: The LAN configuration of the server is set:
- 2004-12-04 22:29:34.846: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 22:29:34.846: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 22:29:34.849: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 22:29:34.849: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 22:29:40.980: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-12-04 22:29:40.980: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-12-04 22:29:40.983: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
- 2004-12-04 22:31:44.796: The login-server starting...
- 2004-12-04 22:31:44.796: The configuration of the server is set:
- 2004-12-04 22:31:44.796: - with a remote administration with the DEFAULT password.
- 2004-12-04 22:31:44.796: - to accept any IP for remote administration
- 2004-12-04 22:31:44.796: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 22:31:44.796: - to create GM with level '60' when @gm is used.
- 2004-12-04 22:31:44.796: - to ALLOW new users (with _F/_M).
- 2004-12-04 22:31:44.796: - with port: 6900.
- 2004-12-04 22:31:44.797: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 22:31:44.797: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 22:31:44.797: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 22:31:44.797: - to save password in plain text.
- 2004-12-04 22:31:44.797: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 22:31:44.797: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 22:31:44.797: - to NOT display normal parse packets on console.
- 2004-12-04 22:31:44.797: - to NOT display administration parse packets on console.
- 2004-12-04 22:31:44.797: - to NOT display char-server parse packets on console.
- 2004-12-04 22:31:44.797: - with no minimum level for connection.
- 2004-12-04 22:31:44.797: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 22:31:44.797: - to create new accounts with an unlimited time.
- 2004-12-04 22:31:44.798: - with control of players IP between login-server and char-server.
- 2004-12-04 22:31:44.798: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 22:31:44.799: The LAN configuration of the server is set:
- 2004-12-04 22:31:44.799: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 22:31:44.799: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 22:31:44.806: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 22:31:44.806: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 22:32:11.169: ----End of login-server (normal end with closing of all files).
- 2004-12-04 22:32:23.937: The login-server starting...
- 2004-12-04 22:32:23.937: The configuration of the server is set:
- 2004-12-04 22:32:23.937: - with a remote administration with the DEFAULT password.
- 2004-12-04 22:32:23.937: - to accept any IP for remote administration
- 2004-12-04 22:32:23.937: - with the DEFAULT 'To GM become' password (gm_pass).
- 2004-12-04 22:32:23.937: - to create GM with level '60' when @gm is used.
- 2004-12-04 22:32:23.937: - to ALLOW new users (with _F/_M).
- 2004-12-04 22:32:23.937: - with port: 6900.
- 2004-12-04 22:32:23.937: - with the accounts file name: 'save/account.txt'.
- 2004-12-04 22:32:23.937: - with the GM accounts file name: 'conf/GM_account.txt'.
- 2004-12-04 22:32:23.937: - to check GM accounts file modifications every 15 seconds.
- 2004-12-04 22:32:23.937: - to save password in plain text.
- 2004-12-04 22:32:23.937: - with the unknown packets file name: 'log/login_unknown_packets.log'.
- 2004-12-04 22:32:23.937: - to SAVE only unkown packets sending by a char-server or a remote administration.
- 2004-12-04 22:32:23.938: - to NOT display normal parse packets on console.
- 2004-12-04 22:32:23.938: - to NOT display administration parse packets on console.
- 2004-12-04 22:32:23.938: - to NOT display char-server parse packets on console.
- 2004-12-04 22:32:23.938: - with no minimum level for connection.
- 2004-12-04 22:32:23.938: - to refuse adjustment (with timeadd ladmin) on an unlimited account. You must use timeset (ladmin command) before.
- 2004-12-04 22:32:23.938: - to create new accounts with an unlimited time.
- 2004-12-04 22:32:23.938: - with control of players IP between login-server and char-server.
- 2004-12-04 22:32:23.938: - with the IP security order: 'deny,allow' (allow if not deny). You refuse no IP.
- 2004-12-04 22:32:23.939: The LAN configuration of the server is set:
- 2004-12-04 22:32:23.940: - with LAN IP of char-server: 127.0.0.1.
- 2004-12-04 22:32:23.940: - with the sub-network of the char-server: 127.0.0.1/255.255.255.255.
- 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').
- 2004-12-04 22:32:23.945: read_gm_account: file 'conf/GM_account.txt' read (5 GM accounts found).
- 2004-12-04 22:32:23.946: The login-server is ready (Server is listening on the port 6900).
- 2004-12-04 22:32:27.779: Connection request of the char-server 'eAthena' @ 127.0.0.1:6121 (ip: 127.0.0.1)
- 2004-12-04 22:32:27.779: Authentification accepted (account: s1 (id: 0), ip: 127.0.0.1)
- 2004-12-04 22:32:27.781: Connection of the char-server 'eAthena' accepted (account: s1, pass: p1, ip: 127.0.0.1)
|