Jump to content

MUonline


TigPT
 Share

Recommended Posts

I see a lot of post from ppl looking for scripts that works with MUonline game.. so i made this one..

I at the moment cant get pixels colors because of the new gameguard update, but this is very useful scripts.

If some one find a way to get colors, i appreciate the help!

any change in scripts or new ones, or even a "thks" reply will be useful =P

Minimizers:

Travis (travis needs Microsoft .NET Framework Version 1.1, if you don't have.. may download it here)

WinMuSiN

Scripts:

All old scrips work.. just change name from JoyTwoKey.exe to Pinnacle.exe

EE script

AE script (work nice for DK and DW, just second mouse key all around char and loot)

Hybrid Elf script (do not know if work good.. long time no use it)

Download (all scripts with Travis (minimizer) inside) 369Kb only

Any problem with my scripts or suggestions just post.. i change them faster as i can.. if you are afraid of keyloger or something just can scan them, but i made them only in notepad with AutoIt program, so can truest, there are nothing there!!

Link to comment
Share on other sites

  • 2 weeks later...

My friend found one nice online game called MuOnline ....... He played it for some time....A year....& now he has several mouses broken & his fingers are in pain...So he asked me to make small program..autoclikker.....

Well I thought I chould use that travis thing & let it eat that Gameguard but it seems that only windows mode is working & none of your scripts work. Can you tell me how did you manage to make your klikker to work?

Edited by chie
Link to comment
Share on other sites

Cuz GG blocks all mouse input and key presses that arent directly from the mouse/keyboard. GG is magical because it has direct access to hardware.

That is sad, now his fingers wont stop hurting... :D .Well unless he stops playing that game, but this is, to be, unlikely to happen :P
Link to comment
Share on other sites

try proxying, then sending the skill packet over and over :P learn ...

cant acess with proxys, alredy other Hacks used proxy packs enjection now duesnt work anymore..

this macros work!

see them help ballons, and just use Num 7 and Num 9 for basic works..

name of program need be Pinnacle.exe, or not bypass GG..

i got everthing there working.. just can't get a way got see pixel colors from travis.. that was able before last GG update.. there are anyway to get pixels colors not from that window but from some uper level, like vga.. intanctly before go to screen.. need have a way to get them..

some ppl get way to read even words from game with travis.. they say that is with a dll made in C++.. but i cant get it.. and the ones that have it, keep it in secret to GG dont get it and find a way to block it.... =\

Link to comment
Share on other sites

EDIT2: All should Work now!

Thank you for Reply I understand the Trick now, The mouse must move & the file name must be Pinnacle.exe or the clicker wont work....It started working, after I reinstalled Framework2.0...

Well I made this Wery simple but it is wery practical & has only 5 main functions: All hotkeys can be set Custom!

To start Run First pinnacle.exe

1) Move around (by holding down 1 or both mouse Buttons)

2) Pick up items & money on the ground Automatically ( By looping space key )

2) If monster is selected = attack it (No mouseclicks are required)

4) Autoclicker (For statpoint adding)

5) User Can set His/Her own hotkeys

6) Log in when login screen is displayed (Default ALT+Enter)

EXE 2

1) AOE any range skill....

Once mouse button is pressed down(by hotkey) simply press the mouse button you want to release & it will release that mouse button. & once it starts looping space the tray icon will start blinking.

Used also WinMuSiN & tested it a little bit. Was working pretty nicely. I hope Her Fingers Will stop hurting now :rolleyes:

Exe & Source files are zipped

[autoit]$Pinnacle = "Pinnacle"

If WinExists($Pinnacle) Then

MsgBox(0,"","Already Running",1)

Exit ; It's already running

EndIf

AutoItWinSetTitle($Pinnacle)

#include <GUIConstants.au3>

#include <IE.au3>

Opt ("MouseClickDelay", 80)

Opt("GUIOnEventMode", 1) ; Change to OnEvent mode

