- Joined
- Oct 31, 2015
- Messages
- 8
- Reaction score
- 2
- First Language
- English
- Primarily Uses
So I've been fiddling with some of the scripts, and I have attempted making changes with Windows_Save, but went back on it all.
I all of a sudden got an error (Mentioned Below), unable to identify the problem I just copied and pasted a default-standard save file in an unedited project over, but I got the same error.
Error occurs whenever I try to save or load
---Script Error---
Script 'Window_SaveFile' line 40: TypeError occurred.
Can't convert Symbol into Integer.
(Subject in question)
===================
#Draw Party Characters
def draw_party_characters(x, y)
header = DataManager.load_header(@file_index)
return unless header
(40) header[:characters].each_with_index do |data, i|
draw_character(data[0], data[1], x + i * 48, y)
end
end
=====================
Anyone understand the issue?
I've rarely kept any script changes, and the one's I've stuck with where status-menu options that had not been interfering before.
I all of a sudden got an error (Mentioned Below), unable to identify the problem I just copied and pasted a default-standard save file in an unedited project over, but I got the same error.
Error occurs whenever I try to save or load
---Script Error---
Script 'Window_SaveFile' line 40: TypeError occurred.
Can't convert Symbol into Integer.
(Subject in question)
===================
#Draw Party Characters
def draw_party_characters(x, y)
header = DataManager.load_header(@file_index)
return unless header
(40) header[:characters].each_with_index do |data, i|
draw_character(data[0], data[1], x + i * 48, y)
end
end
=====================
Anyone understand the issue?
I've rarely kept any script changes, and the one's I've stuck with where status-menu options that had not been interfering before.


