Should have known that this would be a script thing.
Well I had someone point me in the direction to
THIS SAVEFILE SCRIPT. Just like you said, in the notes it says it needs a certain keyboard script for it to work properly. So I did some searching and found the one it said to use.
OriginalWij and Yanfly Keyboard script
So I added it just like it said, but I keep getting a error message when I start up the game.
A copy of the code:
#--------------------------------------------------------------------------
# initial module settings - Created by OriginalWij and Yanfly
#--------------------------------------------------------------------------
GetKeyState = Win32API.new("user32", "GetAsyncKeyState", "i", "i")
GetCapState = Win32API.new("user32", "GetKeyState", "i", "i")
KeyRepeatCounter = {}
module_function
#--------------------------------------------------------------------------
# alias method: update - Created by OriginalWij
#--------------------------------------------------------------------------
def update
ow_dt_i_update
for key in KeyRepeatCounter.keys
if (GetKeyState.call(key).abs & 0x8000 == 0x8000)
KeyRepeatCounter += 1 <<==== line 139
else
KeyRepeatCounter.delete(key)
end
end
end