Hi, i look in the gtsdll.ini, and i find the bug: alias -l getbar call for %char1 & %char2 but the variables are not created anywhere in the script...
If you wanna use your own chars in the bar you must create the %char1 & %char2 variables.

Edit: i have corrected the bug (using $hget(GTSDll_settings,cl_bar_char*) instead %char*), i give you the good alias.
alias -l getbar {
var %cl1 $gettok($1-,1,44)
var %cl2 $gettok($1-,2,44)
var %cl3 $gettok($1-,3,44)
var %cnt $gettok($1-,4,44)
var %char1 $hget(GTSDll_settings,cl_bar_char1)
var %char2 $hget(GTSDll_settings,cl_bar_char2)
if (c isincs $gettok($chan($active).mode,1,32)) {
if ($strip(%char1) == $strip(%char2)) {
var %char1 $chr(124)
var %char2 -
}
}
var %btext $iif(%cl2 != -1, $+ %cl2,) $+ $str(%char1,$round($calc(%cnt * %cl1 / 100),0)) $+ $iif(%cl3 != -1, $+ %cl3,) $+ $str(%char2,$round($calc((100 - %cnt) * %cl1 / 100),0))
return %btext
}
Sorry for my english, i'm a french guy... :/