Hunt Cores using System; using System.Drawing; public static class VoiceBotScript { public static void Run(IntPtr windowHandle) { // your code goes here BFS.VoiceBotActions.RunMacro(@"Hunting Boost"); BFS.VoiceBotActions.RunMacro(@"Hunting Ping"); } } Hunting Boost using System; using System.Drawing; public static class VoiceBotScript { public static void Run(IntPtr windowHandle) { //set the setting value to true BFS.ScriptSettings.WriteValueBool("Continue_Hunting_Cores", true); //while the value is true, play the system beep sound every second while(BFS.ScriptSettings.ReadValueBool("Continue_Hunting_Cores")) { BFS.Input.SendKeys("B"); //BFS.VoiceBotActions.MouseClick("1"); BFS.General.ThreadWait(1500); } } } Hunting Ping using System; using System.Drawing; public static class VoiceBotScript { public static void Run(IntPtr windowHandle) { //set the setting value to true BFS.ScriptSettings.WriteValueBool("Continue_Hunting_Cores", true); //while the value is true, play the system beep sound every second while(BFS.ScriptSettings.ReadValueBool("Continue_Hunting_Cores")) { //BFS.Input.SendKeys("B"); BFS.VoiceBotActions.MouseClick("1"); BFS.General.ThreadWait(500); } } }