Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: Zexion on May 11, 2014, 01:01:50 pm

Title: rmxos database error
Post by: Zexion on May 11, 2014, 01:01:50 pm
For some reason, I get an error saving data from the server.
(http://puu.sh/8IfpR/04962597f1.png)

The project is literally the default that comes with rmxos with a custom tileset and character. All scripts are the ones from the demo, so I'm not sure what I'm missing
Title: Re: rmxos database error
Post by: Blizzard on May 11, 2014, 02:13:51 pm
Are you using LEGACY_SAVE_METHOD?

EDIT: If yes, run this SQL script on the database.

Code: sql
ALTER TABLE `save_data` CHANGE `data_value` `data_value` mediumblob NOT NULL;


I will update RMX-OS to v2.04.
Title: Re: rmxos database error
Post by: Zexion on May 11, 2014, 03:10:55 pm
LEGACY_SAVE_METHOD  was set to false, but I changed it to true and ran the script and that fixed it :D
Thanks for the prompt reply blizz!