ly446 0 Posted April 17, 2019 Share Posted April 17, 2019 I'm making scripts.Encounter this problem: How to let the character learn the specified Spell Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/ Share on other sites More sharing options...
Droidz 2738 Posted April 17, 2019 Share Posted April 17, 2019 Hello, in your profile or in your "NPC DB" (tab "tools") add npc trainer and enable option train new spell Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-52849 Share on other sites More sharing options...
ly446 0 Posted April 17, 2019 Author Share Posted April 17, 2019 that is NPC DB Screenshot,but where is the "enable option train new spell" Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-52852 Share on other sites More sharing options...
Droidz 2738 Posted April 17, 2019 Share Posted April 17, 2019 in advanced general settings Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-52855 Share on other sites More sharing options...
ly446 0 Posted April 17, 2019 Author Share Posted April 17, 2019 I just want the character to learn one of the Spell I want, not all of them. Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-52857 Share on other sites More sharing options...
ly446 0 Posted April 18, 2019 Author Share Posted April 18, 2019 ANYONE CAN HELP ME!THX! Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-52879 Share on other sites More sharing options...
Droidz 2738 Posted April 18, 2019 Share Posted April 18, 2019 No default feature for that sorry, if you use quest profile you can add step for that, or with plugin but you need a good knowledge of Wow and WRobot. Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-52881 Share on other sites More sharing options...
ly446 0 Posted April 23, 2019 Author Share Posted April 23, 2019 How can i add step for that,please tell me Specific code,Thank you very much! Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-52966 Share on other sites More sharing options...
Gargaroth95 1 Posted May 6, 2019 Share Posted May 6, 2019 deleted Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53337 Share on other sites More sharing options...
TheSmokie 242 Posted May 6, 2019 Share Posted May 6, 2019 You shouldn’t have to restart the bot. It should auto load the profile with new spells. i am will make a leveling fightclass tomorrow when I wake up for you to help. Give me say 15 to 20 hours and I’ll have a good one for you Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53340 Share on other sites More sharing options...
Gargaroth95 1 Posted May 6, 2019 Share Posted May 6, 2019 Thanks! TheSmokie 1 Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53341 Share on other sites More sharing options...
zatvorgt 5 Posted May 6, 2019 Share Posted May 6, 2019 bee cool if create code to learn specific spells on vanilla, becouse much gold lose on all spells i will buy this code! Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53342 Share on other sites More sharing options...
Gargaroth95 1 Posted May 6, 2019 Share Posted May 6, 2019 Maybe it's better to explain the problem. In the file above the paladin goes to the trainer in northshire and learns the new spell "devotion aura". He uses the spell because I have unchecked "check if know spell" in my fightclass but then he will learn the spell again and again. I have the complete condition: return wManager.Wow.Helpers.SpellManager.KnowSpell(465); After I restart the bot he will go to the next task. Please excuse my bad english. ? Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53343 Share on other sites More sharing options...
zatvorgt 5 Posted May 6, 2019 Share Posted May 6, 2019 3 minutes ago, Gargaroth95 said: Maybe it's better to explain the problem. In the file above the paladin goes to the trainer in northshire and learns the new spell "devotion aura". He uses the spell because I have unchecked "check if know spell" in my fightclass but then he will learn the spell again and again. I have the complete condition: return wManager.Wow.Helpers.SpellManager.KnowSpell(465); After I restart the bot he will go to the next task. Please excuse my bad english. ? i think need to add step after learn spell <QuestsSorted Action="RunCode" NameClass="SpellManager.UpdateSpellBook();" /> Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53344 Share on other sites More sharing options...
Gargaroth95 1 Posted May 6, 2019 Share Posted May 6, 2019 It works!!! Thank you really much! Now I can finish my afk profiles. This is the example for a paladin on 3.3.5a for holy light rank 2 <QuestsSorted Action="While" NameClass="!wManager.Wow.Helpers.SpellManager.KnowSpell(639)" /> <QuestsSorted Action="Pulse" NameClass="PathPaladinTrainerGoldshire" /> <QuestsSorted Action="Wait" NameClass="500" /> <QuestsSorted Action="RunCode" NameClass="wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(-9468.14, 108.976, 57.47771), 927, 1, false);" /> <QuestsSorted Action="Wait" NameClass="500" /> <QuestsSorted Action="RunLuaCode" NameClass="BuyTrainerSkill("Holy Light")" /> <QuestsSorted Action="Wait" NameClass="500" /> <QuestsSorted Action="RunCode" NameClass="SpellManager.UpdateSpellBook();" /> <QuestsSorted Action="EndWhile" NameClass="" /> Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53346 Share on other sites More sharing options...
zatvorgt 5 Posted May 6, 2019 Share Posted May 6, 2019 Exist analog of <QuestsSorted Action="RunLuaCode" NameClass="BuyTrainerSkill("Holy Light")" /> only from vanilla? Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53349 Share on other sites More sharing options...
Gargaroth95 1 Posted May 6, 2019 Share Posted May 6, 2019 deleted Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53350 Share on other sites More sharing options...
zatvorgt 5 Posted May 6, 2019 Share Posted May 6, 2019 deleted Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53351 Share on other sites More sharing options...
zatvorgt 5 Posted May 6, 2019 Share Posted May 6, 2019 deleted. Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53352 Share on other sites More sharing options...
zatvorgt 5 Posted May 6, 2019 Share Posted May 6, 2019 deleted Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53353 Share on other sites More sharing options...
Gargaroth95 1 Posted May 6, 2019 Share Posted May 6, 2019 deleted Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53354 Share on other sites More sharing options...
zatvorgt 5 Posted May 6, 2019 Share Posted May 6, 2019 works ! need to put this code on runluacode!Big thanks for this code !! Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-53355 Share on other sites More sharing options...
Bambo 148 Posted June 2, 2019 Share Posted June 2, 2019 (edited) On 5/6/2019 at 12:31 PM, Gargaroth95 said: You have to add this code: Code hidden How did you get that code? It is not open source. I own the rights to it. @Gargaroth95 Edited June 2, 2019 by Bambo Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-54227 Share on other sites More sharing options...
Gargaroth95 1 Posted June 2, 2019 Share Posted June 2, 2019 5 hours ago, Bambo said: How did you get that code? It is not open source. I own the rights to it. @Gargaroth95 Hello, I have a word document where I saved a lots of codes from this forum. I think this code was from a free profile in this forum. Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-54229 Share on other sites More sharing options...
Bambo 148 Posted June 2, 2019 Share Posted June 2, 2019 (edited) 17 minutes ago, Gargaroth95 said: Hello, I have a word document where I saved a lots of codes from this forum. I think this code was from a free profile in this forum. it definitely is code that is being used in paid products and you dont have the licence for it, pls remove it publicly edit: or tell me where you got it from, your answer is too vague, i highly doubt there is a free profile that uses it and if so, i will get that one down as well as this is leading towards leaks and drama. We have people trying to sell this code, we have people trying to implement this code into new paid products. And I (the licence holder of said code) have never shared it with anyone publicly nor did I licence any other products using it. I politely ask you to remove it. you can make use of it privately. Edited June 2, 2019 by Bambo Link to comment https://wrobot.eu/forums/topic/11078-how-to-let-the-character-learn-the-specified-spell/#findComment-54230 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