[SOLVED]Incompatible: Own Title Screen + Chaos Project Save Layout

Started by Stray, May 29, 2013, 05:13:51 pm

Previous topic - Next topic

Stray

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:


A short demo with the scripts in it.
Error Demo Download

Used Scripts:
Heretics Event Menu Script
CP Save Layout


I'm very grateful to you all for your great help.