Arguss 0 Posted November 29, 2016 Share Posted November 29, 2016 How to add pause 5 seconds after herb gathering in gatherer profile. Thank you. Link to comment https://wrobot.eu/forums/topic/4539-pause-5-seconds-after-herb-gathering/ Share on other sites More sharing options...
Droidz 2738 Posted November 30, 2016 Share Posted November 30, 2016 Hello, use this plugin: using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.FarmingEvents.OnFarmSuccessful += delegate(WoWGameObject node) { Thread.Sleep(5000); }; Logging.Write("[PauseAfterGathering] Loadded."); } public void Dispose() { Logging.Write("[PauseAfterGathering] Disposed."); } public void Settings() { MessageBox.Show("[PauseAfterGathering] No settings for this plugin."); } } PauseAfterGathering.cs Link to comment https://wrobot.eu/forums/topic/4539-pause-5-seconds-after-herb-gathering/#findComment-21155 Share on other sites More sharing options...
Arguss 0 Posted November 30, 2016 Author Share Posted November 30, 2016 Thank you ) Link to comment https://wrobot.eu/forums/topic/4539-pause-5-seconds-after-herb-gathering/#findComment-21157 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