Opt("TrayMenuMode",1) ; Default tray menu items (Script Paused/Exit) will not be shown

Opt("TrayOnEventMode",1)

WinSetOnTop("MU", "", 0) ; 0 MU Window will not always be ON top( 0 = remove on top flag)

if not FileExists(@ScriptDir & "/pinnacle2/config.ini") Then ; Writing Default Values into Ini file

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownLeft","{F5}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownRight","{F6}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "GetItems","{F8}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "Clicker","{F9}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "StopGetitemsAndKlicker","{F10}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "EXIT","+{esc}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "login_Hotkey","!{enter}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "Default_Mouse","Left")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "AOE-CloseRange","{numpad1}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "AOE-MiddleRange","{numpad2}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "AOE-MaxRange","{numpad3}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "AOE_Enable","!{numpadsub}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "AOE_Disable","{numpadsub}")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "AOE_stop","{numpad0}")

EndIf

; Read ini file so GUI can display read DATA

$iniread_ComboKey_F5 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownLeft","")

$iniread_ComboKey_F6 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownRight","")

$iniread_ComboKey_F8 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "GetItems","")

$iniread_ComboKey_F9 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "Clicker","")

$iniread_ComboKey_F10 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "StopGetitemsAndKlicker","")

$iniread_ComboKey_EXIT = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "EXIT","")

$iniread_Default_Mouse = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "Default_Mouse","")

$iniread_ComboKey_login = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "login","")

$iniread_ComboKey_login_Hotkey = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "login_Hotkey","")

HotKeySet($iniread_ComboKey_F5, "_MouseDown_Left")

HotKeySet($iniread_ComboKey_F6, "_MouseDown_Right")

HotKeySet($iniread_ComboKey_F8, "_GetItems")

HotKeySet($iniread_ComboKey_F9, "_Clicker")

HotKeySet($iniread_ComboKey_F10, "_Stop_Getitems_And_Klicker")

HotKeySet($iniread_ComboKey_login_Hotkey, "_Login")

HotKeySet($iniread_ComboKey_EXIT, "_EXIT") ;Shift + Esc = Exit prog

;~ MAINGUI

;~ ---------------------------------------------------------------------------------------------------------

$Mainwindow = GUICreate("SaveTheMouse", 330, 270) ;Width , Hight

$Button_Register_Hotkeys = GUICtrlCreateButton("Enable", 220, 10, 90, 25) ;Button1

GUICtrlSetState(-1,$GUI_DISABLE) ; disabling Button

$Button_UnRegister_Hotkeys = GUICtrlCreateButton("Disable", 220, 40, 90, 25) ;Button2

;~ ---------------------------------------------------------------------------------------------------------

$Label_F5 = GUICtrlCreateLabel("MouseDown left:", 10, 10)

$ComboKey_F5 = GUICtrlCreateCombo($iniread_ComboKey_F5, 110, 9, 100, 21)

GUICtrlSetData(-1, "{F1}|{F2}|{F3}|{F4}|{F5}|{F6}|{F7}|{F8}|{F9}|{F10}|{F11}|{F12}|{NUMPAD1}|{NUMPAD2}|{NUMPAD3}|{NUMPAD4}|{NUMPAD5}|{NUMPAD6}|{NUMPAD7}|{NUMPAD8}|{NUMPAD9}|{NUMPADDIV}|{NUMPADMULT}|{NUMPADSUB}|{NUMPADADD}|{NUMPADDOT}|{SPACE}|{ENTER}|{BACKSPACE}|{DELETE}|{UP}|{DOWN}|{LEFT}|{RIGHT}|{HOME}|{END}|{ESC}|{INSERT}|{PGUP}|{PGDN}|{TAB}|{PRINTSCREEN}|{PAUSE}|{CAPSLOCK}|1|2|3|4|5|6|7|8|9|0|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|w|x|y|z", "")

