masamyyris 0 Posted September 13, 2017 Share Posted September 13, 2017 Has anyone succesfully made it so that bot goes to trainer and learn new skills? The skills need to be put into actionbar for them to work anyway how to make this all work? Link to comment https://wrobot.eu/forums/topic/7076-training-new-skills/ Share on other sites More sharing options...
Droidz 2738 Posted September 13, 2017 Share Posted September 13, 2017 Link to comment https://wrobot.eu/forums/topic/7076-training-new-skills/#findComment-32034 Share on other sites More sharing options...
Droidz 2738 Posted September 13, 2017 Share Posted September 13, 2017 Sample lua code: local spellNameInGame = "Charge"; local freeslot = -1; for i=1, 120, 1 do if not HasAction(i) then freeslot = i; break; end end if freeslot <= 0 then return; end local i = 1 while true do local spellName, spellRank = GetSpellName(i, BOOKTYPE_SPELL) if not spellName then break; end if spellName == spellNameInGame then PickupSpell(i, BOOKTYPE_SPELL); PlaceAction(freeslot); ClearCursor() end i = i + 1 end Link to comment https://wrobot.eu/forums/topic/7076-training-new-skills/#findComment-32035 Share on other sites More sharing options...
masamyyris 0 Posted September 15, 2017 Author Share Posted September 15, 2017 Cant seem to get it to work. I downloaded the plugin to plugin folder and it is activated in wrobot, but my char doesnt talk to the trainer or learn new spells, do I need to set that up somehow? Link to comment https://wrobot.eu/forums/topic/7076-training-new-skills/#findComment-32128 Share on other sites More sharing options...
Droidz 2738 Posted September 15, 2017 Share Posted September 15, 2017 You need to add trainer to your "npc db" (tab tools) (or your profile) Link to comment https://wrobot.eu/forums/topic/7076-training-new-skills/#findComment-32129 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