Artek 3 Posted November 18, 2023 Share Posted November 18, 2023 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 https://wrobot.eu/forums/topic/15356-wrobot-doest-press-keybind-from-my-macros-setting/ Share on other sites More sharing options...
Droidz 2738 Posted November 20, 2023 Share Posted November 20, 2023 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 https://wrobot.eu/forums/topic/15356-wrobot-doest-press-keybind-from-my-macros-setting/#findComment-69029 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