Install Steam
sign in
|
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

alias "-bhopleft" "-left;-moveleft";
alias "+bhopright" "+right;+moveright";
alias "-bhopright" "-right;-moveright";
alias "ON" "bind a +bhopleft;bind d +bhopright; alias BHOP OFF";
alias "OFF" "bind a -bhopleft;bind d -bhopright; alias BHOP ON;-left;-right;-moveleft;-moveright;bind d +moveright;bind a +moveleft";
alias "BHOP" "ON";
bind mouse3 "BHOP";
echo "poom is a god
#godmovement
SendMode, Input
SetBatchLines -1
CoordMode, Mouse, Screen
mouseXY(x, y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}
strafe(left)
{
moveCount := 30
sleepInterval := 2
relativeMove := 360
if (left)
{
key := "mouse"
move := -relativeMove
} else
{
key := "mouse"
move := relativeMove
}
send {%key% down}
DllCall("Sleep", "UInt", 5)
Loop, %moveCount%
{
mouseXY(move, 0)
DllCall("Sleep", "UInt", sleepInterval)
}
send {%key% up}
}
$MButton::
while getkeystate("MButton","P")
{
strafe(false)
strafe(true)
}
return
#360