cvb 0 Posted November 8, 2017 Share Posted November 8, 2017 Hello, I've been trying to create a grinder profile to grind mobs inside AV, but cannot get it to work. I've made a loop inside AV in the Grinder product, marking the mobs as usual. When I start the Grinder it gets stuck in "Battlegrounder Combination". Can I bypass this somehow? Link to comment https://wrobot.eu/forums/topic/7602-grinder-in-av/ Share on other sites More sharing options...
Droidz 2738 Posted November 9, 2017 Share Posted November 9, 2017 Hello, try to use this plugin: Main.cs public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Battlegrounder Combination") { cancelable.Cancel = true; } }; } public void Dispose() { } public void Settings() { } } Link to comment https://wrobot.eu/forums/topic/7602-grinder-in-av/#findComment-34749 Share on other sites More sharing options...
cvb 0 Posted November 10, 2017 Author Share Posted November 10, 2017 Thanks, using that plugin I got it to work. It doesn't seem to loot mobs for some reason, though. Link to comment https://wrobot.eu/forums/topic/7602-grinder-in-av/#findComment-34781 Share on other sites More sharing options...
Lillbjorla 1 Posted November 11, 2017 Share Posted November 11, 2017 Would you like to share that profile? :) Link to comment https://wrobot.eu/forums/topic/7602-grinder-in-av/#findComment-34833 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