mich125 8 Posted January 25, 2017 Share Posted January 25, 2017 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 https://wrobot.eu/forums/topic/4853-talents/ Share on other sites More sharing options...
Droidz 2738 Posted January 26, 2017 Share Posted January 26, 2017 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 https://wrobot.eu/forums/topic/4853-talents/#findComment-22468 Share on other sites More sharing options...
mich125 8 Posted January 26, 2017 Author Share Posted January 26, 2017 Thanks! And when is bot using this macro? Every time he levels up? Do i have to check option "assign talents" in general settings for it? Link to comment https://wrobot.eu/forums/topic/4853-talents/#findComment-22469 Share on other sites More sharing options...
mich125 8 Posted January 26, 2017 Author Share Posted January 26, 2017 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 Bronson and Razzue 2 Link to comment https://wrobot.eu/forums/topic/4853-talents/#findComment-22509 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now