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)
	
	
		
			
	
			
			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;
}$$
		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;
}$$