• 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!

Cooldown Bars Video Guide

Ahrall

Legacy Supporter 5
Joined
Feb 28, 2012
Location
Beautiful sunny Californ-i-a
A few people asked me to do a video guide on how to get the cooldown bars working so here it is. Visual learners rejoice!
All credit to @Jloy1 for this game changing discovery
His thread:
http://herocraftonline.com/main/threads/create-gui-elements-in-macro-mod-cooldowns-mana-bar.52934/


The text code that I used in the video (I recommend you copy his though)
$${
IFMATCHES(%CHATCLEAN%,"Ahrall used Backflip");
SET(@#backflip, 6);
SETPROPERTY(BACKFLIP,colour,#FFB52D00);
DO()
IF(@#backflip=0);
BREAK;
ENDIF;
WAIT(1000ms);
DEC(@#backflip,1);
WHILE(@#backflip>0);
SETPROPERTY(BACKFLIP,colour,#FF66A8FF);
ENDIF;
}$$
 

JupiterRome

Legacy Supporter 5
Joined
Mar 24, 2013
Location
l
A few people asked me to do a video guide on how to get the cooldown bars working so here it is. Visual learners rejoice!
All credit to @Jloy1 for this game changing discovery
His thread:
http://herocraftonline.com/main/threads/create-gui-elements-in-macro-mod-cooldowns-mana-bar.52934/


The text code that I used in the video (I recommend you copy his though)
$${
IFMATCHES(%CHATCLEAN%,"Ahrall used Backflip");
SET(@#backflip, 6);
SETPROPERTY(BACKFLIP,colour,#FFB52D00);
DO()
IF(@#backflip=0);
BREAK;
ENDIF;
WAIT(1000ms);
DEC(@#backflip,1);
WHILE(@#backflip>0);
SETPROPERTY(BACKFLIP,colour,#FF66A8FF);
ENDIF;
}$$
I'm Pretty sure this worked thanks.... But it spammed the $$<DruidCD.txt> In chat, any fix?
 

w0nd3rb0y

Legacy Supporter 5
Joined
May 4, 2012
Location
Charlotte, North Carolina
A few people asked me to do a video guide on how to get the cooldown bars working so here it is. Visual learners rejoice!
All credit to @Jloy1 for this game changing discovery
His thread:
http://herocraftonline.com/main/threads/create-gui-elements-in-macro-mod-cooldowns-mana-bar.52934/


The text code that I used in the video (I recommend you copy his though)
$${
IFMATCHES(%CHATCLEAN%,"Ahrall used Backflip");
SET(@#backflip, 6);
SETPROPERTY(BACKFLIP,colour,#FFB52D00);
DO()
IF(@#backflip=0);
BREAK;
ENDIF;
WAIT(1000ms);
DEC(@#backflip,1);
WHILE(@#backflip>0);
SETPROPERTY(BACKFLIP,colour,#FF66A8FF);
ENDIF;
}$$
set CD time in progress bar to 1 second less than actual cd. So this example will be 59
 

DanielH101

Coal
Joined
Apr 6, 2014
Location
Hong Kong, China
A few people asked me to do a video guide on how to get the cooldown bars working so here it is. Visual learners rejoice!
All credit to @Jloy1 for this game changing discovery
His thread:
http://herocraftonline.com/main/threads/create-gui-elements-in-macro-mod-cooldowns-mana-bar.52934/


The text code that I used in the video (I recommend you copy his though)
$${
IFMATCHES(%CHATCLEAN%,"Ahrall used Backflip");
SET(@#backflip, 6);
SETPROPERTY(BACKFLIP,colour,#FFB52D00);
DO()
IF(@#backflip=0);
BREAK;
ENDIF;
WAIT(1000ms);
DEC(@#backflip,1);
WHILE(@#backflip>0);
SETPROPERTY(BACKFLIP,colour,#FF66A8FF);
ENDIF;
}$$
You are a god man, keep making these kind of videos!
 

CoolBeans279

Legacy Supporter 3
Joined
Jan 6, 2014
Location
uremom
Messing around on test trying to figure these out, got jump working for goon. BUT when i use it, it only fills up a tiny TINY tiny bit of the progress bar D:
 
Top