Artek 2 Posted November 18 Share Posted November 18 So i set in "my macros" wrobot to press specific button, in combat it only presses once, when i start wrobot and thats it, when not in combat(in city for example, it works well) below settings. Link to comment Share on other sites More sharing options...
Droidz 2703 Posted November 20 Share Posted November 20 Hello, Prefer to add it to your fightclass, or use a plugin like : using robotManager.Helpful; using System.Threading; using wManager.Wow.Helpers; public class AutoPressKey : wManager.Plugin.IPlugin { private bool _isRunning; public void Initialize() { _isRunning = true; PressKeyThread(); } public void Dispose() { _isRunning = false; } private void PressKeyThread() { while (_isRunning) { if (Conditions.InGameAndConnected) { Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, "1"); } Thread.Sleep(1000); } } public void Settings(){} } 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