Reggygoodfeels Posted December 14, 2016 Report Share Posted December 14, 2016 I am a total noob at all of this and just recently compiled my own Trinitycore server, but I need help migrating all the character data and stuff from Jeuties repack to my own server. Link to comment Share on other sites More sharing options...
CDawg Posted December 16, 2016 Report Share Posted December 16, 2016 Glad you steered away from repacks... Unfortunately, the only way to do this is by using scripts. Obviously, you can't just dump tables from DB to another that are completely architected with the differences. The more differences between the table structures, the more work you have to do to manually import each character. Tips: do a "desc <TC character table name>;" in mysql client. then do the same to the repack table. "desc <my repack table>;" You will have to do that to each table in the characters schema, then modify the differences in your dump (unsafe route). Otherwise, like I said, just a script for each table, import one row of character to all tables that match or have similarities. Then log into that specific character and test it out. if things are broken, or some data is missing, then it was an invalid entry. Try and try again, until the one character looks to be working correctly with all the necessary items. Then you can import all of your other characters. Good luck! 1 Link to comment Share on other sites More sharing options...
Maibenrai Posted December 16, 2016 Report Share Posted December 16, 2016 IIRC this is good for that https://www.toadworld.com/m/freeware/1469 - if not, don't shoot me. Link to comment Share on other sites More sharing options...
Reggygoodfeels Posted December 16, 2016 Author Report Share Posted December 16, 2016 Thanks cdawg for telling me all of this but like I said I'm kind of a noob when it comes to mysql, so could you point me to some sort of script or explain what do? Thanks in advance Link to comment Share on other sites More sharing options...
Recommended Posts