Help - Search - Member List - Calendar
Full Version: Added Features On your TitleBar
pRagnarok Online - The Lair of the Vampire Bot - Philippine Ragnarok Online Bot > Philippine Ragnarok Online - Bots/Servers/Packets/Hexed Clients/Guides/Config.txt > Openkore / Visualkore
Pages: 1, 2
maztahv00d00
Ever wanted to see how many zeny you have and how many times you died w/out typing "exp" or "s" in your console?

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 .... heh.gif

This has been tested with Openkore 1.9

no1.gif no1.gif no1.gif
blueknight
Lets get some feedback with the some people... wala kasi akong time para matest yan e... for the mean time i-pin natin to... no1.gif
maztahv00d00
no problem... thanks....

need screenshots?

heh.gif
blueknight
sure! why not.... no1.gif mas maganda sana kung pati HP and SP pede i-display yung kagaya sa xvkore
maztahv00d00
Sure... give me until the end of this week... during my restdays....


heh.gif gg.gif
maztahv00d00
This is the modified titlebar for Openkore, tested on either WXSTART.EXE and START.EXE....

As per requested: biggrin.gif

Instructions:

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. Modified code:

#=============================
# Set interface title
my $charName = $chars[$config{'char'}]{'name'};
$charName .= ': ' if defined $charName;
if ($conState == 5) {
my ($title, $basePercent, $jobPercent, $weight, $pos, $myzeny, $mydeath, $myHP, $mySP);

$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'});
$myHP = sprintf("%.2f", percent_hp($char));
$mySP = sprintf("%.2f", percent_sp($char));
$myzeny = formatNumber($char->{'zenny'});
$mydeath = int($char->{'deathCount'});
$title = "${charName} B$chars[$config{'char'}]{'lv'} ($basePercent%), J$chars[$config{'char'}]{'lv_job'}($jobPercent%)(HP: $myHP)(SP: $mySP)(Zenny: $myzeny)(Death: $mydeath) : w$weight${pos} - maztahv00d00 titlebar ver 1.0";
$interface->title($title);

} elsif ($conState == 1) {
$interface->title("${charName}Not connected - maztahv00d00 titlebar ver 1.0");
} else {
$interface->title("${charName}Connecting - maztahv00d00 titlebar ver 1.0");
}
#=============================

COOL!!!!

blueknight
Nice.... Here is the output...

user posted image
no1.gif
maztahv00d00
thanks... hehehe...


heh.gif

no1.gif
Chrisha

thanks for this added feature on title bar... kis.gif
i also used to edit my functions.pl and works fine no1.gif

here's my screeny: (newbie account ok.gif )
user posted image

CODE: (tested on both WXSTART.EXE and START.EXE)
# Set interface title
my $charName = $chars[$config{'char'}]{'name'};
$charName .= ': ' if defined $charName;
if ($conState == 5) {
my ($title, $basePercent, $jobPercent, $weight, $pos, $myzeny, $mydeath, $myHP, $mySP, $signZ, $signDeath, $signHP, $signSP);

$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'});
$myHP = sprintf("%.2d", percent_hp($char));
$mySP = sprintf("%.2d", percent_sp($char));
$myzeny = formatNumber($char->{'zenny'});
$signZ = sprintf("z");
$signDeath = sprintf("death");
$signHP = sprintf("HP");
$signSP = sprintf("SP");
$mydeath = int($char->{'deathCount'});
$title = "${charName} B$chars[$config{'char'}]{'lv'}($basePercent%)/J$chars[$config{'char'}]{'lv_job'}($jobPercent%) |$myHP%$signHP/$mySP%$signSP| $myzeny$signZ $mydeath$signDeath | w$weight${pos} - by Chrisha";
$interface->title($title);

} elsif ($conState == 1) {
$interface->title("${charName}Non-Aggressive Mode - CTB ver 1.0");
} else {
$interface->title("${charName}Aggressive Mode - CTB ver 1.0");
}



Defender
okay toh. heh.gif no1.gif

bulokako
wala bang pang 1.6.x?

kasi wala na ata yung 1.9 sa openkore site eh hmm.gif

well kung meron man hindi ko siya makita

wala na siya dun sa downloads section tsaka medyo tumingin tingin

ako sa dun sa forums hmm.gif
blueknight
I've just checked it right now... andun pa rin naman sya sa download section no1.gif
maximus
hehehe Astig ok na din skin kita ko na mga Hp n SP n Pera happy.gif heh.gif heh.gif no1.gif thx.gif thx.gif ...

