Remove old aa list send for experiment also want to merge from master...

This commit is contained in:
KimLS 2015-06-08 09:53:21 -07:00
parent 6515879c14
commit 3ee1c43ac4
2 changed files with 49 additions and 4 deletions

View File

@ -4218,6 +4218,51 @@ struct UseAA_Struct {
uint32 end;
};
//new AA stuff
struct AARankInfo_Struct
{
uint32 id;
int32 upper_hotkey_sid;
int32 lower_hotkey_sid;
int32 title_sid;
int32 desc_sid;
int32 level_req;
int32 cost;
uint32 seq;
uint32 current_level;
uint32 type;
int32 spell;
int32 spell_type;
int32 spell_refresh;
int32 classes;
int32 max_level;
int32 prev_id;
int32 next_id;
int32 total_cost;
int32 expansion;
int32 category;
uint8 expendable;
uint32 total_effects;
uint32 total_prereqs;
};
struct AARankPrereq_Struct
{
int32 aa_id;
int32 points;
};
struct AARankEffect_Struct
{
int32 effect_id;
int32 base1;
int32 base2;
int32 slot;
};
//old AA stuff
struct AA_Ability {
/*00*/ uint32 skill_id;
/*04*/ uint32 base1;

View File

@ -1377,10 +1377,10 @@ void Client::SendAA(uint32 id, int seq) {
}
void Client::SendAAList(){
int total = zone->GetTotalAAs();
for(int i=0;i < total;i++){
SendAA(0,i);
}
// int total = zone->GetTotalAAs();
// for(int i=0;i < total;i++){
// SendAA(0,i);
// }
}
uint32 Client::GetAA(uint32 aa_id) const {