Hi 2 all, recently I ve caught into attention this post:
https://docs.google.com/document/d/1...Q8U/edit?pli=1
It's written there how, using some applications, make different heroes speak in dota 2 when you want to call miss bottom, etc.
It's got scrypt, binding my keyboard arrow and voice key to the sound of hero. Here is the code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;--------------------------------------
;SPAM BINDS
;--------------------------------------
SetTitleMatchMode, 2 ;set to 2 for contain the title
#IfWinActive,DOTA 2 ;if the active window is DOTA 2
{
Left::
Send {Left}
Run X:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\MY SOUND CONFIGS\Tidehunter - Top Mia.wav
Send {V down} ; V is my talk button in DOTA, change this to whatever you want
Sleep 5000
Send {V up} ; same with this, change this as well
return
Down::
Send {Down}
Run X:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\MY SOUND CONFIGS\Tidehunter - Mid Mia.wav
Send {V down}
Sleep 5000
Send {V up}
return
Right::
Send {Right}
Run X:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\MY SOUND CONFIGS\Tidehunter - Bot Mia.wav
Send {V down}
Sleep 5000
Send {V up}
return
return
}
So as you see, it's dealing with letter V, that's responsible for chat in dota for me.
My problem is:
It runs wav files in winamp but in order to let other people hear it i ve got to press V button though the code implies that i don't have to do it.
Maybe someone knows, what's wrong with this code. I ll be very greatful for any help.
One more time - I enter game, i press down arrow - i hear middle is missing, i can see the message in chat, but other people don't. But if i press V button, then i press down arrow it's all working fine. So the problem is in the code. I need assistance what's wrong with it. Thanks for your help!
Respectfully, Max.
https://docs.google.com/document/d/1...Q8U/edit?pli=1
It's written there how, using some applications, make different heroes speak in dota 2 when you want to call miss bottom, etc.
It's got scrypt, binding my keyboard arrow and voice key to the sound of hero. Here is the code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;--------------------------------------
;SPAM BINDS
;--------------------------------------
SetTitleMatchMode, 2 ;set to 2 for contain the title
#IfWinActive,DOTA 2 ;if the active window is DOTA 2
{
Left::
Send {Left}
Run X:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\MY SOUND CONFIGS\Tidehunter - Top Mia.wav
Send {V down} ; V is my talk button in DOTA, change this to whatever you want
Sleep 5000
Send {V up} ; same with this, change this as well
return
Down::
Send {Down}
Run X:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\MY SOUND CONFIGS\Tidehunter - Mid Mia.wav
Send {V down}
Sleep 5000
Send {V up}
return
Right::
Send {Right}
Run X:\Program Files (x86)\Steam\steamapps\common\dota 2 beta\MY SOUND CONFIGS\Tidehunter - Bot Mia.wav
Send {V down}
Sleep 5000
Send {V up}
return
return
}
So as you see, it's dealing with letter V, that's responsible for chat in dota for me.
My problem is:
It runs wav files in winamp but in order to let other people hear it i ve got to press V button though the code implies that i don't have to do it.
Maybe someone knows, what's wrong with this code. I ll be very greatful for any help.
One more time - I enter game, i press down arrow - i hear middle is missing, i can see the message in chat, but other people don't. But if i press V button, then i press down arrow it's all working fine. So the problem is in the code. I need assistance what's wrong with it. Thanks for your help!
Respectfully, Max.