;~ ---------------------------------------------------------------------------------------------------------

$Label_F6 = GUICtrlCreateLabel("MouseDown Right:", 10, 36)

$ComboKey_F6 = GUICtrlCreateCombo($iniread_ComboKey_F6, 110, 35, 100, 21)

GUICtrlSetData(-1, "{F1}|{F2}|{F3}|{F4}|{F5}|{F6}|{F7}|{F8}|{F9}|{F10}|{F11}|{F12}|{NUMPAD1}|{NUMPAD2}|{NUMPAD3}|{NUMPAD4}|{NUMPAD5}|{NUMPAD6}|{NUMPAD7}|{NUMPAD8}|{NUMPAD9}|{NUMPADDIV}|{NUMPADMULT}|{NUMPADSUB}|{NUMPADADD}|{NUMPADDOT}|{SPACE}|{ENTER}|{BACKSPACE}|{DELETE}|{UP}|{DOWN}|{LEFT}|{RIGHT}|{HOME}|{END}|{ESC}|{INSERT}|{PGUP}|{PGDN}|{TAB}|{PRINTSCREEN}|{PAUSE}|{CAPSLOCK}|1|2|3|4|5|6|7|8|9|0|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|w|x|y|z", "")

;~ ---------------------------------------------------------------------------------------------------------

$Label_F8 = GUICtrlCreateLabel("Get CrapOnGround:", 10, 62)

$ComboKey_F8 = GUICtrlCreateCombo($iniread_ComboKey_F8, 110, 61, 100, 21)

GUICtrlSetData(-1, "{F1}|{F2}|{F3}|{F4}|{F5}|{F6}|{F7}|{F8}|{F9}|{F10}|{F11}|{F12}|{NUMPAD1}|{NUMPAD2}|{NUMPAD3}|{NUMPAD4}|{NUMPAD5}|{NUMPAD6}|{NUMPAD7}|{NUMPAD8}|{NUMPAD9}|{NUMPADDIV}|{NUMPADMULT}|{NUMPADSUB}|{NUMPADADD}|{NUMPADDOT}|{SPACE}|{ENTER}|{BACKSPACE}|{DELETE}|{UP}|{DOWN}|{LEFT}|{RIGHT}|{HOME}|{END}|{ESC}|{INSERT}|{PGUP}|{PGDN}|{TAB}|{PRINTSCREEN}|{PAUSE}|{CAPSLOCK}|1|2|3|4|5|6|7|8|9|0|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|w|x|y|z", "")

;~ ---------------------------------------------------------------------------------------------------------

$Label_F9 = GUICtrlCreateLabel("Clicker:", 10, 88)

$Radio_Left = GUICtrlCreateRadio("L",47,87,25)

if $iniread_Default_Mouse = "Left" Then GUICtrlSetState(-1,$GUI_CHECKED)

$Radio_Right = GUICtrlCreateRadio("R",75,87,28)

if $iniread_Default_Mouse = "Right" Then GUICtrlSetState(-1,$GUI_CHECKED)

$ComboKey_F9 = GUICtrlCreateCombo($iniread_ComboKey_F9, 110, 87, 100, 21)

GUICtrlSetData(-1, "{F1}|{F2}|{F3}|{F4}|{F5}|{F6}|{F7}|{F8}|{F9}|{F10}|{F11}|{F12}|{NUMPAD1}|{NUMPAD2}|{NUMPAD3}|{NUMPAD4}|{NUMPAD5}|{NUMPAD6}|{NUMPAD7}|{NUMPAD8}|{NUMPAD9}|{NUMPADDIV}|{NUMPADMULT}|{NUMPADSUB}|{NUMPADADD}|{NUMPADDOT}|{SPACE}|{ENTER}|{BACKSPACE}|{DELETE}|{UP}|{DOWN}|{LEFT}|{RIGHT}|{HOME}|{END}|{ESC}|{INSERT}|{PGUP}|{PGDN}|{TAB}|{PRINTSCREEN}|{PAUSE}|{CAPSLOCK}|1|2|3|4|5|6|7|8|9|0|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|w|x|y|z", "")

