Welcome to the RaGEZONE - MMORPG development forums.

[TUTORIAL] 100% guide with pictures :)

This is a discussion on [TUTORIAL] 100% guide with pictures :) within the Eudemons Tutorials forums, part of the Eudemons Online category; Okey waiting for my eudemons download will be complete so im doing this to waste my time :) Since ppls ...

Page 1 of 4 1234 LastLast
Results 1 to 15 of 52
  1. #1
    Infraction Banned
    Rank
    Member
    Join Date
    Jan 2007
    Posts
    84
    Liked
    0

    [TUTORIAL] 100% guide with pictures :)

    Okey waiting for my eudemons download will be complete so im doing this to waste my time :)

    Since ppls say "ohhh its not working :( :( :(" i will make this guide with pictures how i did to get it work (its working succfully)



    1. make sure you have at least 1GB ram!!


    2. Download & extract the server files wherever you like. EU Demon server files Rar Password: phdev


    3. install mysql 4 or 5 - MySQL AB :: MySQL 5.0 Downloads

    4. set 'test' as root password in you mysql configuration wizard

    5. Extract files from data.rar to mysql installation directory(C:\Program Files\MySQL\MySQL Server XX\data)

    6. copy your whole installed english client to whenever you like(english 1079 reported to be the best) (I skipped that step)

    7. Remove those lines from (eudemons client dir - usualy c:\program files\eudemons online)\ini\GameSetUp.ini:

    Code:
    [AccountServer]
          91U=0
    and create (eudemons client dir)\ini\oem.ini (example here):

    Code:
    [Oem]
          Id=2010
          ; maybe something else can be here?
    
          [AccountSetup]
          Type=1
    
          [ServerInfo]
          URL=http://whatever you like.txt
    
          [ServerStatus]
          Link=http://whatever you like.txt
    
          [Header]
          GroupAmount=1
          Group1=GroupName
    
          [Group1]
          ServerAmount=1
    
          Server1= <<Your Server Name>>
          Ip1=127.0.0.1
          Pic1=Server1
          ServerName1= <<Your Server Name>>
    replace <<Your Server Name>> with desired server name(no spaces)
    and insert your server name in those server files:

    Code:
    (server dir)\ACCServer\config.ini -> edit GAMESERVER, SERVERNAME
              (server dir)\ACCServer\account.ini -> edit SERVERNAME
              (server dir)\GameServer\shell.ini -> edit GAMESERVER
              (server dir)\GameServer\config.ini -> edit GAMESERVER
    case of server names must match in all config files!

    8. execute this under mysql command line client, navicat, sqlyog, etc..(command line client can be found in start->programs->mysql server->mysql command line)
    (remember that password is 'test')

    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';
    this will:
    * set 'old-fashioned' mysql password
    * change column password to 32 character varchar.
    * 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 ACCServer\AccountServer.exe, then GameServer\MsgServer.exe then GameServer\NPCServer.exe)

    10. try to run your modified client and login with user test password test

    11. to run game without autopatching, create a shortcut of "Soul.exe" to Desktop, and add "blacknull" without quotes after "soul.exe" in the Target Box.


    All credits go to
    -- dastorm for the guide without pictures :p

    I really hope this is understandable :) right me if something is wrong.

    The language on my computer is Swedish so im sorry


    This steps is step by step: first picture is 1st step and so on

    step by step

    last step by step
    Attached Thumbnails Attached Thumbnails 1.jpg   2.jpg   3.jpg   4.jpg   5.jpg  

    6.jpg   7.jpg   8.jpg   9.jpg   10.jpg  

    11.jpg   12.jpg   13.jpg  
    Last edited by dastorm; 21-01-08 at 07:51 AM.

  2. #2
    Infraction Banned
    Rank
    Member
    Join Date
    Jan 2007
    Posts
    84
    Liked
    0

    Re: 100% guide with pictures :)

    Quote Originally Posted by [GMs] View Post
    quadruple post

    Yeah i know but it dident work to put pictures in the post :/ and i dont have time to post all pics in links

  3. #3
    Registered
    Rank
    Member
    Join Date
    Aug 2006
    Posts
    16
    Liked
    1

    Re: 100% guide with pictures :)

    but you had time to post 4 times...

  4. #4
    Member
    Rank
    Member
    Join Date
    Jul 2007
    Location
    Australia
    Posts
    38
    Liked
    0

    Re: 100% guide with pictures :)

    Im getting errors when assigning to OBDC the the user row doesn't exist. When i get server all up test and test won't login as user/pass says incorrect but its right in the db.

  5. #5
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Mar 2007
    Posts
    247
    Liked
    1

    Re: [GUIDE] 100% guide with pictures :)

    what is the difference with the other guide...and i think you need to update it for mysql 4

  6. #6
    Learning.
    Rank
    Member +
    Join Date
    Mar 2006
    Posts
    861
    Liked
    5

    Re: [GUIDE] 100% guide with pictures :)

    mysql 4.0 is the same thing just has to be started a different way..... and doesnt require the old password command.....
    Live And Learn
    --Currently Learning C++

  7. #7
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Mar 2007
    Posts
    247
    Liked
    1

    Re: [GUIDE] 100% guide with pictures :)

    this still doesn't work and when i start account server it will crash and give error report
    ALTER TABLE `account`.`account` MODIFY COLUMN `password` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL;

  8. #8
    Ultimate Member
    Rank
    Member
    Join Date
    Dec 2007
    Location
    Slovakia
    Posts
    170
    Liked
    4

    Re: [GUIDE] 100% guide with pictures :)

    try only
    Code:
    ALTER TABLE `account`.`account` MODIFY COLUMN `password` VARCHAR(32) NOT NULL;
    should work, however it was already 32 character when I started first time, so I think no issue here.
    Freedom to play.

  9. #9
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Mar 2007
    Posts
    247
    Liked
    1

    Re: [GUIDE] 100% guide with pictures :)

    thank you
    to bad my 9AccountServerTPA.exe crashes at start

  10. #10
    Member
    Rank
    Member
    Join Date
    Dec 2007
    Posts
    99
    Liked
    3

    Re: [GUIDE] 100% guide with pictures :)

    [HELP-ME]
    error when i paste the code:

    ALTER TABLE `account`.`account` MODIFY COLUMN `password` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL;

    ERROR 1067 (42000): Invalid default value for 'netbar_ip'

    Help me please ! ! !

  11. #11
    Cabal Station
    Rank
    Member +
    Join Date
    May 2006
    Location
    Unknown
    Posts
    423
    Liked
    8

    Re: [GUIDE] 100% guide with pictures :)

    ignore it just run your server and its done

  12. #12
    Member
    Rank
    Member
    Join Date
    Apr 2006
    Posts
    44
    Liked
    0

    Re: [GUIDE] 100% guide with pictures :)

    Hi, i tried this guide, step by step did every nd yes everything exactly like it says, now when i log in test test it says interacting with data server, then it kicks me out, it closes the game any idea why?

  13. #13
    Newbie
    Rank
    Member
    Join Date
    Feb 2009
    Posts
    1
    Liked
    0

    Re: [GUIDE] 100% guide with pictures :)

    hah how do i do download sql because it dont download at that website !

  14. #14
    Ultimate Member
    Rank
    Member
    Join Date
    Dec 2006
    Posts
    192
    Liked
    3

    Re: [GUIDE] 100% guide with pictures :)

    what client version for this?

  15. #15
    Dynamic
    Rank
    Alpha Member
    Join Date
    Jan 2005
    Location
    Estonia
    Posts
    1,759
    Liked
    43

    Re: [GUIDE] 100% guide with pictures :)

    its some old server

 

 
Page 1 of 4 1234 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •