bryan2986 0 Posted February 11, 2017 Share Posted February 11, 2017 Hello, I'm currently gathering dreamleaf using WROBOT with Sky Golem so I have the option "Do not attack while mounted in Sky Golem" on. But what I want is a plugin or whatevers needed to let my bot get off Sky Golem and attack the mob that spawns after herbing those random dreamleaf nodes that drops extra dreamleafs. Can anybody help me with this matter? Thanks in advance Link to comment Share on other sites More sharing options...
Droidz 2737 Posted February 13, 2017 Share Posted February 13, 2017 Hello, Try this plugin: GatheringMobSpawns.cs using System.Collections.Generic; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var grinderState = new Grinding {EntryTarget = new List<int> {98232, 98234, 98235, 98233 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox, http://www.wowhead.com/npc=98233/withered-hungerer robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Farming") { if (grinderState.NeedToRun) { grinderState.Run(); cancelable.Cancel = true; } } }; Logging.Write("[GatheringMobSpawns] Loadded."); } public void Dispose() { Logging.Write("[GatheringMobSpawns] Disposed."); } public void Settings() { MessageBox.Show("[GatheringMobSpawns] No settings for this plugin."); } } Pudge, notme, Roman1 and 4 others 6 1 Link to comment Share on other sites More sharing options...
Hapiguy 56 Posted February 13, 2017 Share Posted February 13, 2017 Thanks, Droidz!! Link to comment Share on other sites More sharing options...
notme 1 Posted February 15, 2017 Share Posted February 15, 2017 On 13/2/2017 at 11:45 AM, Droidz said: Hello, Try this plugin: GatheringMobSpawns.cs using System.Collections.Generic; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var grinderState = new Grinding {EntryTarget = new List<int> {98232, 98234, 98235 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Farming") { if (grinderState.NeedToRun) { grinderState.Run(); cancelable.Cancel = true; } } }; Logging.Write("[GatheringMobSpawns] Loadded."); } public void Dispose() { Logging.Write("[GatheringMobSpawns] Disposed."); } public void Settings() { MessageBox.Show("[GatheringMobSpawns] No settings for this plugin."); } } Hello, I downloaded that and I put it in "wrobot / plugins" but when I open the bot I can't activate it, what can I do?thanks! Link to comment Share on other sites More sharing options...
Mykoplazma 24 Posted February 15, 2017 Share Posted February 15, 2017 Just enable the plugin in plugins tab it should show up as GatheringMobSpawns.cs and set it to on. The second thing is this is plugin created to kill specific mobs with ids like new List<int> {98232, 98234, 98235 } }; To make the bot kill other kind of mob you must find the id on wowhead and add it to list. For now that list let the bot attack 3 mobs : www.wowhead.com/npc=98232 www.wowhead.com/npc=98234 www.wowhead.com/npc=98235 To add mob you must go to wowhead find the mob id and add it to that list directly into the plugin code. notme 1 Link to comment Share on other sites More sharing options...
notme 1 Posted February 15, 2017 Share Posted February 15, 2017 oooh nvm, i got it ty!! Link to comment Share on other sites More sharing options...
petertrasg 1 Posted February 17, 2017 Share Posted February 17, 2017 Please add Mob 98233 which s the one in Suramar for all the others. :) Ps: I already did this in the cs file. thX! Link to comment Share on other sites More sharing options...
mkeagy 0 Posted February 19, 2017 Share Posted February 19, 2017 On 2/13/2017 at 8:45 AM, Droidz said: Hello, Try this plugin: GatheringMobSpawns.cs using System.Collections.Generic; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var grinderState = new Grinding {EntryTarget = new List<int> {98232, 98234, 98235 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Farming") { if (grinderState.NeedToRun) { grinderState.Run(); cancelable.Cancel = true; } } }; Logging.Write("[GatheringMobSpawns] Loadded."); } public void Dispose() { Logging.Write("[GatheringMobSpawns] Disposed."); } public void Settings() { MessageBox.Show("[GatheringMobSpawns] No settings for this plugin."); } } I didn't think this plugin was working but then I disabled the option to ignore fighting while in sky golem and travel form and now it seems like this is working great. Looks like it ignores other mobs and is just attacking withered hungerers on my starlight farm. Thanks :)! Link to comment Share on other sites More sharing options...
testingz 3 Posted February 22, 2017 Share Posted February 22, 2017 Thank you. Edit: Does this interfer with setting the option "Ignore fights while in travel form/shredder" ? I have just activated the plugin and the bot ignored a Nightmare Creeper.. @Droidz Edit2: Done, thanks. Will test it out right now Link to comment Share on other sites More sharing options...
Runaro 160 Posted February 22, 2017 Share Posted February 22, 2017 22 minutes ago, testingz said: Thank you. Edit: Does this interfer with setting the option "Ignore fights while in travel form/shredder" ? I have just activated the plugin and the bot ignored a Nightmare Creeper.. @Droidz You have to disable the option "ignore fighting while in sky golem and travel form". testingz 1 Link to comment Share on other sites More sharing options...
k4njin 5 Posted February 27, 2017 Share Posted February 27, 2017 On 22/2/2017 at 9:04 AM, Runaro said: You have to disable the option "ignore fighting while in sky golem and travel form". Actually i disabled "ignore figthing etc." but the bot still attacks mobs. 27 feb 2017 15H38 - QknmXRv.log.html Link to comment Share on other sites More sharing options...
Runaro 160 Posted February 27, 2017 Share Posted February 27, 2017 1 hour ago, k4njin said: Actually i disabled "ignore figthing etc." but the bot still attacks mobs. 27 feb 2017 15H38 - QknmXRv.log.html My message was to @testingz and was about the plugin? k4njin 1 Link to comment Share on other sites More sharing options...
k4njin 5 Posted February 27, 2017 Share Posted February 27, 2017 39 minutes ago, Runaro said: My message was to @testingz and was about the plugin? Yes yes! Sry, just quoted to post my problem, but i made another thread since i have another one related to this :D edit: Actually, i have checked "ignore fighting etc." in mount and in gathering options too, but seems working fine. If someone needs here's my log 27 feb 2017 18H30.log.html Link to comment Share on other sites More sharing options...
scsfl 2 Posted March 1, 2017 Share Posted March 1, 2017 Does anyone know how to setup loot distance? Not search radius in wrobot options, but exactly loot radius. I need it to avoid looting every mob in 300 radius. And if I turn off "Loot mobs" option bot doesn't loot spawned mobs (e.g. withered hungerer). Link to comment Share on other sites More sharing options...
Mykoplazma 24 Posted March 1, 2017 Share Posted March 1, 2017 So you need to loot only mobs from the list and not any other? :D Link to comment Share on other sites More sharing options...
scsfl 2 Posted March 1, 2017 Share Posted March 1, 2017 Just now, forerun said: So you need to loot only mobs from the list and not any other? :D Yeah, it would be perfect :) Link to comment Share on other sites More sharing options...
testingz 3 Posted March 2, 2017 Share Posted March 2, 2017 23 hours ago, scsfl said: Yeah, it would be perfect :) yes that works so Link to comment Share on other sites More sharing options...
testingz 3 Posted March 2, 2017 Share Posted March 2, 2017 On 27.2.2017 at 7:04 PM, Runaro said: My message was to @testingz and was about the plugin? Does this also work during stealth? I have noticed it works very well with the mobs that spawn on gathering procs on nodes, but attacking mobs on the path (e.g felfire basilisk) when being stealthed, does not seem to work. I've switched to attack first, but then the bot also goes out of stealth with a few withered and some other non-minable basilisk and I dont want that. What fix do you recommend? I have not found one so far that does the described (ignore all other mobs as usual, but include felfire basilisks during run. Is any of that influenced by attack before being attack here? I've added the ID and link into the .cs file http://www.wowhead.com/npc=101868/felfire-basilisk Edit: Seems to magically work now Link to comment Share on other sites More sharing options...
scsfl 2 Posted March 4, 2017 Share Posted March 4, 2017 On 02.03.2017 at 2:42 PM, testingz said: yes that works so Erm, I don't get, does option "Loot mobs" should be turned ON? Link to comment Share on other sites More sharing options...
testingz 3 Posted March 6, 2017 Share Posted March 6, 2017 On 4.3.2017 at 10:22 AM, scsfl said: Erm, I don't get, does option "Loot mobs" should be turned ON? if you want to loot a mob then loot mobs has to be turned on, naturally, yes. Link to comment Share on other sites More sharing options...
Roman1 1 Posted March 9, 2017 Share Posted March 9, 2017 Plugin works super good with mob wich you need to attack, but you need to add http://www.wowhead.com/npc=98233/withered-hungerer for Suramar proc. If you farm Foxflower and you have a few enemies near spot bot try to attack fox and after few fail attack bot switch to another target. But if you dont have enemies and agro bot try to attack only fox and follow gather :) For fox need anorher good solution (follow the fox before it disappears for example) i am sorry for my bad english Link to comment Share on other sites More sharing options...
Nearr 0 Posted March 24, 2017 Share Posted March 24, 2017 it seems that plugin works not really correct with option "ignore while in travel form" bot gather herb and continue runnin, but if he was attacked right after gathering - he begin to fight, what he didnt with ignore option Link to comment Share on other sites More sharing options...
S13 2 Posted November 14, 2017 Share Posted November 14, 2017 On 13.2.2017 at 3:45 PM, Droidz said: Hello, Try this plugin: GatheringMobSpawns.cs using System.Collections.Generic; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var grinderState = new Grinding {EntryTarget = new List<int> {98232, 98234, 98235, 98233 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox, http://www.wowhead.com/npc=98233/withered-hungerer robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Farming") { if (grinderState.NeedToRun) { grinderState.Run(); cancelable.Cancel = true; } } }; Logging.Write("[GatheringMobSpawns] Loadded."); } public void Dispose() { Logging.Write("[GatheringMobSpawns] Disposed."); } public void Settings() { MessageBox.Show("[GatheringMobSpawns] No settings for this plugin."); } } Awesome thanks alot! This works like a charm :) Link to comment Share on other sites More sharing options...
Xpsi 2 Posted March 1, 2018 Share Posted March 1, 2018 is there a way to make the plugins hit every foxflower from frenzied fox instead of attacking ? got a plugins like that with HB, i dont know if is possible with this bot Link to comment Share on other sites More sharing options...
Cougar700 3 Posted June 19, 2020 Share Posted June 19, 2020 if i using this for fishing npc spawns after lure use in Legion, bot only attack after 2-4 fished and dont loot dead npc in fisherbot mode how to fix `? Link to comment 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