LasombraQ Posted April 18, 2007 Posted April 18, 2007 Hi i wanna make my own MU Windows Minimizer. For those who are not aware with MU,it is an Online game which cannot be minimized.There is a minimizer for it but i cannot edit it and customize it so i heard about AutoIt3 and i wanted to ask about it. The minimizer works like that: Hotkey F11 = Captures the Window Hotkey F12 = Minimizes the Window and if pressed for a second time,it also maximizes it. I tried searching this forum and i kinda borrowed a script which i also tried to customize but instead of doing the job right,it just gave me some basic knowledge to know that i am in the right path.Yet again the window does minimize for one or two seconds but it turns back to normal.If i press the hotkey to minimize the window again,the game terminates it self! This is the script i am working with and i would like some help from someone who can really really help me by tell me which is the right script i must run plus adding these hotkeys as above: $g_szVersion = "Minimizer by lasombraQ" If WinExists($g_szVersion) Then Exit AutoItWinSetTitle($g_szVersion) MsgBox (64, "Noobwars Minimizer", "Noobwars Minimizer By LasombraQ" & @CRLF & "" & @CRLF & "F11 Key = Minimizes Window" & @CRLF & "F0 Key = Show's All Windows" & @CRLF & "Esc Key = Exits Program" & @CRLF & "" & @CRLF & "Noobimizer") HotKeySet("{F11}", "MinimizeAll") HotKeySet("{F10}" , "Showall") HotKeySet("{Esc}" , "ForceExit") While 1 Sleep(1) WEnd Func MinimizeAll() WinMinimizeAll() EndFunc Func Showall() WinMinimizeAllUndo() EndFunc Func ForceExit() Exit EndFunc PS: i added the F10 F11 and ESC button because i couldn't get it work with the F11 and F12 only!
LasombraQ Posted April 18, 2007 Author Posted April 18, 2007 well thats it in case you know something please answer in here or just PM me. Thanks in advance
LasombraQ Posted April 19, 2007 Author Posted April 19, 2007 This is the original Minimizer. What i only want to do is to remove the commercial site bellow and add my own icon and image in case i can't make one of my own with AutoIt3. I used PEBrowse to "translate it" but it seems that it is indeed an AutoIt3 script but i cannot run it with exe2au3 and edit it. So kindly please check it?tg_mu_min.zip
Generator Posted April 19, 2007 Posted April 19, 2007 This is the original Minimizer.What i only want to do is to remove the commercial site bellow and add my own icon and image in case i can't make one of my own with AutoIt3.I used PEBrowse to "translate it" but it seems that it is indeed an AutoIt3 script but i cannot run it with exe2au3 and edit it.So kindly please check it?What I suggest you to do is, use a dll func finder to find out what funcs are in dll and use dll open and call the func so you could actually get it working. F12 cannot be set as Hotkey in Autoit. Also you may find your Hotkey doesn't work in game because it's fullscreen.
LasombraQ Posted April 19, 2007 Author Posted April 19, 2007 any suggested dll func finders? i tried to google it and i only had some requests from others as well for the same thing
Generator Posted April 19, 2007 Posted April 19, 2007 any suggested dll func finders? i tried to google it and i only had some requests from others as well for the same thingSearch it in Forum. I believe there was a topic about dll func finder as freeware.
therks Posted April 19, 2007 Posted April 19, 2007 I used PEBrowse to "translate it" but it seems that it is indeed an AutoIt3 script but i cannot run it with exe2au3 and edit it.I don't know about anything else, but I'm almost positive it's NOT an AutoIt3 script. The exe is smaller than any AutoIt3 compiled exe I've ever seen. Compiled AutoIt scripts pretty much bottom out at about 200kb. My AutoIt Stuff | My Github
LasombraQ Posted April 19, 2007 Author Posted April 19, 2007 i tried all you guys said but i didn't had any result. Damn this game is really driving me crazy. The closest thing i have done is the script i posted at my 1st post.After that i got really lost Oo
Generator Posted April 19, 2007 Posted April 19, 2007 If that 1 work why don't you use that 1 instead, the hook.dll seems nice thing to start with once you get your hands on with the viewer. Just work your way through.
LasombraQ Posted April 19, 2007 Author Posted April 19, 2007 My boss ordered me to make our own minimizer and since the whole crew is bored to death they left me in charge and to be honest i am like the n00biest n00b with these things so the only thing i turned to was AutoIt3 because i have worked before with aui3 and i made an autoclickor and autobuffer and it didn't seemed hard for me to do. But this one is hell...
Generator Posted April 19, 2007 Posted April 19, 2007 My boss ordered me to make our own minimizer and since the whole crew is bored to death they left me in charge and to be honest i am like the n00biest n00b with these things so the only thing i turned to was AutoIt3 because i have worked before with aui3 and i made an autoclickor and autobuffer and it didn't seemed hard for me to do.But this one is hell...Just wondering, doesn't the 1 you have works?If it does, why bother making a new 1.
LasombraQ Posted April 19, 2007 Author Posted April 19, 2007 Because we want a customized one like i said in my first post. We want one that will have the company's name in it and no commercials from other sites and servers
LasombraQ Posted April 19, 2007 Author Posted April 19, 2007 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)
jmaleal Posted May 3, 2007 Posted May 3, 2007 hello LasombraQ, can u tell me how u donne it, how u made Muminizer in AutoIt, i'm also trying to do it but can't figure it out....ty
LasombraQ Posted May 28, 2007 Author Posted May 28, 2007 the problem is that i didn't saved the code so it's kinda hard to give it right here and the exe won't open with the AutoIt3 editor. But,just a tip: MU is a little bit tricky on that option so you need to trick it back In any case,you are still trying to get the window down....WRONG! You need to capture the window somehow and then give it the order to minimize. MU will not minimize unless the window is captured somehow
jmaleal Posted May 29, 2007 Posted May 29, 2007 Thanks Lasombra for the tip i'll try to find out how to capture it. If i can't figure it out, i'll ask u for another tip
wildhorsend Posted October 23, 2007 Posted October 23, 2007 Autobuffer Script And AutoClick0r not work with MU VietNam (mu.gate.vn). Help me with it, LasombraQ. I want to code auto buff for DW.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now