Follow this instruction as is:
1. Make a backup of your /src/functions.pl
2. Use Wordpad or Notepad, open the functions.pl
3. Look/find the string "# Set interface title" w/out the quotes
4. This is the original code:
#=============================
# Set interface title
my $charName = $chars[$config{'char'}]{'name'};
$charName .= ': ' if defined $charName;
if ($conState == 5) {
my ($title, $basePercent, $jobPercent, $weight, $pos);
$basePercent = sprintf("%.2f", $chars[$config{'char'}]{'exp'} / $chars[$config{'char'}]{'exp_max'} * 100) if $chars[$config{'char'}]{'exp_max'};
$jobPercent = sprintf("%.2f", $chars[$config{'char'}]{'exp_job'} /$ chars[$config{'char'}]{'exp_job_max'} * 100) if $chars[$config{'char'}]{'exp_job_max'};
$weight = int($chars[$config{'char'}]{'weight'} / $chars[$config{'char'}]{'weight_max'} * 100) . "%" if $chars[$config{'char'}]{'weight_max'};
$pos = " : $char->{pos_to}{x},$char->{pos_to}{y} $field{'name'}" if ($char->{pos_to} && $field{'name'});
$title = "${charName} B$chars[$config{'char'}]{'lv'} ($basePercent%), J$chars[$config{'char'}]{'lv_job'}($jobPercent%) : w$weight${pos} - $Settings::NAME";
$interface->title($title);
} elsif ($conState == 1) {
$interface->title("${charName}Not connected - $Settings::NAME");
} else {
$interface->title("${charName}Connecting - $Settings::NAME");
}
#=============================
5. Replace it with this:
#=============================
# Set interface title
my $charName = $chars[$config{'char'}]{'name'};
$charName .= ': ' if defined $charName;
if ($conState == 5) {
my ($title, $basePercent, $jobPercent, $weight, $pos, $myzeny, $mydeath);
$basePercent = sprintf("%.2f", $chars[$config{'char'}]{'exp'} / $chars[$config{'char'}]{'exp_max'} * 100) if $chars[$config{'char'}]{'exp_max'};
$jobPercent = sprintf("%.2f", $chars[$config{'char'}]{'exp_job'} /$ chars[$config{'char'}]{'exp_job_max'} * 100) if $chars[$config{'char'}]{'exp_job_max'};
$weight = int($chars[$config{'char'}]{'weight'} / $chars[$config{'char'}]{'weight_max'} * 100) . "%" if $chars[$config{'char'}]{'weight_max'};
$pos = " : $char->{pos_to}{x},$char->{pos_to}{y} $field{'name'}" if ($char->{pos_to} && $field{'name'});
$myzeny = int($char->{'zenny'});
$mydeath = int($char->{'deathCount'});
$title = "${charName} B$chars[$config{'char'}]{'lv'} ($basePercent%), J$chars[$config{'char'}]{'lv_job'}($jobPercent%) (Zennies: $myzeny) (Death: $mydeath) : w$weight${pos} - modified by maztahv00d00";
$interface->title($title);
} elsif ($conState == 1) {
$interface->title("${charName}Not connected - $Settings::NAME");
} else {
$interface->title("${charName}Connecting - $Settings::NAME");
}
#=============================
Of course, you will change the name ... hehehe ....
This has been tested with Openkore 1.9