;~ ---------------------------------------------------------------------------------------------------------

;STOP & EXIT HOTKEY inputs & Lables

;~ ---------------------------------------------------------------------------------------------------------

GUICtrlCreateGroup ("", 10, 115, 240, 72) ; text, left, top , width , height

$Label_F10 = GUICtrlCreateLabel("- Stop GetitemsAndClicker", 117, 134)

$ComboKey_F10 = GUICtrlCreateCombo($iniread_ComboKey_F10, 15, 130, 100, 21)

GUICtrlSetData(-1, "{F1}|{F2}|{F3}|{F4}|{F5}|{F6}|{F7}|{F8}|{F9}|{F10}|{F11}|{F12}|{NUMPAD1}|{NUMPAD2}|{NUMPAD3}|{NUMPAD4}|{NUMPAD5}|{NUMPAD6}|{NUMPAD7}|{NUMPAD8}|{NUMPAD9}|{NUMPADDIV}|{NUMPADMULT}|{NUMPADSUB}|{NUMPADADD}|{NUMPADDOT}|{SPACE}|{ENTER}|{BACKSPACE}|{DELETE}|{UP}|{DOWN}|{LEFT}|{RIGHT}|{HOME}|{END}|{ESC}|{INSERT}|{PGUP}|{PGDN}|{TAB}|{PRINTSCREEN}|{PAUSE}|{CAPSLOCK}|1|2|3|4|5|6|7|8|9|0|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|w|x|y|z", "")

;~ ---------------------------------------------------------------------------------------------------------

$Label_EXIT = GUICtrlCreateLabel("- EXIT = Shift+Esc", 117, 160)

$ComboKey_EXIT = GUICtrlCreateCombo($iniread_ComboKey_EXIT, 15, 156, 100, 21)

GUICtrlSetData(-1, "{F1}|{F2}|{F3}|{F4}|{F5}|{F6}|{F7}|{F8}|{F9}|{F10}|{F11}|{F12}|{NUMPAD1}|{NUMPAD2}|{NUMPAD3}|{NUMPAD4}|{NUMPAD5}|{NUMPAD6}|{NUMPAD7}|{NUMPAD8}|{NUMPAD9}|{NUMPADDIV}|{NUMPADMULT}|{NUMPADSUB}|{NUMPADADD}|{NUMPADDOT}|{SPACE}|{ENTER}|{BACKSPACE}|{DELETE}|{UP}|{DOWN}|{LEFT}|{RIGHT}|{HOME}|{END}|{ESC}|{INSERT}|{PGUP}|{PGDN}|{TAB}|{PRINTSCREEN}|{PAUSE}|{CAPSLOCK}|1|2|3|4|5|6|7|8|9|0|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|w|x|y|z", "")

GUICtrlCreateGroup ("",-99,-99,1,1) ;close group

$Label_login = GUICtrlCreateLabel("Password:", 15, 202)

$ComboKey_login = GUICtrlCreateInput($iniread_ComboKey_login, 70, 198, 80, 21)

$ComboKey_login_Hotkey = GUICtrlCreateCombo($iniread_ComboKey_login_Hotkey, 150, 198, 100, 21)

GUICtrlSetData(-1, "!{ENTER}|{F1}|{F2}|{F3}|{F4}|{F5}|{F6}|{F7}|{F8}|{F9}|{F10}|{F11}|{F12}|{NUMPAD1}|{NUMPAD2}|{NUMPAD3}|{NUMPAD4}|{NUMPAD5}|{NUMPAD6}|{NUMPAD7}|{NUMPAD8}|{NUMPAD9}|{NUMPADDIV}|{NUMPADMULT}|{NUMPADSUB}|{NUMPADADD}|{NUMPADDOT}|{SPACE}|{ENTER}|{BACKSPACE}|{DELETE}|{UP}|{DOWN}|{LEFT}|{RIGHT}|{HOME}|{END}|{ESC}|{INSERT}|{PGUP}|{PGDN}|{TAB}|{PRINTSCREEN}|{PAUSE}|{CAPSLOCK}|1|2|3|4|5|6|7|8|9|0|a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|w|x|y|z", "")

