a little help pls i cant use my arrow keys are broken making it impossible to play can you make a alternate controls?
Viewing post in The Last Panderling II comments
Thanks for taking a look at my game! It's possible to change the controls by manually editing a settings file in your local AppData folder. You can find it here, just replace ${USER_NAME} with your current Windows user name and make sure that hidden files are visible in your Windows Explorer settings:
C:\Users\${USER_NAME}\AppData\Local\LastPanderling2/Settings.xml
When you open up this file in Notepad or another text editor, it should have a section like this:
<KeyboardBindings>
<Up>Up</Up>
<Right>Right</Right>
<Down>Down</Down>
<Left>Left</Left>
<Attack>Z</Attack>
<Interact>X</Interact>
<Dodge>C</Dodge>
<Confirm>Enter</Confirm>
<Cancel>Escape</Cancel>
<Menu>Escape</Menu>
</KeyboardBindings>
Just change the Up/Right/Down/Left values like so to use WASD movement:
<KeyboardBindings>
<Up>W</Up>
<Right>D</Right>
<Down>S</Down>
<Left>A</Left>
<Attack>Z</Attack>
<Interact>X</Interact>
<Dodge>C</Dodge>
<Confirm>Enter</Confirm>
<Cancel>Escape</Cancel>
<Menu>Escape</Menu>
</KeyboardBindings>