• Guest, HEROCRAFT PUBLIC RELEASE IS HAPPENING AN HOUR EARLIER! TONIGHT @ 7PM CST GET READY FOR IT! play.hc.to
    Read up on the guides and new systems! Here.
    View the LIVE Map here @ hc.to/map
    Stuck or have a problem? use "/pe create" to to open a ticket with staff (There are some known issues and other hotfixes we will be pushing asap)
  • Guest, Make sure to use our LAUNCHER! Read more here!

Macro Mod Coding Ideas and help!

Vongard

Legacy Supporter 7
Joined
Sep 6, 2011
Welcome!

We all know that macro mod can do some amazing things to help improve your experience on Herocraft.

If you have any macro's that may help the community or if you are looking for hep coding a macro please feel free to post here.

be sure to use the code tag for any code you share to preserve space!

Keep in mind that any macro that may automate any aspect of the game or give you a combat advantage is STRICTLY ILLEGAL!!!

Now Lets get to the fun stuff!

I'll start with an easy one!

Death Chest TImer!!

use the code below to point to the .txt file we will put the timer's code in!
Code:
$${$$DeathChest.txt}$$

Now simply click "create text file" and paste the following code inside!
Code:
log("Death Chest Timer on, 6 minutes until chest opens");
wait(60);
log("5 Minutes until chest opens");
wait(60);
log("4 Minutes until chest opens");
wait(60);
log("3 Minutes until chest opens");
wait(60);
log("2 Minutes until chest opens");
wait(60);
log("1 Minute until chest opens");
wait(30);
log("30 seconds until chest opens");
wait(20);
log("10 seconds until chest opens");
wait(5);
log("5 seconds until chest opens");
wait(2);
log("3");
wait(1);
log("2");
wait(1);
log("1");
wait(1);
log("Chest is now open.");
 
Last edited:
Top