Bio Engineer Archive

Thread: macro help

NomAnor1987
Mon Oct 11, 2004 2:33 am
#196

you could put the heal on one of the 2 full rows you have on pane 2... i can't believe you use 24 specials....



Defensor Fortis

I'm Back!
Chucksta68
Mon Oct 11, 2004 2:53 am
#197

To the best of my knowledge, what you are wanting to do cannot be done since there is no way for the macro parser to know what toolbar pane you were on when you started the macro. You could write 6 different macros (one for each toolbar pane), but that would really be a waste of time.


Assuming you have room in your top-level inventory for stims, you might want to try thisor some variant of it:


/dump;

/ui action clearCombatQueue;

/healdamage;


This clears all macros running, clears the queue, and heals. Note that if you have the corpse of a mob selected, you will get the 'Target must be a player or pet...' message, but this works great for me.


Hope this helps.






-----
Numa
Former maker of magic clothing and damage-free weapons.

Hey, since I made a Star Wars Quake III mod 5 years ago, does that make me an SOE dev??
Juusman
Mon Oct 11, 2004 10:56 am
#198

Thanks for the help.. I'll guess I'll just have to simplify things a little. I was just using heal as an example. It would be nice if toolbarPanePrev actually returned you to the previous toolbar pane!


Oh well..



------------------------------------------------------------------------------------------------>
CORE: Cadre of Republic Elite
JediCabro
Fri Nov 12, 2004 7:34 pm
#199

can anyone post a macro that loops iteslef? im looking for one that selects the draftschem, gives you 5 secs to put in reouces, then practices and makes no item for 7 tool kits

-Alaid Cabro
Lowca, xTAGx
Future Master Weaponsmith of Lowca



- I support a rollback and keeping & balancing the old combat system.
...and making SWG a better place to be.
Your voice counts!
Alaid Cabro - MEnhancer / MPowers / Healer 4/0/4/0
Ybagi
Fri Nov 12, 2004 8:06 pm
#200

See the weaponsmith guide sticky at top of forum, detailed instructions there.



Yv
Undead Warrior
Alchemist
Malganis Server
World of Warcraft
JediCabro
Fri Nov 12, 2004 10:29 pm
#201

which one?



- I support a rollback and keeping & balancing the old combat system.
...and making SWG a better place to be.
Your voice counts!
Alaid Cabro - MEnhancer / MPowers / Healer 4/0/4/0
Ybagi
Fri Nov 12, 2004 11:03 pm
#202


In-Game Macros


One of the most difficult parts of setting up your own macro is finding your schematic numbers, as they are used in this command:


/selectDraftSchematic 00


Where 00 represents the number of the schematic. It is different for everyone. My Projectile Rifle Barrel schematic number may be 12, while Joe Bob's is 25. You will have to type this command over and over with different numbers until you find *your* numbers that open the proper schematics in your crafting tool! Once that's over, then you can set up your macros.


Onto the actual macro. This guide was written by one of our community members, unique100:




Okay, to do this you will be using the top row of F1 - F12 keys in the "first set" of your toolbar quickslots. Very important to make sure it is the "first set" or it will not work.

You will have to make 3 macros. Pick a name for the macros. I used 'wsmacro1' 'wsmacro2' 'dump'. You can use whatever you like.


Open the abilities window (Ctrl-A on default keymap) then hit the Macro tab. Hit New Macro and give it a name. Then pick an icon for the macro. The icons mean nothing, they are just there to use as a pic to put in the toolbar quickslot.


Write this macro in the box:


/ui action toolbarSlot03;
/selectDraftSchematic 00; (This number will be different for you!)
/pause 5; (This is where you double click to put in resources)
/nextcraftingstage; (Replace "/nextcraftingstage;" with just "/next;" if you have problems)
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot04;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot05;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot06;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot01; (This loops the macro)

Review the macro to make sure there are no typoes. Then hit 'OK' to save the macro. Now hit "New Macro" again, give it a name and pick an icon (different one)


Then write this macro:

/ui action toolbarSlot07;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot08;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot09;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot10;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot11;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot00; (This loops back to the first macro, making an endless loop.)

Save it. Now this is a endless macro so you will need a way to stop it.


Write this macro pick and icon and save it:


/dump (This will stop your macro, use it when you need to stop.)


Ok now put Macro #1 in your F1 toolbar slot Macro #2 in F2 toolbar slot. Put the end macro in F3 toolbar slot.


You will need 8 crafting stations now. Put the crafting stations in F5, F6, F7, F8, F9, F10, F11, F12 toolbar slots. Now try the macro!


You can make this faster by changing the pause ( /pause 5; ) to 3 or 4 seconds. *CAUTION* Using the 3 second pause is really hard, you will not be able to take your eyes off the screen. It is really fast and it can burn you out quickly.


I was using this to make metal staffs, but you can use this to make about anything.


