[TUTORIAL] Create your EO server

Newbie Spellweaver
Joined
Dec 15, 2007
Messages
44
Reaction score
4
Firstly, I would like to thank those who made server files - Chinese community(
 
Last edited:
Re: Guide for EO server

rofl im not even going to say anything

if u ACTUALLY read the quide u will have no problems
 
Re: Guide for EO server

Oh my god theres a password when you extract the files and when I put in Test it has loads of errors someone help me and Toshi ive reported you
 
Re: Guide for EO server

This is so confusing :S

Add me on msn please [email protected] ;)

This isn't confusing. If you follow the guide step-by-step and make sure everything is done correctly, you should have no problem with it.

Oh my god theres a password when you extract the files and when I put in Test it has loads of errors someone help me and Toshi ive reported you

I was quoting @ the report part; He wasn't insulting you, he was telling you the truth. If you always can't find something, the first thing to think is- Google is my friend. The second thing is to to search, then the 3rd thing is to ask.

EDIT: After reading the GUIDE, it told me the password when you exract the files. Read the first line of it.
 
Re: Guide for EO server

:o eu demon take habbo hotel slot coool i like the game :) i play atleast once a weeeek
but your guide is very confusing i know alot about mySQL n this still doesxnt help me
 
Re: Guide for EO server

The Guide
  1. make sure you have at least 1GB ram!!!
  2. extract server files wherever you like(download ) rar password is phdev
  3. install mysql(when asked for database password use 'test'),
  4. Extract files from data.rar to mysql installation directory(C:\Program Files\MySQL\MySQL Server XX\)
  5. copy your whole installed english client to whenever you like.
  6. edit ini/GameSetUp.ini as I written before( )
  7. create client/ini/oem.ini using example I written before( )
    then you'll need to also change ini files:
    hint:
    filename -> fields to change
    client/ini/oem.ini -> Server1, ServerName1
    server/ACCServer/config.ini -> GAMESERVER, SERVERNAME
    server/GameServer/shell.ini -> GAMESERVER
    server/GameServer/config.ini -> GAMESERVER

    all those values must match one string, for example MyLocalServer(this replaces chinese characters)
  8. execute this under mysql command line client(can be found start->programs->mysql server->mysql command line)
    (use 'test' as a password)
    Code:
    SET PASSWORD FOR 'root'@'localhost' = OLD_PASSWORD('test');
    ALTER TABLE `account`.`account` MODIFY COLUMN `password` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL;
    insert into account.account (name,password,reg_date) values ('test','53b6320eb06e2c62888a6d1739cd24bd',now());
    grant all on account.* to 'ODBC'@'localhost';
    grant all on my.* to 'ODBC'@'localhost';
    • will set 'old-fashioned' mysql password
    • will change column password to 32 character varchar.
    • importantly will create new EO account 'test' with password 'test'
    • insert mysql user ODBC, which will eliminate annoying messages when running AccountServer
  9. run the server(first AccountServer.exe, then MsgServer.exe then NPCServer.exe)
  10. try to run your modified client and login with user test password test
  11. best is to create shortcut that runs soul.exe with parameter blacknull

the links are from other forum so if you have time please post again the same as you post there. it will help many people.
 
Re: Guide for EO server

So just to be sure... WHICH client should we use? Does it matter at all?
If it does could we please have a post to reflect the files used/needed?
I've followed this some what and have seen that US, BR, and CHN have been tested/used. Just wanna be clear on which one I should dl... Cause I already got enough redundant clients of MWO lying around. xD

Thanks!
 
Back