Toolbar Clock
Platform: mIRC
Published Dec 27, 2011
Updated Dec 27, 2011
Simple script which puts your timestamp in your toolbar.
Commands are /startclock and /stopclock
Screenshot is of my own personal timestamp being used.
EDIT: uses your background color, so you shouldn't have any issues seeing it.
on *:LOAD:{
set %clock.on.start $input(Would you like the clock to start at startup?,yw,Toolbar Clock)
}
on *:START:{
if (%clock.on.start) { startclock }
}
alias startclock {
window -pBw0hf +d @clock -1 -1 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawrect -nf @clock $color(background) 1 0 0 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawtext -p @clock 0 consolas 12 1 1 $timestamp
if (!$toolbar(clock)) { toolbar -au clock "Clock" @clock }
.timerclock 0 1 clock.cont
}
alias clock.cont {
window -pBw0hf +d @clock -1 -1 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawrect -nf @clock $color(background) 1 0 0 $calc($width($timestamp,consolas,12,0,1) + 2) 18
drawtext -p @clock 0 consolas 12 1 1 $timestamp
toolbar -up clock @clock
}
alias stopclock {
.timerclock off
toolbar -d clock
close -@ @clock
}