I've been using band.dll recently and have a simple alias (like most people) to show the bandwidth up and down, i wanted to spice it up a bit so i'm asking for some help to make it show the following..


currently:

<nick> Down: 234Kb/s Up: 5Kb/s

what i'd like it to show

<nick> Down: 234Kb/s [||||||||--] Up: 5KB/s [||||----] Records, Down: 245Kb/s Up: 31Kb/s

Code:
  
alias band1 { return Down: $_band_dn $+ Kb/s Up: $_band_up $+ Kb/s }
alias band { return $dll($shortfn(system\Dll\band.dll),$1,$2) }
alias _band_up { return $gettok($band(band,_),5,32) }
alias _band_dn { return $gettok($band(band,_),4,32) }  


It'd be great if anyone could help!