The /pause is the time the macro stops for you to load the resorces in the crafting station. Select Draft Schematic number can be found by useing Ctrl-D to open your Datapad, then hitting the Data tab. Count the number of schematics in the Datapad left-to-right, top-to-bottom. I counted down and 57 was the number where my Metal Staff schematic was.






Yv
Undead Warrior
Alchemist
Malganis Server
World of Warcraft
Zoi1
Sat Nov 13, 2004 6:04 am
#203






Ybagi wrote:


In-Game Macros


One of the most difficult parts of setting up your own macro is finding your schematic numbers, as they are used in this command:


/selectDraftSchematic 00


Where 00 represents the number of the schematic. It is different for everyone. My Projectile Rifle Barrel schematic number may be 12, while Joe Bob's is 25. You will have to type this command over and over with different numbers until you find *your* numbers that open the proper schematics in your crafting tool! Once that's over, then you can set up your macros.


Onto the actual macro. This guide was written by one of our community members, unique100:




Okay, to do this you will be using the top row of F1 - F12 keys in the "first set" of your toolbar quickslots. Very important to make sure it is the "first set" or it will not work.

You will have to make 3 macros. Pick a name for the macros. I used 'wsmacro1' 'wsmacro2' 'dump'. You can use whatever you like.


Open the abilities window (Ctrl-A on default keymap) then hit the Macro tab. Hit New Macro and give it a name. Then pick an icon for the macro. The icons mean nothing, they are just there to use as a pic to put in the toolbar quickslot.


Write this macro in the box:


/ui action toolbarSlot03;
/selectDraftSchematic 00; (This number will be different for you!)
/pause 5; (This is where you double click to put in resources)
/nextcraftingstage; (Replace "/nextcraftingstage;" with just "/next;" if you have problems)
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot04;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot05;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot06;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot01; (This loops the macro)

Review the macro to make sure there are no typoes. Then hit 'OK' to save the macro. Now hit "New Macro" again, give it a name and pick an icon (different one)


Then write this macro:

/ui action toolbarSlot07;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot08;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot09;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot10;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot11;
/selectDraftSchematic 00;
/pause 5;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/ui action toolbarSlot00; (This loops back to the first macro, making an endless loop.)

Save it. Now this is a endless macro so you will need a way to stop it.


Write this macro pick and icon and save it:


/dump (This will stop your macro, use it when you need to stop.)


Ok now put Macro #1 in your F1 toolbar slot Macro #2 in F2 toolbar slot. Put the end macro in F3 toolbar slot.


You will need 8 crafting stations now. Put the crafting stations in F5, F6, F7, F8, F9, F10, F11, F12 toolbar slots. Now try the macro!


You can make this faster by changing the pause ( /pause 5; ) to 3 or 4 seconds. *CAUTION* Using the 3 second pause is really hard, you will not be able to take your eyes off the screen. It is really fast and it can burn you out quickly.


I was using this to make metal staffs, but you can use this to make about anything.


The /pause is the time the macro stops for you to load the resorces in the crafting station. Select Draft Schematic number can be found by useing Ctrl-D to open your Datapad, then hitting the Data tab. Count the number of schematics in the Datapad left-to-right, top-to-bottom. I counted down and 57 was the number where my Metal Staff schematic was.










/selectDraftschematix 00; can be /sel 00; instead also


/nextcraftingstage; can be /nextc;



for little less typing


JediCabro
Sat Nov 13, 2004 10:19 am
#204

ah ok thanks alot (:



- I support a rollback and keeping & balancing the old combat system.
...and making SWG a better place to be.
Your voice counts!
Alaid Cabro - MEnhancer / MPowers / Healer 4/0/4/0
DML6589
Thu Dec 02, 2004 2:07 pm
#205

I was wondering is there a command to end one macro only, not all of them running at one time. I tried to /dump, but it halted all macros. Thanks for your help!!



Fabeon Prewitt-

Master Carbineer/Master Doctor

Retired PVP3R

-Velkan

12 Point Master Chef

Gidain Prewitt

Flurry

DML6589
Thu Dec 02, 2004 7:33 pm
#206



Fabeon Prewitt-

Master Carbineer/Master Doctor

Retired PVP3R

-Velkan

12 Point Master Chef

Gidain Prewitt

Flurry

DML6589
Sat Dec 04, 2004 6:00 pm
#207



Fabeon Prewitt-

Master Carbineer/Master Doctor

Retired PVP3R

-Velkan

12 Point Master Chef

Gidain Prewitt

Flurry

Tar-Danian
Sun Dec 05, 2004 10:51 pm
#208

You can manually stop one macro, if it is added in your toolbar by just moving that toolbar icon to another slot.

As far as a command to just stop one macro, not that I know of. On one of my macros, I used 9 different macros to accomplish 1 task, because of this.




Tar Danian
- Ghost -

- Syren's Tomb, Talus-
Rollin... Rollin... Rollin...






Page 16 of 22