Jump to content

Recommended Posts

Posted

can someone fix this and ....

; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author:        A.N.Other <myemail@nowhere.com>
;
; Script Function:
;   Template AutoIt script.
;
; ----------------------------------------------------------------------------

; Script Start - Add your code below here


; Script Start - Add your code below here

MsgBox(1, "Auto-Heal", "F5 - 15 | F6 - 30 | F7 - 45 | F8 - 1MINUTE | F9 - 1.15 | F10 - 1.30 | F11 - 1.45 | F12 - 2MINUTES | NUMPAD0 - STOP ALL | NUMPAD1 - LEFTCLIC |K| NUMPAD2 - RIGHTCLICK | NUMPAD3 - AUTOLOOT | Made By MJB Crew | NUMPAD0 StopAll NUMPAD5, Terminate ALL | NUMPAD1 LeftClick |NUMPAD2 RightClick |NUMPAD3 AutoLoot |"

HotKeySet("{F5}", "FFFFF")
HotKeySet("{F6}", "FFFFFF")
HotKeySet("{F7}", "FFFFFFF")
HotKeySet("{F8}", "FFFFFFFF")
HotKeySet("{F9}", "FFFFFFFFF")
HotKeySet("{F10}", "FFFFFFFFFF")
HotKeySet("{F11}", "FFFFFFFFFFF")
HotKeySet("{F11}", "FFFFFFFFFFFF")
HotKeySet("{NUMPAD0}", "StopAll")
HotKeySet("{NUMPAD5}", "Terminate")
HotKeySet("{NUMPAD1}", "LeftClick")
HotKeySet("{NUMPAD2}", "RightClick")
HotKeySet("{NUMPAD3}", "AutoLoot")




TrayTip("MADE BY MJB CREW )", "Go to MPC Forums , for more updates.", 3, 2)

Func FFFFF ()
While 1
Send("Q")
Sleep(15000)
WEnd
EndFunc

Func FFFFFF ()
While 1
Send("Q")
Sleep(30000)
WEnd
EndFunc

Func FFFFFFF ()
While 1
Send("Q")
Sleep(45000)
WEnd
EndFunc

Func FFFFFFFF ()
While 1
Send("Q")
Sleep(60000)

WEnd
EndFunc

Func FFFFFFFFF ()
While 1
Send("Q")
Sleep(75000)
WEnd

EndFunc

Func FFFFFFFFFF ()
While 1
Send("Q")
Sleep(90000)
WEnd
EndFunc

Func FFFFFFFFFFF ()
While 1
Send("Q")
Sleep(105000)
WEnd
EndFunc

Func FFFFFFFFFFFF ()
While 1
Send("Q")
Sleep(120000)
WEnd
EndFunc

Func StopAll ()
While 1
Sleep(1)
WEnd
EndFunc

Func Terminate ()
Exit
EndFunc

Func LeftClick ()
While 1
MouseDown("left")
Sleep(25)
MouseUp("left")
WEnd
EndFunc

Func RightClick ()
While 1
MouseDown("Right")
Sleep(25)
MouseUp("Right")
WEnd
EndFunc

Func AutoLoot ()
While 1
Send(" ")
WEnd
EndFunc

While 1
Sleep(1)
WEnd
Posted

I can guess what this script does, but just for the sake of troubleshooting.

Replace this code:

MsgBox(1, "Auto-Heal", "F5 - 15 | F6 - 30 | F7 - 45 | F8 - 1MINUTE | F9 - 1.15 | F10 - 1.30 | F11 - 1.45 | F12 - 2MINUTES | NUMPAD0 - STOP ALL | NUMPAD1 - LEFTCLIC |K| NUMPAD2 - RIGHTCLICK | NUMPAD3 - AUTOLOOT | Made By MJB Crew | NUMPAD0 StopAll NUMPAD5, Terminate ALL | NUMPAD1 LeftClick |NUMPAD2 RightClick |NUMPAD3 AutoLoot |"

HotKeySet("{F5}", "FFFFF")
HotKeySet("{F6}", "FFFFFF")
HotKeySet("{F7}", "FFFFFFF")
HotKeySet("{F8}", "FFFFFFFF")
HotKeySet("{F9}", "FFFFFFFFF")
HotKeySet("{F10}", "FFFFFFFFFF")
HotKeySet("{F11}", "FFFFFFFFFFF")
HotKeySet("{F11}", "FFFFFFFFFFFF")
HotKeySet("{NUMPAD0}", "StopAll")
HotKeySet("{NUMPAD5}", "Terminate")
HotKeySet("{NUMPAD1}", "LeftClick")
HotKeySet("{NUMPAD2}", "RightClick")
HotKeySet("{NUMPAD3}", "AutoLoot")

TrayTip("MADE BY MJB CREW )", "Go to MPC Forums , for more updates.", 3, 2)

with this

MsgBox(0, "Auto-Heal", "F5 - 15 | F6 - 30 | F7 - 45 | F8 - 1MINUTE | F9 - 1.15 | F10 - 1.30 | F11 - 1.45 | F12 - 2MINUTES | NUMPAD0 - STOP ALL | NUMPAD1 - LEFTCLIC |K| NUMPAD2 - RIGHTCLICK | NUMPAD3 - AUTOLOOT | Made By MJB Crew | NUMPAD0 StopAll NUMPAD5, Terminate ALL | NUMPAD1 LeftClick |NUMPAD2 RightClick |NUMPAD3 AutoLoot |", "Go to MPC Forums , for more updates.")

HotKeySet("{F5}", "FFFFF")
HotKeySet("{F6}", "FFFFFF")
HotKeySet("{F7}", "FFFFFFF")
HotKeySet("{F8}", "FFFFFFFF")
HotKeySet("{F9}", "FFFFFFFFF")
HotKeySet("{F10}", "FFFFFFFFFF")
HotKeySet("{F11}", "FFFFFFFFFFF")
HotKeySet("{F11}", "FFFFFFFFFFFF")
HotKeySet("{NUMPAD0}", "StopAll")
HotKeySet("{NUMPAD5}", "Terminate")
HotKeySet("{NUMPAD1}", "LeftClick")
HotKeySet("{NUMPAD2}", "RightClick")
HotKeySet("{NUMPAD3}", "AutoLoot")

Spend some time to understand the changes. AutoIt can be used for lots of other tasks too.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...