Sure...
Load the data into your database, then you can dump it back out with this command
mysqldump eq [tablename] > filename.sql
That will dump all your data in that table out though, not just your updated ones. That could then be sourced into anyone elses database to load your spawns in using this line
source filename.sql inside of mysql.
|