eniac86 21 Posted August 20, 2017 Share Posted August 20, 2017 How to open "Big-mouth Clam" while fishing? I tried the combine - vanilla plugin but it does not open clams. (I have all addons turned off, latency settings are OK aswell) Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/ Share on other sites More sharing options...
Seminko 40 Posted November 18, 2017 Share Posted November 18, 2017 On 20. 8. 2017 at 9:54 PM, eniac86 said: How to open "Big-mouth Clam" while fishing? I tried the combine - vanilla plugin but it does not open clams. (I have all addons turned off, latency settings are OK aswell) Pretty ghetto, but works: robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(1234); // item ID of the clam Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); eniac86 1 Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-35257 Share on other sites More sharing options...
kpeno 1 Posted November 20, 2017 Share Posted November 20, 2017 delete Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-35359 Share on other sites More sharing options...
valetine 4 Posted November 20, 2017 Share Posted November 20, 2017 On 2017/11/19 at 3:59 AM, Seminko said: Pretty ghetto, but works: robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(1234); // item ID of the clam Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); If you have time, whether it can be made into a plug-in, so more user-friendly. Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-35391 Share on other sites More sharing options...
Seminko 40 Posted November 23, 2017 Share Posted November 23, 2017 I do use it in a plugin. Spoiler using System; using System.Collections.Generic; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : IPlugin { private bool isLaunched; public void Initialize() { isLaunched = true; while (isLaunched && Products.IsStarted) { try { foreach (WoWItem item in Bag.GetBagItem()) { if (item.GetItemInfo.ItemName == "Big-mouth Clam") { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(7973); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } else if (item.GetItemInfo.ItemName == "Sealed Crate") { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(6357); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } } } catch { } Thread.Sleep(1000 * 3); // Wait 3 sec } } public void Dispose() { isLaunched = false; } public void Settings() { MessageBox.Show("No settings for this plugin."); } } eeny and eniac86 2 Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-35606 Share on other sites More sharing options...
valetine 4 Posted November 23, 2017 Share Posted November 23, 2017 7 minutes ago, Seminko said: I do use it in a plugin. Reveal hidden contents using System; using System.Collections.Generic; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : IPlugin { private bool isLaunched; public void Initialize() { isLaunched = true; while (isLaunched && Products.IsStarted) { try { foreach (WoWItem item in Bag.GetBagItem()) { if (item.GetItemInfo.ItemName == "Big-mouth Clam") { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(7973); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } else if (item.GetItemInfo.ItemName == "Sealed Crate") { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(6357); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } } } catch { } Thread.Sleep(1000 * 3); // Wait 3 sec } } public void Dispose() { isLaunched = false; } public void Settings() { MessageBox.Show("No settings for this plugin."); } } Thank you very much, you have helped me many times! Seminko 1 Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-35609 Share on other sites More sharing options...
eeny 523 Posted December 4, 2017 Share Posted December 4, 2017 On 24/11/2017 at 1:48 AM, Seminko said: I do use it in a plugin. Hide contents using System; using System.Collections.Generic; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : IPlugin { private bool isLaunched; public void Initialize() { isLaunched = true; while (isLaunched && Products.IsStarted) { try { foreach (WoWItem item in Bag.GetBagItem()) { if (item.GetItemInfo.ItemName == "Big-mouth Clam") { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(7973); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } else if (item.GetItemInfo.ItemName == "Sealed Crate") { robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); ItemsManager.UseItem(6357); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey); Thread.Sleep(robotManager.Helpful.Others.Random(50, 150)); } } } catch { } Thread.Sleep(1000 * 3); // Wait 3 sec } } public void Dispose() { isLaunched = false; } public void Settings() { MessageBox.Show("No settings for this plugin."); } } Absolute champion! Compile it and put it in the plugin section! Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-36137 Share on other sites More sharing options...
Seminko 40 Posted December 4, 2017 Share Posted December 4, 2017 39 minutes ago, eeny said: Absolute champion! Compile it and put it in the plugin section! For some reason I cannot determine if you're being sarcastic or not :-P But I have a new plugin in the works and opening and looting items will be a part of it. eniac86 1 Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-36139 Share on other sites More sharing options...
eeny 523 Posted December 4, 2017 Share Posted December 4, 2017 Just now, Seminko said: For some reason I cannot determine if you're being sarcastic or not :-P But I have a new plugin in the works and opening and looting items will be a part of it. Was being 100% legitimate- this helped me a ton Link to comment https://wrobot.eu/forums/topic/6832-how-to-open-big-mouth-clam-while-fishing/#findComment-36140 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