GUICtrlCreateGroup ("", 50, 225, 217, 40) ; text, left, top , width , height

GUICtrlCreateLabel("^ == Ctrl ! == Alt + == Shift # == Win", 60, 240)

GUICtrlCreateGroup ("",-99,-99,1,1) ;close group

GUISetState(@SW_SHOW)

Run(@ScriptDir & "/pinnacle2/Pinnacle.exe")

;~ Tray MENU

;~ ---------------------------------------------------------------------------------------------------------

$Tray_Maximize_item = TrayCreateItem("Maximize")

TrayItemSetOnEvent(-1,"_Maximize")

$Tray_Maximize_item = TrayCreateItem("Minimize")

TrayItemSetOnEvent(-1,"_Minimize")

$Tray_help_item = TrayCreateItem("Help")

TrayItemSetOnEvent(-1,"_Help")

TrayCreateItem("")

$Tray_exititem_item = TrayCreateItem("Exit")

TrayItemSetOnEvent(-1,"_EXIT")

TraySetState(@SW_HIDE)

;~ ------------------------------------------------------

;GUI Events

GUISetOnEvent($GUI_EVENT_CLOSE, "_EXIT")

GUISetOnEvent($GUI_EVENT_MINIMIZE, "_minimize")

GUICtrlSetOnEvent($Button_Register_Hotkeys, "_Register_Hotkeys") ;If button pressed disable it

GUICtrlSetOnEvent($Button_UnRegister_Hotkeys, "_UnRegister_Hotkeys") ;If button pressed enable it

func _Register_Hotkeys()

;Write New Hotkeys into the ini file

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownLeft",GUICtrlRead($ComboKey_F5))

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownRight",GUICtrlRead($ComboKey_F6))

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "GetItems",GUICtrlRead($ComboKey_F8))

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "Clicker",GUICtrlRead($ComboKey_F9))

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "StopGetitemsAndKlicker",GUICtrlRead($ComboKey_F10))

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "EXIT",GUICtrlRead($ComboKey_EXIT))

If GUICtrlRead($Radio_Left)= $GUI_CHECKED Then

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "Default_Mouse","Left")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "NOT_Default_Mouse","Right")

EndIf

If GUICtrlRead($Radio_Right)= $GUI_CHECKED Then

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "Default_Mouse","Right")

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "NOT_Default_Mouse","Left")

EndIf

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "login_Hotkey",GUICtrlRead($ComboKey_login_Hotkey))

IniWrite(@ScriptDir & "/pinnacle2/config.ini", "MU", "login",GUICtrlRead($ComboKey_login))

;~ ---------------------------------- Reading Hotkey info after writting ini file -----------------------------------

$iniread_ComboKey_F5 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownLeft","")

$iniread_ComboKey_F6 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "_MouseDownRight","")

$iniread_ComboKey_F8 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "GetItems","")

$iniread_ComboKey_F9 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "Clicker","")

$iniread_ComboKey_F10 = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "StopGetitemsAndKlicker","")

$iniread_ComboKey_EXIT = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "EXIT","")

$iniread_Default_Mouse = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "Default_Mouse","")

$iniread_NOT_Default_Mouse = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "NOT_Default_Mouse","")

$iniread_ComboKey_login = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "login","")

$iniread_ComboKey_login_Hotkey = IniRead(@ScriptDir & "/pinnacle2/config.ini", "MU", "login_Hotkey","")

