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
My question is, how do I make it execute in every tick, as opposed to just half of them?
When the “+jump” command is used, it can’t be used again til a “-jump” command is also used; but if I put both the “+jump” and “-jump” commands within the same tick, they cancel out and have no effect.
Is there any way to circumvent this?
Is there any way to make a functional “+jump” command every tick, as opposed to just every other tick?
Thank you for your patience in reading all this :)
//Bhop.cfg:
alias +bounce “hop; firstloop”
alias -bounce “exec flop”
alias hop “exec floop”
alias secondloop “-jump; wait 1; firstloop”
bind space “+bounce”
//floop.cfg:
alias firstloop “+jump; wait 1; secondloop”
//flop.cfg:
alias firstloop “a”
What this does is alternate between “+jump” and “-jump” each tick that I hold “space” for; one tick “+jump”, one tick “-jump”, one tick “+jump”, one tick “-jump”, etc.... so I keep jumping by holding space....
(Continued in next comment)
and now i can use them
example:
alias "2keys" "bind q say hi say there"
i'm pretty sure if i put a semicolon in between the two say commands it will bind "say hi" and execute "say there". you can't use two bind commands because one will overwrite the other. how do i get around this while still using aliases?