Chaos Project

RPG Maker => RPG Maker Scripts => Script Troubleshooting => Topic started by: Stray on May 29, 2013, 05:13:51 pm

Title: [SOLVED]Incompatible: Own Title Screen + Chaos Project Save Layout
Post by: Stray on May 29, 2013, 05:13:51 pm
EDIT: It's not incompatible. Found the solution my self. I had to add a line in the Save Layout-Script:
Comment from Chaos Project Save Layout: ShowHide

Now, search for the following or similar in Scene_Title:

   @continue_enabled = false
   for i in 0..3
     if FileTest.exist?("Save#{i+1}.rxdata")
       @continue_enabled = true
     end
   end


Comment those lines and add this line:

   @continue_enabled = (0...CPSL::Save_number).any? {|i|FileTest.exist?(CPSL.make_savename(i))}




Old Stuff: ShowHide
Heretic's Animated Title Screen and Chaos Project Save Layout are incompatible. Is there a way to make it?

Following (small?) Error accurs if I try to open the Save Layout:
(http://oi44.tinypic.com/1zww8o.jpg)

A short demo with the scripts in it.
Error Demo Download (http://www.file-upload.net/download-7654315/Event-Title-Error.zip.html)

Used Scripts:
Heretics Event Menu Script (http://forum.chaos-project.com/index.php/topic,12465.0.html)
CP Save Layout (http://forum.chaos-project.com/index.php/topic,796.0.html)