Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Maybe the OP was confusing. Let me try phrasing the question a different way.
I'm asking if there's any way to fly at a certain speed without holding a key down the whole time. For example, a way to travel at top speed without eventually slowing down if you release the W key.
I'm not asking what the fastest way to move is, I'm asking if there's a way to continue moving at more than the minimum speed, with no further inputs after accelerating to your desired speed.
If there isn't any way to do so, that's fine, but if there is I'd like to know how to do it. Hopefully that clears up any confusion.
usually as part of other changes, so you might have to look at a few flight mods to find wot suits you...or if you're able to you can get an lua for just the cruise bit and make your own mod
One script sends a 'Key Down' command to trigger the action, the second script sends a 'Key Up' command to stop the action.
So for steadily moving with standard speed (flight or walking) you need two scripts as following content (assuming fly/walk is bound to the 'W' key):
Script 1: Send("{W down}") ; holds the 'W' key down until a 'W up' command will be sent
Script 2: Send("{W up}") ; releases the 'W' key sent by the first script.
Now bind script 1 to button A, script 2 to button B.
If you press button A your ship will fly (or avatar walk) in standard speed until you press button B.
Of course you can programm a third button to send a 'Boost' command so you can fly with maximum speed or always run without having to steadily press a button.