I meant what key do you press to get the ' symbol ingame. Whichever key does that ingame should technically also return " when Shift+Key ingame.
If all else fails, you might need to make your own mod that changes the keycodes to match your layout. All the keycodes the console expects are defined in the Data/Scripts/Frames/RVscript/520_YanflyF10.rb file (see the for loop at line 300 and lines 156 to 171 for the keycodes)
Alternatively: put the code you want to execute in the clipboard and use the following code:
eval Clipboard.GetText()
Tested it with msgbox("Hello") in the clipboard and up poped a message box with the text: Hello
Thanks for the clarification. I found it. Strangely, it's
on the next key over which on my setup is the hash (pound) symbol:
# and tilde
~ on the
Shift press, whereas the actual
' key returns nothing at all, regardless of whether
Shift is held.
For some reason, in LonaRPG this key now does
' and holding Shift produces the
".
What kind of KB setup does the game think I have?
Thanks.