MPC Forums
BattleApps


Go Back   MPC Forums > ..:: Games ::.. > MU Online

MU Online And a light will come down upon this land from the world once forgotten...

Reply
 
Thread Tools
Old 19th January 2007, 05:37   #1
mystikfox
Devil of Hell
 
Mu Macro + tools

Long ago, I created a general purpose programmable macro in C++. It was used for other games, and I was planning to get around to porting it to Linux [but that never happened]. Long story short, I started playing Mu online again (private server), and decided to continue work on it.

I present to you my MiniMacro program. Simply download, unrar, and run the macro.exe, then start Mu.

Controls:
F5 - start macro
F6 - stop macro
F7 - reload script [you shouldn't need to do this]

I've included a working script that will spam the area around your character with skills, and pickup nearby items/zen. It works great with Evil Spirits, or the Rune Blade's skill -- probably all bow skills, too. Especially awesome with the speed hack on.

I don't want to hear any bitching about "IT'S A KEYLOGGER!" either. First, I play on a private server, and have no need for your username and password. Second, check the damn source for yourself if you don't believe me.

NOTE: If the program does not work properly for you in-game (but does on your desktop), it has been reported that changing the program's name from macro.exe to Pinnacle.exe will help solve the problem.

Tools:
Well, currently, I only have to submit my program, 'enumwin'. I have found it very useful, even if it is simple. I often need to get the HWND, thread ID, and process ID of certain programs, so this program is great for that. Download, unrar, and copy enumwin.exe to C:/Windows/System32 to install. From command prompt, use the command 'enumwin' to get a list of all "windows". You can use the switches listed in help ( "enumwin /h" ) for more control.

This program isn't directly related to Mu at all, but it might help some of you to create hacks, such as memory editors/trainers.

I'm also working on a minimizer/windower for Mu, which I will release here when finished.

As always, my programs are virus and keylogger free. Source is included. Please let me know if you guys find this stuff useful.
Attached Files
File Type: rar enumwin.rar (77.8 KB, 1684 views)
File Type: rar minimacro.rar (84.1 KB, 2105 views)

Last edited by mystikfox; 26th January 2007 at 22:49..
mystikfox is offline   Reply With Quote
Old 19th January 2007, 18:57   #2
Pagopver
HåX £øv€®
Mage
 
Pagopver's Avatar
 
This can be used to do the combo thing ?? it's a little complicated to understand....
Pagopver is offline   Reply With Quote
Old 19th January 2007, 22:25   #3
mystikfox
Devil of Hell
 
Quote:
Originally Posted by Pagopver View Post
This can be used to do the combo thing ?? it's a little complicated to understand....
Which combo thing? As I said, it is a general purpose macro that works well with Mu.

Let me better explain how the program works. You can create scripts to run through the macro that can control the mouse and keyboard for you. It does things like move the mouse, press buttons and keys, etc.

To create a script that would just hold down the right button for you, you can simply do this:

MOUSE_RHOLD

Then, once you press F5, the right mouse button is held down until you manually right click. Or, to get it to click and hold for a second until you press the stop button...

REPEAT 0
MOUSE_RHOLD
REST 1000
MOUSE_RRELEASE
LOOP

You can, of course, create your own script that would be able to do things like cast Evil Spirits 5 times, then use Twisting Slash, then use a potion, then do pick up items (press space key). Check minimacro_help.txt for a description of keywords and more examples.

The script included with the program is designed for Mu. Once you press F5, it will circle around the screen spamming the area with whichever skill you have selected. It will also pick up nearby items.
mystikfox is offline   Reply With Quote
Old 20th January 2007, 23:07   #4
juggalo69
Lifetime Gamer
Mage
 
juggalo69's Avatar
 
hey ive tried this with global mu and i cannot seem to get it to work.... any suggestions anyone? ..by the way i tried installing net framework1.1 and 2.0 and that also didnt help.....does this even work with global or am i doing something wrong?

Last edited by juggalo69; 21st January 2007 at 11:03..
juggalo69 is offline   Reply With Quote
Old 21st January 2007, 04:57   #5
mystikfox
Devil of Hell
 
What version of Windows are you using? Does it even make the mouse move around? Try using outside of Mu and see if it does anything.
mystikfox is offline   Reply With Quote
Old 21st January 2007, 07:43   #6
joazin
Apprentice Knight
 
lol dude..
u are a genius..
good work!

ps:i tried use combo with max agility(32767) but all times have problem..
i tried 100ms 200 300ms..
can someone helping me configure the perfect combo?
thx
joazin is offline   Reply With Quote
Old 21st January 2007, 21:01   #7
mystikfox
Devil of Hell
 
Well, just hotkey the skills you want in keys 1 and 2 (or more if you want), then try something like this for your macro script:

Code:
REPEAT 0
  REM attack with skill 1
  KEYPRESS 1
  REST 100
  MOUSE_RCLICK

  REST 100

  REM attack with skill 2
  KEYPRESS 2
  REST 100
  MOUSE_RCLICK

  REST 100
LOOP
mystikfox is offline   Reply With Quote
Old 22nd January 2007, 00:23   #8
joazin
Apprentice Knight
 
i would like say AGAIN for u,
your job is excellent,100% work,wonderfull for who know use this..
congratulations



about the combo
e maked
only
KEYPRESS 1
REST xxx
KEYPRESS 2
REST xxx
KEYPRESS 3
REST xxx
i tried with 100ms but isnt perfect yet..anyone know the good time for each skill ?
thx and enjoy
joazin is offline   Reply With Quote
Old 22nd January 2007, 00:50   #9
Rented
0ld Sk00l Moderator
Golden Hero
 
Rented's Avatar
 
mystikfox it would be apprechiated if you can please upload you attachments to MPC using the "Attach files" module when posting , this way it protect MPC and yourself from any problems. Normaly i would remove any links but in this case i will give a day or so and let you do it yourself as your bots seem popular and we dont want to remove the links and leave people without your bots for afew days Also means when uploading if you have done any updates you can upload the beta versions

Rented
__________________

-=/--[:MU:]--\=-

-=/--[:Rented:]--\=-

-=/--[:Mu Moderator:]--\=-

-=/--[:We are NOT here to wipe your asses...:]--\=-

Once you reach warning level 25, you will be banned for 2147483647 days,best use the SEARCH Here or Here!
Rented is offline   Reply With Quote
Old 22nd January 2007, 02:24   #10
joazin
Apprentice Knight
 
mystik..
i'm trying make this

REPEAT 50
KEYPRESS A
REST 50000
KEYPRESS B
REST 100
LOOP

Well,i'm trying press A each 50s and B each 0,1s but this dont work..only press A and wait 50s and dont press B
what is wrong?
thx
joazin is offline   Reply With Quote
Old 22nd January 2007, 04:11   #11
juggalo69
Lifetime Gamer
Mage
 
juggalo69's Avatar
 
i still cannot figure this out...it works on my desktop but for global mu it does nothing????im using windows xp pro and i have both .net framework updates installed..........can you help me out anyone??? i really would like to use this for my dl....
juggalo69 is offline   Reply With Quote
Old 22nd January 2007, 06:45   #12
Pagopver
HåX £øv€®
Mage
 
Pagopver's Avatar
 
mistik, is possible to load 2 or more scripts at same time ?
exemple : i made a macro for combo and another for general use in game , for use potions, heal , etc , can i use this 2 macros at same time ? another question, how to confgure CTRL ? is possible ?

Thanks anyway, your bot works great at combo !!

Quote:
Originally Posted by joazin View Post
mystik..
i'm trying make this

REPEAT 50
KEYPRESS A
REST 50000
KEYPRESS B
REST 100
LOOP

Dont put REPEAT in first line

Try this :

KEYPRESS A
REST 100
KEYPRESS B
REST 100
KEYPRESS C
REST 200
MOUSE_RCLICK
LOOP

Works fine for me.

Last edited by Pagopver; 22nd January 2007 at 06:50.. Reason: Automerged Doublepost
Pagopver is offline   Reply With Quote
Old 22nd January 2007, 08:46   #13
Misha
Moderator
Dark God
 
Misha's Avatar
 
total win mystikfox cute idea any other functions rather then what I see?
__________________
MPCD MPC
Do join IRC- Download mIRC connect to Rizon Server and join(/join #channel) the Mpc channels which are:
#MPC - General | #MPC_MS - Maple story channel
#MPC_MU - Mu Online channel | #MPC_AAO - AAO channel
#MPC_CSS - Counter Strike: Offical Mpc support channel
In all these channel you can get buckets of support to your silly lil problems.

Russia vacation over ;_;
Misha is offline   Reply With Quote
Old 22nd January 2007, 08:56   #14
mystikfox
Devil of Hell
 
Rented:
Taken care of. Sorry about that. I've done some software development for other purposes, and it has always been a pain to get attachments all updated at all websites with each new version. I'm sure you understand. Currently, this is the only site I've posted this to (other than my own, of course), so it's not a problem.

jaozin: Your script is a little faulty. The easiest way to do it is with nested loops.
Code:
REPEAT 0
KEYPRESS A

  REPEAT 500
    KEYPRESS B
    REST 100
  LOOP

LOOP
The REPEAT statement tells the macro to repeat the steps that follow it until the next LOOP is encountered x number of times (0 means to do it infinitely).

juggalo69:
Of course I'll help you. I have a suspicion... Will you try keyboard input for me? Just make a script like this:
Code:
KEYPRESS VK_ENTER
KEYPRESS H
KEYPRESS E
KEYPRESS L
KEYPRESS L
KEYPRESS O
KEYPRESS VK_ENTER
Then log into Mu, and press F5. Your character should say "hello". Also, try the attached .exe. Only the right mouse click (NOT hold!) has been changed, but just test and see if it works. Reply with your results.

Pagopver:
No, it currently does not support multiple scripts through a single application. You could, however, open a second macro window and run a separate script through it, but then you'd have to edit the script while the first has already loaded it. You should be able to press control with:
KEYPRESS 17

But remember, that's a keypress, not a keyhold, which you probably need. I'll be doing some more work on this. I plan to add a GOTO statement, a choice of which script to load, and a keyhold/keyrelease function, and a choice between which type of input to use. Thanks for all of your replies guys, I really do appreciate the interest in my project.

Has anyone else on global been able to get this to work?

EDIT: Attachment removed (obsolete).

Last edited by mystikfox; 26th January 2007 at 02:06..
mystikfox is offline   Reply With Quote
Old 22nd January 2007, 09:41   #15
Pagopver
HåX £øv€®
Mage
 
Pagopver's Avatar
 
Thanks for fast reply , your macro bot is awesome and your support is great !

Thanks a million !
Pagopver is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 18:06.

Powered by vBulletin® Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Style Provided By: Wrestling Clique - Wrestling Forums


Page generated in 0.19101 seconds with 12 queries