Quote:
Originally Posted by Budaworm
I searched through the wiki and found the command:
SetEXP(set_exp, set_aaxp, resexp=false);
So if you want to add an aapoint do:
$client->SetEXP($client->GetEXP(),24000000,0);
That will add 1 aapoint. Though im not sure what the resexp=false means.
|
This will not add one aa point, it will set it to one aa point which is not the same. You would need to do $client->SetEXP($client->GetEXP(), $client->GetAAXP() + 24000000,0); except the perl_client interface does not implement the GetAAXP() method that is present in the client. So you cannot use that function unless somebody modifies perl_client.cpp to include it.