Skip to content
ME

Star Wars Galaxies · profession

Medic macros

Heals wounds, cures states and crafts stimpacks. Doctor buffs were a whole industry, delivered through macro-driven buff lines.

17 macros

  • /ui action toolbarSlot00;
    /pause 3;
    /ui action toolbarSlot01;
    /pause 3;
    /ui action toolbarSlot02;
    /pause 3;
    /macro combatloop;
    +2 more

    Cycles three toolbar abilities and repeats. Works for any combat profession because it addresses slots rather than named abilities.

  • /alias inv /invite;

    Aliases wrap a command behind a shorter name and can be called from macros. Useful for anything you type constantly but do not want a whole macro for.

  • ME
    /curestate poisoned;
    /pause 2;
    /curestate diseased;
    /pause 2;
    /curestate bleeding;

    Walks through the state cures so one button handles whichever condition has landed. The ones that do not apply fail harmlessly.

  • ME
    /ui action toolbarSlot00;
    /pause 3;
    /ui action toolbarSlot01;
    /pause 3;
    /tell %TT Buffs done, safe travels;

    Buffs your target, announces it and moves on. Doctor buff lines outside starports were a fixture of the game and ran almost entirely on macros like this.

  • /follow;
    /pause 1;

    Follows your current target until you move. SWG planets are enormous and following someone who knows the way is a genuine time saver.

  • /pause 0.1;
    /pause 1;
    /pause 5;

    The minimum is a tenth of a second, but anything under a full second is unreliable under load. Most working macros use two seconds or more between actions.

  • ME
    /healdamage;
    /pause 3;
    /healstate;
    /pause 3;

    Fires your heal at whoever you have selected and pauses long enough for the cooldown. Chain it into a loop for sustained group healing.

  • /invite;
    /pause 2;
    /join;

    Invites your target and then joins. Buff lines and hunting parties both start with this pair of commands.

  • /loot;
    /pause 2;
    /nextcorpse;

    Loots the corpse you have targeted. Chained onto the end of a combat macro it turns a grind into something you barely have to watch.

  • /ui action toolbarSlot00;
    /pause 4;
    /macro myloop;

    A macro that calls its own name on the last line runs forever. This one line is the reason SWG macros are remembered the way they are — and the reason you should always know how to stop one.

  • /say Selling resources at the bazaar;
    /gu Anyone need a doc buff?;

    SWG separates spatial chat from planet-wide channels. /say is local, /shout carries further, and guild chat keeps your city organised.

  • /ui action toolbarSlot00;
    /pause 2;

    Drives the interface directly by pressing a toolbar slot. Slots run 0 to 23 — the top row is 0 to 11 and the bottom row is 12 to 23 — which is how macros use abilities they cannot name directly.

Other SWG professions

Every profession shares the same macro syntax, so a good idea usually ports across.