ok made it sorry i said i'm a n00b.i was changing the size of the exe and i shouldn't do that.anyway now i have another mission.
Like i said i made with AutoIt3 an autoclick0r.exe and an autobuffer.exe and finally i edited the damn Minimizer the way i wanted to.
The autoclick0r works like: many left clicks,pause then click and so on but it is very slow
The autobuffer works fine!
Now,what i wanna do is to make the clicks faster and add these 3 files into ONE launcher.Like pressing one key for the minimizer to launch another for the autoclick0r and one for the autobuffer.
Any idea how to start?
This is the script for the AutoClick0r:
MsgBox (64, "Autoclicker ", "Autoclicker By Noobwars MU Team" & @CRLF & @CRLF & "Insert Key = Autoclick" & @CRLF & "End Key = Stop Functions" & @CRLF & "Pause Key = Exit Script" & @CRLF & "" & @CRLF & "" & @CRLF & "MU Noobwars Team")
Global $NoPause
HotKeySet ("{INS}", "autoclick")
HotKeySet ("{END}", "stop")
HotKeySet ("{PAUSE}", "endscript")
While 1
Sleep(100)
WEnd
Func autoclick()
Opt("MouseClickDelay", 2)
$NoPause = 0
While $NoPause = 0
Local $pos = MouseGetPos()
MouseClick ("left", $pos[0], $pos[1], 1)
WEnd
EndFunc
Func stop()
MouseUp ("right")
$NoPause = 0
EndFunc
Func endscript()
Exit
EndFunc
Sleep (2147483647)
Autobuffer Script:
$g_szVersion = "AutoBuff By Noobwars MU Team"
If WinExists($g_szVersion) Then Exit
AutoItWinSetTitle($g_szVersion)
MsgBox (64, "AutoBuff", "AutoBuff By Noobwars MU Team" & @CRLF & "" & @CRLF & "PageUp Key = AutoBuff" & @CRLF & "" & @CRLF & "End Key = Stop Functions" & @CRLF & "Pause Key = Exit Script" & @CRLF & "" & @CRLF & "" & @CRLF & "MU Noobwars Team")
Global $NoPause
HotKeySet ("{PAUSE}", "endscript")
HotKeySet ("{PGUP}", "autobuff")
While 1
Sleep(100)
WEnd
Func autobuff()
MouseDown("right")
$NoPause = 1
While $NoPause = 1
MouseMove(1000, 10, 60)
MouseMOve(1000, 160, 60)
Sleep(10)
WEnd
EndFunc
Func endscript()
Exit
EndFunc
Sleep (2147483647)