Jump to content

Talents


mich125

Recommended Posts

How can i make this bot automaticly pick talents speciallization?

I am assuming it has smth to do with WRobot\FightClass\Talents files.

I found a macro in a different topic, but bot doesnt seem to use it.

Is it correct?


/run SetSpecialization(2)

/run TalentMicroButton:Click()
if PlayerTalentFrame then
    PlayerTalentFrameTab2:Click()
    
    PlayerTalentFrameTalentsTalentRow1Talent3:Click()
    PlayerTalentFrameTalentsTalentRow2Talent2:Click()
    PlayerTalentFrameTalentsTalentRow3Talent3:Click()
    PlayerTalentFrameTalentsTalentRow4Talent1:Click()
    PlayerTalentFrameTalentsTalentRow5Talent1:Click()
    PlayerTalentFrameTalentsTalentRow6Talent2:Click()
    
    PlayerTalentFrameCloseButton:Click()
end

Link to comment
Share on other sites

Hello, put all in one line like: 

/run SetSpecialization(2) TalentMicroButton:Click() if PlayerTalentFrame then PlayerTalentFrameTab2:Click() PlayerTalentFrameTalentsTalentRow1Talent3:Click() PlayerTalentFrameTalentsTalentRow2Talent2:Click() PlayerTalentFrameTalentsTalentRow3Talent3:Click() PlayerTalentFrameTalentsTalentRow4Talent1:Click() PlayerTalentFrameTalentsTalentRow5Talent1:Click() PlayerTalentFrameTalentsTalentRow6Talent2:Click() PlayerTalentFrameCloseButton:Click() end

 

Link to comment
Share on other sites

Ok i found out everything already, works perfect now:

1)I checked assign talents in advanced settings, it does use this macro every time it levels up.

2)I fixed this macro a bit so it wont try to change speciallization every level, maybe someone will find it usefull:

/run local x=GetSpecialization(); id, name = GetSpecializationInfo(x); if x ~= 2 then SetSpecialization(2) end; TalentMicroButton:Click(); if PlayerTalentFrame then PlayerTalentFrameTab2:Click(); PlayerTalentFrameTalentsTalentRow1Talent3:Click(); PlayerTalentFrameTalentsTalentRow2Talent2:Click(); PlayerTalentFrameTalentsTalentRow3Talent3:Click(); PlayerTalentFrameTalentsTalentRow4Talent1:Click(); PlayerTalentFrameTalentsTalentRow5Talent1:Click(); PlayerTalentFrameTalentsTalentRow6Talent2:Click(); PlayerTalentFrameTalentsTalentRow7Talent2:Click(); TalentMicroButton:Click(); end

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...