November 6, 20232 yr I want to make a tailor's item. In the chat of the game, the macro works and makes an item. The bot does not prepare the item. Please tell me what is the problem? Macro Craft.xml
November 7, 20232 yr Author I was able to make the macro work through a saved macro in the game under the key and pressing the bot key. It doesn't work in other ways. robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.Y); System.Threading.Thread.Sleep(1000); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.Y);
November 8, 20232 yr It's probably because it's protected if you run it via Macro - at least it needs a keypress. You should use RunLua and remove the /run part of the macro, the rest after it is pure Lua anyway. No need to put this in 2 steps either, the other part (again, no /run or /script needed) should just go at the end of your existing Lua code
November 8, 20232 yr Author 5 hours ago, Matenia said: It's probably because it's protected if you run it via Macro - at least it needs a keypress. You should use RunLua and remove the /run part of the macro, the rest after it is pure Lua anyway. No need to put this in 2 steps either, the other part (again, no /run or /script needed) should just go at the end of your existing Lua code Thank you it works
Create an account or sign in to comment