View Single Post
  #8  
Old 12-04-2019, 11:03 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Quote:
Originally Posted by Huppy View Post
changed the plan later and put the port script on a_jester_of_bristlebane.
Chaotic Jesture is the name of the vet AA. The npc is (see above). If you want to assign that AA to new toons :
In global_player.pl
Code:
sub EVENT_CONNECT {
    my %vet_aa = (
        483 => [0, 1, 1] ## Chaotic Jester
    );
    my $age = $client->GetAccountAge();
    for (my ($aa, $v) = each %vet_aa) {
        if ($v[2] && ($v[1] || $age >= $v[0])) {
            $client->GrantAlternateAdvancementAbility($aa, 1);
        }
    }
}
__________________
Hanging out at Antonica.World
Reply With Quote