Artisan Archive

Thread: Macro help please

TheMalle
Tue Feb 24, 2004 2:47 pm
#14

We cannot give a exact macro for *you*. On the other hand, if you are willing to doa few minutes of work, you canuse this one:


This is a step by step guide to a crafting macro:

1. Open up your datapad and check what number your schematic is. Count from left to right, from up to down and skip all the items that your crafting tool can't make.

2. Copy this text into your chatbox, but change the --- to the number of your schematic (example, /selectDraftSchematic 10

/alias craft1 /ui action toolbarSlot01;/selectDraftSchematic ---;/pause 7;/nextC;/nextC;/nextC;/createPrototype;/createPrototype
/alias craft2 /ui action toolbarSlot02;/selectDraftSchematic ---;/pause 7;/nextC;/nextC;/nextC;/createPrototype;/createPrototype
/alias craft3 /ui action toolbarSlot03;/selectDraftSchematic ---;/pause 7;/nextC;/nextC;/nextC;/createPrototype;/createPrototype
/alias craft4 /ui action toolbarSlot04;/selectDraftSchematic ---;/pause 7;/nextC;/nextC;/nextC;/createPrototype;/createPrototype
/alias craft5 /ui action toolbarSlot05;/selectDraftSchematic ---;/pause 7;/nextC;/nextC;/nextC;/createPrototype;/createPrototype
/alias craft6 /ui action toolbarSlot06;/selectDraftSchematic ---;/pause 7;/nextC;/nextC;/nextC;/createPrototype;/createPrototype

3. Make a macro called Craft with this text:

/craft1;
/pause 9;
/craft2;
/pause 9;
/craft3;
/pause 9;
/craft4;
/pause 9;
/craft5;
/pause 9;
/craft6;
/pause 9;
/macro crafttest

4. Place the macro on the F1 toolbar hotkey (you can change toolbar with ctrl + F11 and ctrl + F12)

5. Create/buy 6 of the desired crafting tools (I prefer weapon, droid and general crafting tools) and place them in the F2 - F7 toolbar hotkeys.

6. Use F1 to start the macro.
-------------------------------------------------------

Macro response



-------------------------------------------------------------------------------
Malle the Mon Calamari
Mos Entha Role Playing Community
http://www.mosentha.com

"Behavior is a mirror in which every one displays his image" - Johann Wolfgang von Goethe
TheMalle
Wed Feb 25, 2004 12:02 pm
#15

Hehe, np. If you learn to use alias' they can be of great assistance


good luck



-------------------------------------------------------------------------------
Malle the Mon Calamari
Mos Entha Role Playing Community
http://www.mosentha.com

"Behavior is a mirror in which every one displays his image" - Johann Wolfgang von Goethe
Ekimni
Wed Feb 25, 2004 7:54 pm
#16

i'm having some problems selecting the right schematic, all i can make are slitherhorns


can anyone help me?


Ekimni
Wed Feb 25, 2004 7:55 pm
#17

never mind i got it now
Ulta
Thu Apr 07, 2005 5:00 pm
#18

could somebody give me a weaponsmith grindin macro that can be used ( with the crafting station ) please i lost all my macros



my auction wins can be delivered to any vendor in the cantina on tatooine at waypoint -6643 -4844


FREE GENESIS

I support keeping & balancing the current combat system You can too
sirvivalist
Thu Apr 07, 2005 5:42 pm
#19

check the stickied threads, logix's guide to penultimate weapon crafting or similar title has one
Dangit
Sat Jun 25, 2005 2:59 am
#20

Ok, I am 4434 weaponcrafter and making rifle barrels to grind out the last box.


Has anyone got a macro that could help me with this please as its slowly eating away at my grey matter


Please help me before I go brain dead
elneckio
Sun Aug 07, 2005 8:22 am
#21


I wish to write a few macros to do the following ...


Have a toolbar with foods along top line and a button below each which is a macro which eats the contents of the cell above and sets an alarm for its duration to remind me when it is due to en.


Have a 'PANIC' button on another toolbar which activates several of these macros to eat the correct foods for being attacked as well as setup my defence commands.


e.g.

F1

Toolbar 1 Panic Button


F1

Toolbar2Canape

Macro to eat canape from cell aboveandset timer



So what I would like to know :


Is it possible tocall out to many macros from one and continue the original macro ?


In the 'PANIC' script will I need to do some kind of toolbar switch to make the 'eating' operation happen and then switch back ?


Thanks



shafar
Sun Aug 07, 2005 3:06 pm
#22

All you will need is a combination of:

/ui action toolbarPaneXX
and
/ui action toolbarSlotXX

XX = the pane (00 - 05) or slot (00 - 11)






Vecin Ste'Lar
Corron Mistwalker
Cyrahn
Sun Aug 07, 2005 6:00 pm
#23






elneckio wrote:


I wish to write a few macros to do the following ...


Have a toolbar with foods along top line and a button below each which is a macro which eats the contents of the cell above and sets an alarm for its duration to remind me when it is due to en.


Have a 'PANIC' button on another toolbar which activates several of these macros to eat the correct foods for being attacked as well as setup my defence commands.


e.g.

F1

Toolbar 1 Panic Button


F1

Toolbar2Canape

Macro to eat canape from cell aboveandset timer



So what I would like to know :


Is it possible tocall out to many macros from one and continue the original macro ?


In the 'PANIC' script will I need to do some kind of toolbar switch to make the 'eating' operation happen and then switch back ?


Thanks









You can use the following command click on any cell you want (case sensitive):


/ui action toolbarSlotXX; - where XX is equal to the cell number minus one.


For example: The F1 cell is activated by the line:


/ui action toolbarSlot00;


You can even put your food on a different toolbar pane and keep your macros on your main pane. In order to click on cells on a different pane you have to tell the macro to first switch panes like so:


/ui action toolbarPaneXX; - where XX is equal to the pane number minus one. The same way as above.


For example: The second pane is switched to by the line:


/ui action toolbarPane01;


So using these examples, if we wanted to switch to Pane 2, and click on the First Cell to eat our food, we could do this:


/ui action toolbarPane01;
/ui action toolbarSlot00;
/ui action toolbarPane00;


What this does is switch to the second pane, click the first cell slot, and switch back to our first pane.


Now for your timer... you can use the pause command:


/pause XXX - where XXX is equal to whatever time you want to pause. I think this is in seconds.


For example, this should pause for 3 seconds:


/pause 3;


So if you wanted to eat your food, and pause for 30 seconds, then display something on your chat panel:


/ui action toolbarPane01;
/ui action toolbarSlot00;
/ui action toolbarPane00;
/pause 30;
/echo ** Ready to eat more food! **;


Hope that helps a bit. I use this method to switch clothing/armor/equipment quite a bit and is very useful.

elneckio
Sun Aug 07, 2005 10:23 pm
#24

Thanks everyone, got it working.
ImmortalOne666
Tue Aug 23, 2005 5:42 am
#25


What is the command again for targeting people that are standing infront of you?
I tried /ui action cycleTargetOutwards but that doesnt seem to work anymore, and same goes for the /ui action toolbarSlotXX
And the manual and guides arnt realy helping on the subject

Thanks in advance



00101000100110011101001011011111110100100010011111
00111010000011000011000110101111010011010110111000
Marek Steele
00101000000010010110000111011000001101110000110101 Space Cowboy
1101001100010001011001110100100000100000111011011
1 I'm evil personified
11100111100011011001010110100101010110110011101000 King Of Naboo
01101000110100101101110000011110011010100100110001 Riya's fiancé
10100010100001110000101111101110010010100000000111

000000000000000000000000Co-founder of the Anti-Wook Squad
0000000000000000000000000Supreme Overlord of the Forums
00000000000000000000000One of the 5 gingers of the apocalypse
00000000000000000000000I am Satan in a BlackSun Ace Helmet
0000000000Loot vendor Mictian and Yaotzin, Heaven, Dantooine -4210 -4150
Darkstarbane
Thu Aug 25, 2005 9:50 pm
#26

i want to create a macro for changing in and out of my armor. i am pretty sure i need to dedicate nearly an entire tool bar for this but i am not much of a macro guy can anyone help me out wit a sample macro. thnx in advance for the help and replies




"The jedi will meet thier doom............they will meet me." Ferous Bane - Kettemoor
Page 2 of 3