Resolved above 7.x

murdocmurat

Banned
banned
murdocmurat Rep
0
0
0
Rep
0
murdocmurat Vouches
0
0
0
Vouches
0
Posts
50
Likes
21
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 4 215 XP
hello can someone explain how can we make talent three to all learn and all spells like custom 255
 

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
509
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 11 100 XP
Can you give us more details about your issue by means which core and does 7.x means that it's a legion server ?
 

Reloac

Active member
Reloac Rep
2
0
0
Rep
2
Reloac Vouches
0
0
0
Vouches
0
Posts
42
Likes
31
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 1 55 XP
You will need to add the talent spells with a script to the TalentMap by using the function Player::AddTalent.

Code:
for (auto talent : sTalentStore)
{
    if (talent->ClassID != getClass())
        continue;
        
    if (talentInfo->SpecID && talentInfo->SpecID != player->GetUInt32Value(PLAYER_FIELD_CURRENT_SPEC_ID))
        continue;
    
    player->AddTalent(talent, player->GetActiveTalentGroup(), true);
}
player->SendTalentsInfoData(false);

This code will iterate the Talent.db2, and add talents if your spec and class equals the result. You can add this in an npc script or a command to test with. You may have to remove additional cheating checks for multi-talents in Player.cpp however this probably will learn you all the talents.
 

murdocmurat

Banned
banned
murdocmurat Rep
0
0
0
Rep
0
murdocmurat Vouches
0
0
0
Vouches
0
Posts
50
Likes
21
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 4 215 XP
and changing specialization you remove other one but i want to learn all of three
 

murdocmurat

Banned
banned
murdocmurat Rep
0
0
0
Rep
0
murdocmurat Vouches
0
0
0
Vouches
0
Posts
50
Likes
21
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 4 215 XP
Can you give us more details about your issue by means which core and does 7.x means that it's a legion server ?
its like custom 255 talent system i mean
 

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
509
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 11 100 XP

Rogue Rogue

Developer
Divine
Rogue Rep
2
0
0
Rep
2
Rogue Vouches
0
0
0
Vouches
0
Posts
609
Likes
126
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 11 215 XP

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
509
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 11 100 XP
Liked By 1 member :

murdocmurat

Banned
banned
murdocmurat Rep
0
0
0
Rep
0
murdocmurat Vouches
0
0
0
Vouches
0
Posts
50
Likes
21
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 4 215 XP

JadaDev

reaper-wow.com
Legend
JadaDev Rep
5
0
0
Rep
5
JadaDev Vouches
0
0
0
Vouches
0
Posts
514
Likes
509
Bits
2 YEARS
2 YEARS OF SERVICE
LEVEL 11 100 XP
thanks jada i hope it will work on new talent system after legion :D
Not sure it will, now you mentioned legion which i highly doubt it will. LMAO
I see you said 7.x but in details you mentioned nothing and when i asked you also didn't confirm and instead you said 255 so with that answer i directly thinked it's a 3.3.5a
 

3,389

1,271

9,555

428

Top