$${
IFMATCHES(%CHATCLEAN%,"MrPepperoni used warsong");
SET(@#warsong, 6);
SET(@#warsongdur, 15);
SETLABEL(LABEL_WARSONGDUR, %@#warsongdur%s);
SETLABEL(LABEL_WARSONG, "Warsong");
SETPROPERTY(WARSONGDUR,colour,#FF09ED8E);
SETLABEL(LABEL_WARSONGCD, %@#warsong%s);
SETPROPERTY(WARSONGCD,colour,#FFB52D00);
SETPROPERTY(WARSONGDUR,visible,true);
DO()
IF(@#warsong=0);
BREAK;
ENDIF;
IF(@#warsongdur=0);
SETLABEL(LABEL_WARSONGDUR, "");
SETLABEL(LABEL_WARSONG, "");
SETPROPERTY(WARSONGDUR,visible,false);
ENDIF;
WAIT(1000ms);
DEC(@#warsong,1);
DEC(@#warsongdur, 1);
SETLABEL(LABEL_WARSONGCD, %@#warsong%s);
IF(@#warsongdur>0);
SETLABEL(LABEL_WARSONGDUR, %@#warsongdur%s);
ENDIF;;
WHILE(@#warsong>0);
SETLABEL(LABEL_WARSONGCD, "");
SETPROPERTY(WARSONGCD,colour,#FF66A8FF);
ENDIF;
}$$