Need help with a macro

Discussion in 'General Discussion' started by ttcheshier56, Apr 28, 2013.

  1. ttcheshier56

    ttcheshier56 Builder
    Builder ⛰️ Ex-President ⚒️⚒️

    Joined:
    Aug 24, 2012
    Messages:
    58
    Trophy Points:
    25,525
    Ratings:
    +4
    okay, so I want to combine these two macro scripts into one. how would i do that?
    (Macro 1)
    $${DO;ECHO(/sell 103);WAIT(120);LOOP}$$


    (Macro 2)
    $${
    IF(%SERVER% == "mc.ecocitycraft.com")
    DO();
    ECHO("/bal");
    WAIT(90);
    LOOP();
    ENDIF
    }$$
    thanks
    btw: i did try the "|" in between the two the first one only works
     
    #1 ttcheshier56, Apr 28, 2013
    Last edited: Apr 28, 2013
  2. JBuks

    JBuks Tycoon
    Builder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade

    Joined:
    Jun 18, 2012
    Messages:
    1,625
    Trophy Points:
    44,840
    Gender:
    Male
    Ratings:
    +507
    Code:
    $${
    IF(%SERVER% == "mc.ecocitycraft.com")
    DO();
    ECHO("/bal");
    WAIT(90);
    ECHO("/sell 103");
    WAIT(30);
    LOOP();
    ENDIF
    }$$