November 2, 20178 yr Hello. I write helper plugin, and me need code for pause/sleep all steps bot (questing. gethering, moving...) for some seconds.
November 2, 20178 yr Hello @happiness7 this should fit: //minimum net framework 4.5 Task.Run(() => { Products.InPause = true; Thread.Sleep(6000); Products.InPause = false; }); If you also want to block plugin thread, just remove "Task.Run"
Create an account or sign in to comment