November 18, 20232 yr 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.
November 20, 20232 yr 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(){} }
Create an account or sign in to comment