I just downloaded a statusbar from elite scriptaz, and i've managed to change the text and stuff, but it has some icon things, but i don't know how to add them. here is the code below.
alias statusbar {
;Alias for the status bar
 dll $ktools CreateSb
;sbparts - sets the size of the bars you will fix this up your self. to what ever you make it into.
 dll $ktools SbSetParts 160 459 790 -1
------;Sets the icon you want if you want to change them you will have to set your dir and open it and chose the icon you want.
 dll $ktools SbAddIcon 21, $+ pics\qnx.icl
 dll $ktools SbAddIcon 0, $+ pics\qnx.icl
 dll $ktools SbAddIcon 51, $+ pics\qnx.icl
 dll $ktools SbAddIcon 17, $+ pics\qnx.icl
;Number of boxers for the information you can set as much as you want. on the information you want in the status bar
 dll $ktools SbSetIcon 0 > 0
 dll $ktools SbSetIcon 1 > 1
 dll $ktools SbSetIcon 2 > 2
 dll $ktools SbSetIcon 3 > 3
-----
;geting to the information you want in the boxers now. you can set diff styles in the status bar as i will show you soon just school down to -styles
 dll $ktools SbSetText 0 > popout > blah
 dll $ktools SbSetText 1 > popout > blah
 dll $ktools SbSetText 2 > popout > blah
 dll $ktools SbSetText 3 > popout > blah
 .timerbar 0 1 stupdate
}
alias stupdate {
 dll $ktools SbSetText 0 > popout > blah
 dll $ktools SbSetText 1 > popout > blah
 dll $ktools SbSetText 2 > popout > blah
 dll $ktools SbSetText 3 > popout > blah
}
inbetween the two ----- is all the code for the icons i think. remove before trying the code
you will need an alias for ktools. what im realy asking for help for is to add a different icon to each box. i did egt an icon in there, after i opened it, and typed /statusbar, an icon would appear in the 1st box. i do it again and the same icon would appear in the 2nd box and so on...