View Single Post
  #30  
Old 09-15-2015, 01:44 PM
N0ctrnl's Avatar
N0ctrnl
Discordant
 
Join Date: Jan 2007
Posts: 443
Default

I made the following modification to the Leaderboards.pl script to report unbuffed hitpoints. Just in case anybody hadn't figure it out yet.

Code:
        my $hp1 = $client->GetMaxHP();
        my $hp2 = $client->GetSpellHPBonuses();
        my $hp = ($hp1 - $hp2);
Reply With Quote