Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; This code edit and compiled by ofiro aka marsi
- ; ISRAEL (C) #1
- /*
- Use ScrollLock to toggle this script on/off
- */
- ;splashtext
- Progress, B1 w400 cwFFFFFF fs18 zh0, Use ScrollLock to toggle the script`n On/Off, , , Arial
- Sleep 3000
- Progress, Off
- ~Tab::
- if ( GetKeyState("ScrollLock", "T") ) ; this will be 'true' if ScrollLock is toggled 'on'
- Suspend, On
- Else
- send {}
- return
- ~Enter::Suspend, Off
- ;Wall Grab
- $c::
- if ( GetKeyState("ScrollLock", "T") ) ; this will be 'true' if ScrollLock is toggled 'on'
- {send, {x down}
- sleep, 10
- send, {x up}
- sleep, 25
- send, {x down}
- sleep, 10
- send, {x up}
- sleep, 300
- }
- else send z
- return
- ;Double kick
- $z::
- if ( GetKeyState("ScrollLock", "T") ) ; this will be 'true' if ScrollLock is toggled 'on'
- {
- send, {x down}
- sleep, 53
- send, {x up}
- sleep, 53
- send, {x down}
- sleep, 53
- send, {x up}
- sleep, 53
- }
- else send c
- return
- ;startup for RED
- F1::
- sleep 1000
- {
- send {Right Down}
- sleep, 700
- send {Right Up}
- send {Down Down}
- sleep, 1100
- send {Down Up}
- send {Up Down}{Right Down}
- sleep, 1630
- send {Up Up}{Right Up}
- send {Left Down}{Down Down}
- sleep, 100 ;200
- send {Left Up}{Down Up}
- ; The Fake ^
- send {Left Down}{Up Down}
- sleep, 50
- send {Left Up}{Up Up}
- send {Up Down}
- sleep, 52
- send {Up Down}{Right Down}
- sleep 190
- send {Up Up}{Right Up}
- send {Right Down}
- sleep 10
- send {Right Up}
- send, {x down}
- sleep, 1
- send, {x up}
- send {Right Down}
- sleep, 500
- send {Right Up}
- send {Right Down}{Down Down}
- sleep, 400
- send {Right Up}{Down Up}
- }
- return
- ;startup for BLUE
- F2::
- sleep 1000
- {
- send {Left Down}
- sleep, 700
- send {Left Up}
- send {Down Down}
- sleep, 1100
- send {Down Up}
- send {Up Down}{Left Down}
- sleep, 1630
- send {Up Up}{Left Up}
- send {Right Down}{Down Down}
- sleep, 100 ;200
- send {Right Up}{Down Up}
- ; The Fake ^
- send {Right Down}{Up Down}
- sleep, 50
- send {Right Up}{Up Up}
- send {Up Down}
- sleep, 52
- send {Up Down}{LeftDown}
- sleep 120
- send {Up Up}{Left Up}
- send {Left Down}
- sleep 10
- send {Left Up}
- send, {x down}
- sleep, 1
- send, {x up}
- send {Left Down}
- sleep, 400
- send {Left Up}
- send {Left Down}{Down Down}
- sleep, 100
- send {Left Up}{Down Up}
- send {Left Down}
- sleep, 500
- send {Left Up}
- }
- return
- ; Note: From now on whenever you run AutoHotkey directly, this script
- ; will be loaded. So feel free to customize it to suit your needs.
- ;Hoykey Scrollock - To Turn on / off the script
- ;Hotkey Tab - To Suspend the script
- ;Hotkey Enter - To Resume the script
- ;Hotkey C - To grab the ball from the closest wall
- ;Hotkey Z - To double kick ball with the weight angel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement