I wrote a script to be able to save custom keybindings to a text file, then have the game load them on start. It worked fine in A7, but since I updated to A8, it seems to cause problems...

Quote
file_str_read(filehandle,str_forward);
key_forward = key_for_str(str_forward);


The writing to file works fine, as before, but when it reads the strings from the file to load custom keybindings, the game seems to encounter very strange errors. Is there anything wrong with the way I am reading this "str_forward" string, and assigning it to the "key_forward" variable?

When no file has been saved, the game will load the default values. When this happens, everything works as it is supposed to. In that case, the script will just apply these values manually, like this:

Quote
key_forward = 17;
str_cpy(str_forward,"W");

Last edited by Dooley; 10/08/19 06:08.