Jump to content

0xbadbac0n

WRobot user
  • Posts

    17
  • Joined

  • Last visited

Reputation Activity

  1. Like
    0xbadbac0n reacted to Droidz in (tbc) Find next not dead position   
    Hello, if it is for one dunjon maybe you can try to blacklist zone, or compare zone and move if you are in bad zone. Otherwise I think with events lua or gameobject entry id
  2. Like
    0xbadbac0n reacted to TheSmokie in Item usage/trinkets/stones   
    Hello, there is many ways to do what you are asking, C# and lua.
    Take your pick of one that works for you.
    1st : string ItemName = ItemsManager.GetNameById(50259); Lua.LuaDoString("UseItemByName('" + ItemName+ "')"); 2nd : ItemsManager.UseItemByNameOrId("50259"); 3rd: ItemsManager.UseItem(555); 4th : ItemsManager.UseContainerItem("Name here"); 5th : Lua.LuaDoString("UseItemByName('ItemName Here')");  
  3. Like
    0xbadbac0n reacted to Droidz in Random mount/ start mount via macro   
    Hello, try plugin like:
    using System.Threading; using robotManager.Products; using wManager; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { while (Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { try { if (ObjectManager.Me.IsHorde) wManagerSetting.CurrentSetting.GroundMountName = "Horde mount name"; else wManagerSetting.CurrentSetting.GroundMountName = "Ally mount name"; } catch { } } Thread.Sleep(500); } } public void Dispose() { } public void Settings() { } } replace Horde mount name and Ally mount name by you mounts names
×
×
  • Create New...