Hello there. I can't really think of anything to say, so I'll keep it simple.
I'm currently messing around with the save file script to get it how I like.
One of the biggest problems I'm facing right now, is that I don't know where the locations are controlled. I tried changing some stuff in Window_Savefile -
#--------------------------------------------------------------------------
# * Draw Play Time
#--------------------------------------------------------------------------
def draw_playtime(x, y, width, align)
header = DataManager.load_header(@file_index)
return unless header
draw_text(x, y, width, line_height, header[:playtime_s], 2)
I tried changing x and y to numbers...
draw_text(x, y, width, line_height, header[:playtime_s], 2)
to
draw_text(100, 90, width, line_height, header[:playtime_s], 2)
That didn't move it. It doesn't even seem like changing those does anything.
AlsoIdon'treallyknowhowtoscript.