ask ko lng po possible ba na meron map Openkore 1.9? o na late nalng ako sa pag babasa ng Topic? ty
borlet
QUOTE(maximus @ Jun 12 2006, 03:48 PM)
hehehe Astig ok na din skin kita ko na mga Hp n SP n Pera happy.gif heh.gif  heh.gif  no1.gif  thx.gif  thx.gif ...

ask ko lng po possible ba na meron map Openkore 1.9? o na late nalng ako sa pag babasa ng Topic? ty
*



wat do u mean?pkiliwanagan lng poh... ok.gif

title bar is great!galing!!sna pde rin ma modify "ks" sa openkore
ehehe e4.gif
RenzLuigi
ModifiedTitlebar: Not working in OpenKore SVN

hehe.. la lang.. ayaw gumana eh.. or mali lang ginawa ko.. pki-tngin nga kung anong iba ng functions.pl ko.. e2 po:


CODE
my $charName = $chars[$config{'char'}]{'name'};
my $title;
$charName .= ': ' if defined $charName;
if ($conState == 5) {
 my ($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'});

 # Translation Comment: Interface Title with character status
 $title = TF("%s B%s (%s), J%s (%s) : w%s%s - %s",
  ${charName}, $chars[$config{'char'}]{'lv'}, $basePercent.'%',
  $chars[$config{'char'}]{'lv_job'}, $jobPercent.'%',
  $weight, ${pos}, $Settings::NAME);

} elsif ($conState == 1) {
 # Translation Comment: Interface Title
 $title = TF("%sNot connected - %s", ${charName}, $Settings::NAME);
} else {
 # Translation Comment: Interface Title
 $title = TF("%sConnecting - %s", ${charName}, $Settings::NAME);
}
my %args = (return => $title);
Plugins::callHook('mainLoop::setTitle',\%args);
$interface->title($args{return});

Benchmark::end("mainLoop_part3") if DEBUG;

Plugins::callHook('mainLoop_post');
Benchmark::end("mainLoop") if DEBUG;

ang hirap i-edit.. d ko alam kung anong mali ko.. heh.gif
carlos1018
Nasan ung OPENKORE 1.9 d ko sya makita sa download PAGE T_T sob.gif sob.gif
Bench
We only produce Vampirekore xvkore program..
blueknight
@carlos1018
read the main section ng openkore makikita mo yung mga links ng openkore download
maztahv00d00
MODIFIED TITLE BAR FOR OPENKORE 2.0.2 - WXSTART.EXE

Replace the code in functions.pl:

====================
# Set interface title
my $charName;
my $title;
$charName = "$char->{name}: " if ($char);
if ($net->getState() == Network::IN_GAME) {
my ($basePercent, $jobPercent, $weight, $pos, $myzenny, $myHP, $mySP);

assert(defined $char);
$basePercent = sprintf("%.2f", $char->{exp} / $char->{exp_max} * 100) if ($char->{exp_max});
$jobPercent = sprintf("%.2f", $char->{exp_job} / $char->{exp_job_max} * 100) if ($char->{exp_job_max});
$weight = int($char->{weight} / $char->{weight_max} * 100) . "%" if ($char->{weight_max});
$pos = " : $char->{pos_to}{x},$char->{pos_to}{y} " . $field->name() if ($char->{pos_to} && $field);
$myzenny = formatNumber($char->{'zenny'});
$myHP = sprintf("%.2f", percent_hp($char));
$mySP = sprintf("%.2f", percent_sp($char));

# Translation Comment: Interface Title with character status
$title = TF("%s[B:%s(%s) J:%s(%s)][HP:%s SP:%s][Zenny:%s][W:%s][Pos%s] - modified by maztahv00d00",
$charName, $char->{lv}, $basePercent . '%',
$char->{lv_job}, $jobPercent . '%',
$myHP . '%', $mySP . '%', $myzenny,
$weight, $pos);
#$weight, $pos, $Settings::NAME);

} elsif ($net->getState() == Network::NOT_CONNECTED) {
# Translation Comment: Interface Title
$title = TF("%sNot connected - modified by maztahv00d00", $charName);
} else {
# Translation Comment: Interface Title
$title = TF("%sConnecting - modified by maztahv00d00", $charName);
}

====================

hmm.gif no1.gif
mouse
thx po for the modified title bar.. i'll try this one! no1.gif
kazmot_08
QUOTE
MODIFIED TITLE BAR FOR OPENKORE 2.0.2 - WXSTART.EXE

Replace the code in functions.pl:

====================
# Set interface title
my $charName;
my $title;
$charName = "$char->{name}: " if ($char);
if ($net->getState() == Network::IN_GAME) {
my ($basePercent, $jobPercent, $weight, $pos, $myzenny, $myHP, $mySP);

assert(defined $char);
$basePercent = sprintf("%.2f", $char->{exp} / $char->{exp_max} * 100) if ($char->{exp_max});
$jobPercent = sprintf("%.2f", $char->{exp_job} / $char->{exp_job_max} * 100) if ($char->{exp_job_max});
$weight = int($char->{weight} / $char->{weight_max} * 100) . "%" if ($char->{weight_max});
$pos = " : $char->{pos_to}{x},$char->{pos_to}{y} " . $field->name() if ($char->{pos_to} && $field);
$myzenny = formatNumber($char->{'zenny'});
$myHP = sprintf("%.2f", percent_hp($char));
$mySP = sprintf("%.2f", percent_sp($char));

# Translation Comment: Interface Title with character status
$title = TF("%s[B:%s(%s) J:%s(%s)][HP:%s SP:%s][Zenny:%s][W:%s][Pos%s] - modified by maztahv00d00",
$charName, $char->{lv}, $basePercent . '%',
$char->{lv_job}, $jobPercent . '%',
$myHP . '%', $mySP . '%', $myzenny,
$weight, $pos);
#$weight, $pos, $Settings::NAME);

} elsif ($net->getState() == Network::NOT_CONNECTED) {
# Translation Comment: Interface Title
$title = TF("%sNot connected - modified by maztahv00d00", $charName);
} else {
# Translation Comment: Interface Title
$title = TF("%sConnecting - modified by maztahv00d00", $charName);
}


gumagana din po ba to sa 2.0.3 ver??? and pano po gawin ung WXSTART? wala pa po kc ako nun eh... please help!
jeneel
sa wxstart lang po un gagana, di pwede dun sa default start.exe na kasama pag nd DL ng bot? pano po pag walang wxstart. san po un makukuha? openkore 2.0.2 po ung sakin thx
kazmot_08
QUOTE
sa wxstart lang po un gagana, di pwede dun sa default start.exe na kasama pag nd DL ng bot? pano po pag walang wxstart. san po un makukuha? openkore 2.0.2 po ung sakin thx


nag-search lng po ako tpos nkita ko ung site ng openkore regarding wxstart, ida-download m pla cya. seperated program cya hnd kasama sa 2.0.2/3 package. pagtapos mong ma dl eh extract m nlng sa folder nung O.K.

@maztahvoodoo

tried and tested na...galing!
jeneel
ahh. nakita ko na..nadownload ko na din hehe thank you. ganda pala pag wxstart!hehe salamat
LucidNightmare
Does anybody know kung pano iedit ung functions.pl ng openkore 2.0.2 para maging kill steal? un n lng kc kulang ko eh. lugi kc ako sa mga kill steal bots ng ibang players. laging "dropping target - you will not kill steal others" ang natatanggap ko sa console.

please help me nmn po...

thanks in advance! thx.gif thx.gif thx.gif thx.gif
junkamote
thanks po functions post il try it today sana maintindihan ko.. /heh
sonypsp
wow thank you po, nagustuhan ko yung may Death count para alam mo kung ilang beses namatay yung character mo /heh
kris801h
san po ba pwd kumuha ng bgong functions.pl pag nababoy ung functions.pl mo at hnd na maistart ang bot

kazmot_08
@kris801h

eh d dun po sa zip file nung na-dl mong bot program... extract mo ulit un, dun mkikita m ulit un!
RenzLuigi
yup.. sa zip file lang.. or para maiwasan talaga, before making and stupid things para mababoy , make sure may back-up din kayo nung file just in-case na nabura nyo na yung ZIP file.. friendly reminder lang po.. biggrin.gif
kazmot_08
magkaka-prob k lng kng 'RUN' ang option na pinili mo, kc automatically na diretso extract lng un, kng magkaganon, dl ka nlng ulit. unlike sa 'SAVE', it serves as a back-up na rin... always choose the 'SAVE' option, for security purpose n rin, at least ma-i-scan mo pa cya. smile.gif
kris801h
QUOTE(kazmot_08 @ Aug 23 2007, 12:00 AM)
@kris801h

eh d dun po sa zip file nung na-dl mong bot program... extract mo ulit un, dun mkikita m ulit un!
*




thx pero..uala na ung zip file co nun dinelete co na pero ayos na nag dl na lng ule aco ng bot ok.gif

@pwd po ba keo mag post ng buong content nung functions.pl..to make it easier..
ok.gif
kufalups
ok lang ba sa forums na to ang KS openkore bot?
kris801h
i think bwal yta..xe kun ukei lan adi sna meron kna pong nkita..
kufalups
@kris801h

honestly ndi pa ko naghahanap. biggrin.gif ehehe...naitanong ko lang naman po kung ok lang usapang KS d2...para kung sakali man...walang maooffend sa usapan dba po hehe.tongue.gif
squidward
ayos!!
natez_luna
muka pala xang Php...hehehe
radakazt
ayos nmn yan
michi
eh sa 2.0.4 poh meron b?????
Yoki
nice tread..just making reply to access download center. heh.gif
emjoy0329
wewewewewe hehe
smyzzyx
nice happy.gif
isekitt
nice one bro!
vizardvenx
papz wala po ba kau sa 2.0.5? pa enge po.. thx.gif
storekeeper
w8ting also for v. 2.0.5
lilyhena
oki yan ah pag meron na yan sa version 2.0.5..hahaha!
Cadeath
meron po pero may kunting changes
hehe hndi ko p n try if totoong my changes ^^
backup ka lang po ng function.pl para sure.
gwaporanel
d q po makita... @_____@ ;(( sob.gif
kiaro099
QUOTE(maztahv00d00 @ Aug 11 2007, 08:07 AM)
MODIFIED TITLE BAR FOR OPENKORE 2.0.2 - WXSTART.EXE

Replace the code in functions.pl:

====================
# Set interface title
my $charName;
my $title;
$charName = "$char->{name}: " if ($char);
if ($net->getState() == Network::IN_GAME) {
my ($basePercent, $jobPercent, $weight, $pos, $myzenny, $myHP, $mySP);

assert(defined $char);
$basePercent = sprintf("%.2f", $char->{exp} / $char->{exp_max} * 100) if ($char->{exp_max});
$jobPercent = sprintf("%.2f", $char->{exp_job} / $char->{exp_job_max} * 100) if ($char->{exp_job_max});
$weight = int($char->{weight} / $char->{weight_max} * 100) . "%" if ($char->{weight_max});
$pos = " : $char->{pos_to}{x},$char->{pos_to}{y} " . $field->name() if ($char->{pos_to} && $field);
$myzenny = formatNumber($char->{'zenny'});
$myHP = sprintf("%.2f", percent_hp($char));
$mySP = sprintf("%.2f", percent_sp($char));

# Translation Comment: Interface Title with character status
$title = TF("%s[B:%s(%s) J:%s(%s)][HP:%s SP:%s][Zenny:%s][W:%s][Pos%s] - modified by maztahv00d00",
  $charName, $char->{lv}, $basePercent . '%',
  $char->{lv_job}, $jobPercent . '%',
  $myHP . '%', $mySP . '%', $myzenny,
  $weight, $pos);
  #$weight, $pos, $Settings::NAME);

} elsif ($net->getState() == Network::NOT_CONNECTED) {
# Translation Comment: Interface Title
$title = TF("%sNot connected - modified by maztahv00d00", $charName);
} else {
# Translation Comment: Interface Title
$title = TF("%sConnecting - modified by maztahv00d00", $charName);
}

====================

hmm.gif  no1.gif
*



ask lng kung pde pltan yung HP and SP ng death count or khet yung zeny na lng pltan kse yung iba di na kikita or na ba basa cause may max characters(as in letters) pde pkta sa title bar...sana gawa ng meron death count na ksama sa title bar... ok.gif
kiaro099
weeee... ok.gif nkuha ko na po yung ask ko heh.gif

e2 yung gnawa ko sa functions.pl

=====================================================
# Set interface title
my $charName = $chars[$config{'char'}]{'name'};
my $title;
$charName .= ': ' if defined $charName;
if ($conState == 5) {
my ($title, $basePercent, $jobPercent, $weight, $pos, $myzeny, $mydeath, $myHP, $mySP);

$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'});
$myHP = sprintf("%.2f", percent_hp($char));
$mySP = sprintf("%.2f", percent_sp($char));
$myzeny = formatNumber($char->{'zenny'});
$mydeath = int($char->{'deathCount'});
$title = "${charName} B$chars[$config{'char'}]{'lv'} ($basePercent%), J$chars[$config{'char'}]{'lv_job'}($jobPercent%)(HP: $myHP)(SP: $mySP)(Zenny: $myzeny)(Death: $mydeath) : w$weight${pos} - maztahv00d00 titlebar ver 1.0";
$interface->title($title);


} elsif ($net->getState() == Network::NOT_CONNECTED) {
# Translation Comment: Interface Title
$title = TF("%sNot connected - modified by maztahv00d00", $charName);
} else {
# Translation Comment: Interface Title
$title = TF("%sConnecting - modified by maztahv00d00", $charName);
}
=====================================================

yan meron death count... sana may mka pansin sa gnawa ko biggrin.gif sna nmn may mag TY sob.gif sna nka 2long aq heh.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2012 Invision Power Services, Inc.