using robotManager.Helpful; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.LoggingEvents.OnAddLog += delegate(Logging.Log log) { if (log.Text.Contains("Тундровый мамонт путешественника") ||log.Text.Contains("Tundra Mammoth")) { Lua.LuaDoString("RunMacroText(\"/click MultiBarBottomRightButton1\")"); } }; } public void Dispose() { } public void Settings() { } }