Architect Archive
Thread: macros
shadowviper069
Mon Jul 05, 2004 1:54 pm
#300
http://forums.station.sony.com/swg/board/message?board.id=game_guides&message.id=93507
JangMonkey2554
Fri Aug 13, 2004 5:16 pm
#301
are there any commands that will unequip a weapon and allow a character to fight unarmed?
LetoPars
Fri Aug 13, 2004 5:21 pm
#302
You could put the weapon in a hot key. Then when you want it un-equiped push that key and it willl un-equip.
Saborcoco
Wed Sep 08, 2004 11:24 am
#303
Is there a way to do IF statements... such as /if HAMhealth >40 then heal or /if target is building then change target...... Or something like that....... I dont know if you can do condition in macros but it would be cool if you could.
also can any one give me a link to a good place to find all the info about the commands in the macros?
ShotokanDragon
Sun Oct 10, 2004 4:43 am
#304
HEY GUYS
CAN ANYONE PLEASE POST A FULL LIST OF MACROS THAT ARE AVAILABLE PLEASE, IM HAVING TROUBLE FINDING THEM ON HERE... SHAME THEY DONT HAVE A "KEYWORD SEARCH"
Much thanks
Lewis Riverwalker
Yasha
Sun Oct 10, 2004 5:03 am
#305
Going to need to be more specific than that, that's kind of like asking what a bar has to drink. Crafting? Sampling? Combat? Camping? And if you click the advanced button, there is a "all or some" to match your search word and/or phrase.
BovineX
Sun Oct 10, 2004 9:29 am
#306
there is no full list, to get a list of ALL the commands that can be used to build macros, type // and it will come up, its very long.
but you need to learn yourself how to build them, use the stickys in the prof forums and modify to suit yourself.
flankerwebrider
Sun Oct 10, 2004 11:47 am
#307
ShotokanDragon wrote:
HEY GUYS
CAN ANYONE PLEASE POST A FULL LIST OF MACROS THAT ARE AVAILABLE PLEASE, IM HAVING TROUBLE FINDING THEM ON HERE... SHAME THEY DONT HAVE A "KEYWORD SEARCH"
Much thanks
Lewis Riverwalker
there is a keyword search just go to the bottom of the screan and type in the thing u want for example jedi hunter hit entre and u have it
Tufelhound
Sun Dec 12, 2004 3:59 pm
#308
i knew there was a friday feature on macros but its not on the friday page....can someone direct me? im trying to make a macro bleedshot body shot 1 and 2 and torso shot
MenaBen-Hez
Tue Dec 14, 2004 1:40 am
#309
/ui action clearCombatQueue;
/bleed;
/bodysh;
/bodyshot2;
/torso;
Heefe
Thu Dec 23, 2004 8:17 pm
#310
I know a few macros and i have forgot a few....i need to know how to do the clothing macro where you just have to hit a button to make your cloths go on and off. some help me plz
MrThallid
Thu Dec 23, 2004 9:20 pm
#311
Place items of clothing in slots on a specific pane
then you need your macro to switch to the correct pane
/ui action toolbarPane ## (maybe space before ##, maybe not)
then you need to activate each slot
/ui action toolbarSlot ## (maybe space, maybe not - repeat for each slot that clothing is in)
Might need a pause if many items (full suit of armor) somewhere in the middle
Then switch back to your main pane.
/ui action toolbarPane 00 (maybe space, maybe not)
Remember that your first box or pane is actually 00
(and not to be an a$$, just a friendly nudge, "Don we now..." You don clothing and stuff)
Message Edited by MrThallid on 12-23-2004 10:22 PM
Amuenp
Thu Dec 23, 2004 10:12 pm
#312
TH had a tuesday tip on this like 3 weeks ago I believe..but...I'll break it down for ya.
Pane #5 (ctrl+F5) will be where you put your clothes or armor in this case.
/ui action toolbarPane04
/pause .5
/ui action toolbarSlot00
/pause .5
/ui action toolbarSlot01
/pause .5
/ui action toolbarSlot02
/pause .5
/ui action toolbarSlot03
/pause .5
/ui action toolbarSlot04
/pause .5
/ui action toolbarSlot05
/pause .5
/ui action toolbarSlot06
/pause .5
/ui action toolbarSlot07
/pause .5
/ui action toolbarSlot08
/pause .5
/ui action ToolbarPane00 (takes you back to your first page)
the pauses keep you from missing any armor pieces. you can shorten the time up a bit if you want to but this works well enough for me. Especially since they put the Armor Equipage into the queue. Have fun.