Jump to content
  • 0

SQL: 3ceam database migration to rAthena database


xRaisen

Question


  • Group:  Members
  • Topic Count:  24
  • Topics Per Day:  0.01
  • Content Count:  175
  • Reputation:   8
  • Joined:  03/10/12
  • Last Seen:  

Hello,

We are using a 3ceam SVN til today. But we cant migrate nor upgrade it to rAthena because of due to the fact that they dont have the same SQL structures.

Im asking anyone that is willing to make a script/tools in order to migrate 3ceam to rAthena easily. If theres a manual way, I'd like to know also.

Thank you!

Link to comment
Share on other sites

11 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  392
  • Reputation:   285
  • Joined:  12/19/11
  • Last Seen:  

Skill cooldown table can be deleted, because it is not needed in rAthena.

DROP TABLE `skillcooldown`;

Not sure about other differences.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  341
  • Reputation:   43
  • Joined:  01/10/12
  • Last Seen:  

I saw these differences:


DROP TABLE `elemental`;
DROP TABLE `skillcooldown`;
ALTER table `login` CHANGE `level` `group_id` tinyint(3);

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  162
  • Reputation:   3
  • Joined:  01/23/12
  • Last Seen:  

i was planning on migrating my 3ceam to rathena too but not sure on how to migrate my sql database. thanks for the info now i will try to migrate mine. if theres any additional modification on the database kindly keep the post updated ^^ thanks again a big help

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  128
  • Reputation:   1
  • Joined:  03/19/12
  • Last Seen:  

Me too. I was planning migrating 3ceam to rAthena but I don't know too. :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  341
  • Reputation:   43
  • Joined:  01/10/12
  • Last Seen:  

Just tested it out (3ceam to rAthena).

Hope this will help.

SQL:

DROP TABLE `elemental`;
DROP TABLE `skillcooldown`;
ALTER TABLE `login` CHANGE `level` `group_id` tinyint(3);
ALTER TABLE `char` DROP `elemental_id`;
ALTER TABLE `char` ADD COLUMN `robe` smallint(6) NOT NULL default '0' AFTER `head_bottom`

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  427
  • Reputation:   123
  • Joined:  11/17/11
  • Last Seen:  

Maybe it would worth to create a wiki page, to collect all the relevant data to help users migrate from 3CeAM and eAthena.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  128
  • Reputation:   1
  • Joined:  03/19/12
  • Last Seen:  

Yea! that was a good idea for those who using 3ceam and eAthena. :P

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   0
  • Joined:  12/17/11
  • Last Seen:  

I want this too... :P

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  341
  • Reputation:   43
  • Joined:  01/10/12
  • Last Seen:  

Maybe it would worth to create a wiki page, to collect all the relevant data to help users migrate from 3CeAM and eAthena.

Great idea. Someone has to create a wiki page.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  123
  • Reputation:   4
  • Joined:  11/21/11
  • Last Seen:  

3CeaM -> rAthena

DROP TABLE `skillcooldown`;
ALTER TABLE `login` CHANGE `level` `group_id` tinyint(3) NOT NULL default '0';
ALTER TABLE `char` CHANGE `weapon` `weapon` smallint(6)  unsigned NOT NULL default '0';
ALTER TABLE `char` ADD COLUMN `robe` smallint(6) UNSIGNED NOT NULL default '0' AFTER `head_bottom`

dunno the rest. might be wrong xD.

Edited by mleo1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  54
  • Reputation:   0
  • Joined:  12/17/11
  • Last Seen:  

3CeaM -> rAthena

DROP TABLE `skillcooldown`;
ALTER TABLE `login` CHANGE `level` `group_id` tinyint(3) NOT NULL default '0';
ALTER TABLE `char` CHANGE `weapon` `weapon` smallint(6)  unsigned NOT NULL default '0';
ALTER TABLE `char` ADD COLUMN `robe` smallint(6) UNSIGNED NOT NULL default '0' AFTER `head_bottom`

dunno the rest. might be wrong xD.

is this working? have anyone tested this?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...