Hey All,
Since I don't really need this anymore and maxed all my weapons sharing my scripts I made for personal use.
Basically you want to put this in a text file and save as name.ahk and run it.
You will need to install autohotkey on your computer, just google it.
- Make sure the weapon you with to level is in the 1st custom class.
- You want to use the Support Class because of extra Lethal (use Molotov)
- You want to use Decoy as Tactical otherwise u get no XP.
- Start Shipment 24/7
- Load the script
- Press F1 to start (F11 = Pause / F12 = Stop)
Basically all this script does is move around a bit throw Decoy and kill himself.
The Decoy gives you low XP every time your teammates kill a enemy within range.
The script is written for resolution 2560x1440 so you might need to edit some coordinate values below, or if people interest ill get those coords and supply it for u guys.
I will include a script to get the mouse location (bottom quote).
You can also level secondary weapons with this, its not super efficient since its timing based but it works while u AFK.
Remove /* and */ in the script to also get secondary weapon XP.
This is not detected by anything, build with mindset to keep it stupid and timing based.
I am running this every night for the past week without any bans or suspensions, I was level 100 and did go to 250 in the past days without any bans or whatever.
But still use at your own risk.
AFK SCRIPT
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; SPANKY'S MW2 WEAP LEVEL SCRIPT ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;
;;; START LOOP ;;;
;;;;;;;;;;;;;;;;;;;;;;
F1:: ;START THE LOOP
sleep 50
Loop,
{
;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; THROW TACTICAL ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;
send, q
sleep 1000
;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; CHOOSE CLASS ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;
MouseClick, left, 608, 1380 ; clicks on random position outside of the custom class button
sleep 2000
MouseClick, left, 150, 1240 ; clicks on custom class 1
sleep 2000
;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; SECONDARY WEAPON XP ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;
;REMOVE "/*" & "*/" on line 40 & 65 to add secondairy weapon XP
/*
send, 1
sleep 1000
Send, q
sleep 1000
Send, {w DOWN}
sleep 500
Send, {w UP}
sleep 1000
Send, {s DOWN}
sleep 500
Send, {s UP}
;Throw Tactical + Walk
sleep 1000
Send, q
sleep 1000
Send, {w DOWN}
sleep 500
Send, {w UP}
sleep 1000
Send, {s DOWN}
sleep 500
Send, {s UP}
sleep 1000
*/
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; THROW TACTICAL + WALK ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Send, q
sleep 1000
Send, {w DOWN}
sleep 500
Send, {w UP}
sleep 1000
Send, {s DOWN}
sleep 500
Send, {s UP}
;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; AFK KICK REJOIN ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;
MouseClick, left, 912, 839 ; Presses OK if afk kicked
sleep 1000
MouseClick, left, 1600, 1150 ; Presses the 24/7 shipment button in featured game modes.
sleep 1000
MouseClick, left, 435, 1185 ; Presses the yellow start game button
sleep 1000
;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; THROW LETHAL ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;
Send, e
sleep 2000
}
F11::PAUSE
F12::exitapp
SCRIPT TO GET MOUSE COORDS
F1:: ;GET MOUSE LOCATION
MouseGetPos, xpos, ypos
Msgbox, The cursor is at X%xpos% Y%ypos%.
; This example allows you to move the mouse around to see
; the title of the window currently under the cursor:
#Persistent
SetTimer, WatchCursor, 100
return
WatchCursor:
MouseGetPos, , , id, control
WinGetTitle, title, ahk_id %id%
WinGetClass, class, ahk_id %id%
ToolTip, ahk_id %id%`nahk_class %class%`n%title%`nControl: %control%
return
F12::exitapp