Jump to content

Arcangelo

WRobot user
  • Posts

    472
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Arcangelo reacted to Droidz in "Groupe quests"   
    Hello, in "can conditions" use c# code like: 
    return wManager.Wow.Helpers.Party.IsInGroup();  
  2. Like
    Arcangelo reacted to Droidz in Runcode to change settings   
    Your code works (no error in your log file). But in quester, when you stop bot user settings are reset. (or you can active option in quester product settings "Save general settings modified by the profiles")
  3. Like
    Arcangelo reacted to Droidz in To far away to gathere   
    Hello, use quest type "OverridePulseCSharpCode" with code:
    var doorId = 1234; float distance = 2.5f; var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(doorId)); if (o.IsValid) { if (wManager.Wow.Bot.Tasks.GoToTask.ToPosition(o.Position, distance) && o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress); } } return true;  
  4. Like
    Arcangelo reacted to Droidz in Remove all forms + mount   
    wManager.Wow.Bot.Tasks.MountTask.DismountMount(); // cancel also druid form wManager.Wow.Helpers.Lua.RunMacroText("/cancelaura " + new wManager.Wow.Class.Spell("Stealth"));  
  5. Like
    Arcangelo reacted to Droidz in Only loot quest item mobs   
    Hello, at start, run code like:
    wManager.Events.LootingEvents.OnLootingPulse += (unit, cancelable) => { if (unit.IsValid && unit.GetDistance2D > 5) { wManager.wManagerSetting.AddBlackList(unit.Guid, 1000*120, true); cancelable.Cancel = true; } };  
  6. Like
    Arcangelo reacted to BetterSister in Remove curses & Poison   
    You can make list of them and tell the bot this is list of possible debuffs then tell bot to check if there is one of them 
     
    TLDR as workaround you need some programming knowledge to do it yourself 
×
×
  • Create New...