I have two more quesions.
a) How can I add playtime + location on the save menu? I tried taking the example from the Ys demo, but it gave me errors.
B) My characters are standing with one foot forward instead of their 'standing straight' pose. I found my piece of code in the Factory demo, but I'm not sure what value I should change:
Spoiler
return result unless header
header[:characters].each_with_index do |data, i|
x = 366
y = 48
bitmap = Cache.character(data[0])
cw = bitmap.width / 12
ch = bitmap.height / 8
n = data[1]
result.push(
["$bitmap[Characters, #{data[0]}]", [x+i*47, y+1], 255, [(n%4*3+1)*cw - 10, (n/4*4)*ch, cw + 27, ch + 27]]
header[:characters].each_with_index do |data, i|
x = 366
y = 48
bitmap = Cache.character(data[0])
cw = bitmap.width / 12
ch = bitmap.height / 8
n = data[1]
result.push(
["$bitmap[Characters, #{data[0]}]", [x+i*47, y+1], 255, [(n%4*3+1)*cw - 10, (n/4*4)*ch, cw + 27, ch + 27]]

