Как играть на WASD/How to play using WASD
Приветствую! Предупреждаю сразу: чтобы изменить управление, придётся скачивать стороннюю программу. Если ты, дорогой читатель, не хочешь этого делать – закрой руководство, оно тебе не поможет.
Итак, приступим.
Обязательно называем файл таким образом, чтобы он оканчивался на .ahk , например:
#IfWinActive UNDERTALE w::Up
a::Left
s::Down
d::Right
>
В любой момент скрипт можно отключить в трее
(нажав на эту стрелку). Надеюсь, моё руководство помогло. Приятной игры!
p.s. если кому-то понравились мои обои, скачать их можно вот тут [akspic.ru]
Hi iM tEm
Greetings! I want to warn you right away: you have to download one program in order to change the controls. If you don’t wanna do it, you should close this guide as far as it won’t help.
Well, let’s start!
#IfWinActive UNDERTALE w::Up
a::Left
s::Down
d::Right
>
At any time, the script can be disabled in the tray
(by pressing on that arrow).
I hope my guide helped. Have a nice game!
p.s. if you like my wallpaper , you can download it here [akspic.ru]
Also feel free to correct my grammar spelling as far as I’m not a native speaker.
Undertale
- Genre : Early Access, Free to Play, Indie, RPG, RPG Games
- Language : Russian
- Categories : Modding or Configuration
Support Us
SteamSolo is a community website and is not affiliated with Valve or Steam. All times on the site are UTC. Steam and the Steam logo are trademarks of Valve Corporation. All other trademarks are property of their respective owners.
Как поменять управление в андертейл на wasd
; UNDERTALE WASD keybinding v1.0.1
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#HotkeyInterval 1000 ; measured in ms
; prevents script from bugging out when you hit keys in rapid succesion
#IfWinActive, UNDERTALE ahk_class YYGameMakerYY
^!s::Suspend ; if user hits control+alt+s it will suspend the program
^!e::ExitApp ; if user hits control+alt+e then exit the script
w::Up
a::Left
s::Down
d::Right
l::z
k::x
m::c
#IfWinActive
; putting #IfWinActive at the end of the script should stop this script from messing with any other programs
как поменять управление в undertale я знаю что в меню управление нельзя менять может можно в файлах игры подскажите
Ну как бы можно, но почти при любом изменении (100% при изменении файла сохранения) будет пасхальная концовка с сансом: «эй!»
«Я не знаю что ты сделал, но я понимаю что что-то не так!»
«Ты больше не зайдешь в этот мир, грязный хакер»
И игру крашнет. Так что не пытайся. Тем более там взаимодействие с каждым предметом отдельно привязано к каждой кнопке, т. е. тебе придется поработать.
Остальные ответы
как поменять упровление в андертейл на wasd ?
Артём ФилимоновУченик (221) 3 года назад
нужно скачать программу AutoHotcey ссылка: https://www.autohotkey.com
и создать скрипт
вот:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#HotkeyInterval 1000 ; Prevent Script from bugging out when you press the keys too quickly in succession.
Esc::ExitApp ; Exit script with Escape key
^!s::Suspend ; Suspend script with Ctrl+Alt+S
w::Up
s::Down
a::Left
d::Right
LButton::z
RButton::x
MButton::c
макс максичУченик (138) 1 год назад
зачем столько букав. просто
#IfWinActive UNDERTALE
Как сменить управление в игре?
Итак, вы включили Limbo и выяснили, что управление в игре рассчитано только на крестовину, а вам хочется поиграть на вашей любимой WASD-раскладке. Делаем следующим образом:
1. Заходим в папку с игрой.
2. Находим там текстовый файл с именем «settings».
3. Окрываем его.
4. Делаем соответсвующие замены:
Видим первый раздел # User control settings #, в его части меняем :
up = «UP» на up = «W»
down = «DOWN» на down = «S»
left = «LEFT» на left = «A»
right = «RIGHT» на right = «D»
ну если хотите можете поменять последний параметр по вашему усмотрению.
Вуаля! Теперь работает WASD-раскладка управления.
Приятной игры.