HotKeySet($iniread_ComboKey_F5, "_MouseDown_Left")

HotKeySet($iniread_ComboKey_F6, "_MouseDown_Right")

HotKeySet($iniread_ComboKey_F8, "_GetItems")

HotKeySet($iniread_ComboKey_F9, "_Clicker")

HotKeySet($iniread_ComboKey_F10, "_Stop_Getitems_And_Klicker")

HotKeySet($ComboKey_login_Hotkey, "_Login")

HotKeySet($iniread_ComboKey_EXIT, "_EXIT") ;Shift + Esc = Exit prog

;~ ---------------------------------- END Reading Hotkey info after writting ini file -----------------------------------

GUICtrlSetState($Button_Register_Hotkeys,$GUI_DISABLE) ; disabling Button

;~ GUISetState(@SW_HIDE, $Mainwindow) ; Hide GUI

EndFunc

func _UnRegister_Hotkeys()

GUICtrlSetState($Button_Register_Hotkeys,$GUI_enable) ; Enable Button

HotKeySet($iniread_ComboKey_F5)

HotKeySet($iniread_ComboKey_F6)

HotKeySet($iniread_ComboKey_F8)

HotKeySet($iniread_ComboKey_F9)

HotKeySet($iniread_ComboKey_F10)

HotKeySet($iniread_ComboKey_login_Hotkey)

HotKeySet($iniread_ComboKey_EXIT)

EndFunc

func _MouseDown_Right()

winwaitactive("MU")

MouseDown("Right")

EndFunc

func _MouseDown_Left()

winwaitactive("MU")

MouseDown("Left")

EndFunc

;~ ------------------------------------------------------

func _GetItems() ;Pick up items & money automatically

TraySetState(4) ; Start Blinking

while 1

winwaitactive("MU")

sleep(100)

controlsend("MU","","",send("{space}"))

WEnd

EndFunc

;~ ------------------------------------------------------

func _Clicker() ; Autoclickker (Only for mu)

while (1)

winwaitactive("MU")

If $iniread_Default_Mouse = "Left" Then

$Defaultmouse = "Left"

Else

$Defaultmouse = "Right"

EndIf

$pos = MouseGetPos() ; Get mouse current position

MouseMove(($pos[0]-5), ($pos[1]-5),0)

MouseClick($Defaultmouse)

$pos2 = MouseGetPos()

MouseMove(($pos2[0]+5), ($pos2[1]+5),0) ;move the mouse a little

MouseClick($Defaultmouse)

WEnd

EndFunc

;~ ------------------------------------------------------

func _Stop_Getitems_And_Klicker()

TraySetState(8); Stop blinking

while 1 = 1

sleep(20)

WEnd

EndFunc

;~ ------------------------------------------------------

func _EXIT()

Exit

EndFunc

;~ ------------------------------------------------------

func _Help()

$msgbox = Msgbox(1,"HELP:","To change Hotkeys, First, You need to Unregister them & Then Register NEW Hotkeys....Hotkeys that are not listed Hire......I dont Suggest to use them...Want More Hotkeys? Then Press OK ")

If $msgbox = 1 Then _IECreate("http://www.autoitscript.com/autoit3/docs/appendix/SendKeys.htm",1) ; open webpage

EndFunc

;~ ------------------------------------------------------

func _Maximize()

GUISetState(@SW_SHOW, $Mainwindow)

GUISetState(@SW_RESTORE, $Mainwindow)

EndFunc

func _Minimize()

GUISetState(@SW_HIDE, $Mainwindow)

EndFunc

func _Login()

winwaitactive("MU")

send($iniread_ComboKey_login)

send("{enter}")

EndFunc

;Just Ide Around

while 1

sleep(100)

WEnd

MU_Clikker.rar

Edited by chie
Link to comment
Share on other sites

  • 2 years later...

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
 Share

  • Recently Browsing   0 members

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