Page 1 of 1

Can't save as .mac

Posted: Sat Jan 07, 2017 8:32 pm
by Dragonsblood1987
So I finally caved and downloaded mq2

I've got the hang of basic follow, attack ect macros, except when I try to save the macro, the .mac extension isn't found in the drop down menu.

Anyone know how to get that option? What am I doing wrong?

Re: Can't save as .mac

Posted: Sun Jan 08, 2017 2:02 am
by Nilbus
What program are you using? Notepad? Usually apps will have an option for all files *.* and then you can add the .mac extension manually. Alternatively you could save it as .txt and then rename the file in windows explorer.

Re: Can't save as .mac

Posted: Sun Jan 08, 2017 6:04 pm
by Dragonsblood1987
Thanks for the reply!

I tried notepad, word, and notepad++. When I selected all files and tried saving as .Mac it made it a .txt. Also tried changing the name in windows explorer, but ended up with melee.Mac.txt

Re: Can't save as .mac

Posted: Sun Jan 08, 2017 6:36 pm
by Nilbus
Sounds like you might have windows hiding file extensions for known file types. Can open up windows explorer and go to view- options - view tab and make sure hide extensions for known file types is unchecked

Re: Can't save as .mac

Posted: Sun Jan 08, 2017 9:31 pm
by Denizen
Like Nilbus says save as all files and type the extension manually.

Re: Can't save as .mac

Posted: Mon Jan 09, 2017 5:19 pm
by Dragonsblood1987
Thanks again for the help, folks. I got everything straightened out.

Now to figure out why my wizards won't change to what I'm targeting before casting :o

Re: Can't save as .mac

Posted: Mon Jan 09, 2017 11:23 pm
by Dekori
Here is a little get started guide with MQ2 I did for a few friends in the <Knightlights>. Hope maybe with this you can expand upon what you are looking to do!
If you need any more help or explanation pm me, granted I'm not an expert but I can help, or point you to a more advanced user, maybe even write up a part two. I tried to keep this along the scale of a "crash course" or "MQ2 for dummies" kinda a quick read to get you up and fighting fast!

Here are some of the basics, cause i'm not sure how much you already know. Post examples into game to see the effects.

/bca
This sends command to all toon excluding you.
*Example: /bca //Say Hello there! I love Dusky!

/bcaa
This sends to every toon including you.
*Example: /bcaa //shout We love Dusky!

/bct
This sends to a specific toon.
*Example: /bct Name //say Hi there there! I love Dusky!
(NOTE: Name is any of your connected toon)

/stick #
This is advanced version of follow. Can be added with UW for Under Water, so no drowning, or even behind. Then # is a number for distance.
*Example: /bca //stick 5 uw

/melee
This is for mq2Melee, and will display all of the characters current melee skills supported to automate. In the case of a rogue, there is assassinate option that will auto backstab/sneak/hide.
*Example: /melee assassinate=1
(1 for True, 0 for False. NOTE; this is different per class)

/cast #
This is for spell casting and can be simple or advanced depending how quickly you pick up the code.
*Example: /bct Name //cast #
(NOTE: Name is toon whom is casting, and # is the number of the gem the spell is in.)

/casting "Item" Slot
Mostly i use for item clickies. But also can be used for more advanced type of casting.
*Example: /casting "Advanced Charm of Queen Adrianne" charm
(Item is case sensitive name, slot is where its equipped.)
*Example: /casting "Nova Strike|1" -maxtries|3
(Advanced casting, names the spell in what gem, then retries 3 times in case of fizzle/interrupt.)
*Casting can get scary but don't let it overwhelm you, everything i send you i'll break it down the best i can so its easy to understand.*

/Target id ${Target.ID}
This is to get your current target.
*Example: /bca //target id ${Target.ID}
(Has all toons excluding your self, get your current target.)

/Target id ${Me.ID}
This for targeting your self.
*Example: /bca //target id ${Me.ID}
(Has all toons excluding your self, target you.)





The codes are the same whether or not you use them in hot key or macro, the difference is the amount of code you can run. NOTE: /multiline is just to add more than one code on one line, separated by ;.
EXAMPLE HotKey; Follow

/multiline ; /bca //Target id ${Target.ID} ; /bca //stick 5 uw ;

Breakdown - (gets all toons your target) ; (tells all toons to stick on you)

EXAMPLE HotKey; Attack

/multiline ; /bca //Target id ${Target.ID} ; /bca //stick 5 behind uw ; /bca //attack ;

Breakdown - (gets all toons your target) ; (sticks all toons behind target) ; (tells all toons to attack)

easy stuff! :D





MACROS

So now that you got some lite reading in and got the basics you want to string together all or a few of these things into a macro. I got you bruh!

Step one: Get NotePad++
just makes writing the code easy. Reg notepad will work as well.

Step Two: Open a new note pad

Step Three: At the top write Sub Main

Step Four: Enter a couple times down the page and write /bcaa //say We love Dusky!

Step Five: Enter a couple more times to give space and write /return

CONGRATS! You just wrote your first macro!

NOW IMPORTANT PART!!!!

Save your new macro, name it and save as .mac.
*Example: Hello.mac

Save to your MQ2 folder, into your Macros folder.

While in game do a command to start the macro

/mac Name
This will run a macro of your choice. Where name is the name of the file.
*Example: /mac Hello







Hope this helps to get you started, please let me know how it works! Ask me questions if you get stuck happy to help, i had to learn all this on my own and it was pretty terrible so trying to save you guys the head ache!


- Dusky

Re: Can't save as .mac

Posted: Sun Jan 15, 2017 9:54 pm
by Grey
http://www.macroquest2.com/wiki/index.p ... yntax_File

Or make your own, I like coloring books myself, just can't seem to stay inside the lines.