View Full Version : Macros
Jhani Vandolay
10-30-03, 07:33 PM
Does anyone have a link or suggestion for sites that would have examples of macros you can make? I've skimmed some info on it but I have no idea how to actually spell it out.. And the few descriptions I've seen seem to be writen under the assumption that you already know what you're doing. Not to claim the status of a "real professional" in any one endeavor has been a small price to pay for the many benefits and pleasures of trespassing. ~Leo Lionni
EZ_Andurian
10-30-03, 11:51 PM
This might help, or confudle. either way +1
Accessing Hot Keys In A Macro
Simply use the following command in your macro to access a specific hotkey:
/ui action toolbarSlot[xx]
[xx] is a number 00-23 that directly relates to the slot (two banks of 12 slots, 24 total slots, starting at position 00).
So, if I had a macro or command I wanted to execute in say the third slot on the first row of the toolbar I'd use the following:
/ui action toolbarSlot02
And this leads up to one of the BIGGEST questions ever...
How to Equip/Unequip Items In A Macro
So far, this is the only way I know how to do it since /equip, and /unequip do not work.
Since you have a plethora of toolbars available, place all the items that you want into a toolbar or bars.
I.E. weapons in one part, armor in the next, etc.
To equip, simply use the same command as above, to unequip, call the command again on the same slot.
For example, I have a pistol in the first slot, rifle in the second, and melee in the third. I want to equip my pistol (doing something in between), unequip it and equip my rifle, etc.
/ui action toolbarSlot00 # This equips my pistol
/doaction # I'm doin my thing.
/ui action toolbarSlot01 # I need to equip my rifle
/doaction2 # Taking potshots at the pedestrians from my porch, guzzling beer.
/ui action toolbarSlot02 # Some fat slob's up in my face about shooting his dog, so now I'm gonna beat him
senseless
How To Change Toolbar Panes
Similar to the above, you can change your toolbar panes in a macro. Say I want to have all my weapons in one toolbar, and all my armor in another. In order to use a macro to change to that pane, then call the appropriate slot, I need to first switch to that Toolbar Pane. Let's say I'm using Pane 6.
/ui action toolbarPane05
Again, you actually have 12 toolbar panes, from 00 to 11. Why 12? Well, since each toolbar has two rows of possible slots, each toolbar then has two panes. A pane is a row. Let's leave it at that. You obviously need to be careful as to where you are placing items on your toolbar and remember that if you do NOT have it expanded to two rows, it will always be the odd number that you need to call.
Jhani Vandolay
10-31-03, 06:11 AM
Do you happen to know how to make a pause in a macro? Like, make something happen, wait 30 seconds, do it again, etc?
/command;
/pause X;
/command;
X is the ammount of time you want. 1=1 second 100=100 seconds etc
Jhani Vandolay
10-31-03, 08:08 AM
Thank you both.
freonsmurf
10-31-03, 12:35 PM
if your working on doctor I have some killer ones
1k exp per click
It's only wrong if you get caught.If consequences dictate my course of action I should play GOD
blog html
Hell
Jhani Vandolay
11-01-03, 12:25 PM
Ok.. another n00b question.. how do I turn this @#%$ off? I made a macro, tested it out, and it won't stop cycling. I dissconnect, it's still doing it when I logged back in (And in fact kept making the sound, even from the character select screen). I shut down SWG altogether, log back on, still doing it. The macro button doesn't seem to have an off command in the radial, the only way I can guess to stop it at this point is to just delete it.
I only programed 8 actions (yeah yeah, flourishes) divided by pauses, so it shouldn't have even continued to go that many times, unless macros automatically repeat?
Hlep.
Edit: Nm, someone sent me a page that clears everything up. Edited by: Jhani Vandolay at: 11/1/03 1:49 pm