Results 1 to 10 of 13

Thread: Frage zu Makros

Hybrid View

  1. #1
    Player
    Ashrak's Avatar
    Join Date
    Jun 2014
    Posts
    594
    Character
    Ashrak Teriel
    World
    Shiva
    Main Class
    Thaumaturge Lv 60
    Mein Problem ist inzwischen gelöst. Ich hab mir sagen lassen dass das Makro nicht komplett abbricht wenn es kein Ziel findet, sondern einfach weiter abgearbeitet wird. Deswegen sieht mein Makro inzwischen so aus:

    Code:
    /micon "Apokatastasis"
    /ac "Apokatastasis" <tt>
    /ac "Apokatastasis" <t>
    /ac "Apokatastasis" <2>
    /p Apokatastasis applied! Incoming magic damage reduced by 20% for 12 seconds! <se.4> <wait.12>
    /p Apokatastasis worn off! <se.11>


    @radioactive_lego

    I thought that macros stop completely if they cant find a target (for example, if Nael lift up). That's why I wanted to know whether a macro can be programmed such that it can autonomously to target a different target. With gimmicks like "if" and "else".
    (0)
    Last edited by Ashrak; 12-17-2014 at 06:20 PM.

  2. #2
    Player radioactive_lego's Avatar
    Join Date
    Jun 2014
    Posts
    391
    Character
    Viridia Black
    World
    Malboro
    Main Class
    Gladiator Lv 52
    Quote Originally Posted by Ashrak View Post
    Mein Problem ist inzwischen gelöst. Ich hab mir sagen lassen dass das Makro nicht komplett abbricht wenn es kein Ziel findet, sondern einfach weiter abgearbeitet wird. Deswegen sieht mein Makro inzwischen so aus:

    ...

    @radioactive_lego

    I thought that macros stop completely if they cant find a target (for example, if Nael lift up). That's why I wanted to know whether a macro can be programmed such that it can autonomously to target a different target. With gimmicks like "if" and "else".
    Nein. All macros operate without context with one exception; target. If you have the macro:

    /ac "stone"
    /ac "heal"

    Ist gut

    if you cast at a mob you will get stone. if you cast at a player, you will get cure.
    Otherwise, whatever is on top will cast if it can cast(.). With that in mind, a similar macro:

    /ac "heal"
    /ac "stone"

    Das makro wird nicht funktionen.

    This is no good since heal will cast (on yourself, even if HP is 100%) even if you have an enemy targeted, because it is the first in the macro.

    Again, sorry for not being auf deutch.
    (0)
    Last edited by radioactive_lego; 12-18-2014 at 04:59 AM.

  3. #3
    Player
    Zion14's Avatar
    Join Date
    Aug 2013
    Location
    Ul'dah
    Posts
    1,608
    Character
    Zion Omega
    World
    Shiva
    Main Class
    Paladin Lv 90
    Quote Originally Posted by Ashrak View Post
    Mein Problem ist inzwischen gelöst. Ich hab mir sagen lassen dass das Makro nicht komplett abbricht wenn es kein Ziel findet, sondern einfach weiter abgearbeitet wird.
    Och Ashrak, das hab ich dir doch schon am 04.11.14 gesagt:

    Quote Originally Posted by Zion14 View Post
    Das Makro überspringt dann die Zeile, gibt ne Fehlermeldung aus und fährt mit der nächsten Zeile fort.
    (0)