Jump to content

TheSmokie

Banned
  • Posts

    1215
  • Joined

Posts posted by TheSmokie

  1. if you have a quest with a item you need to use on the ground.

    if (wManager.Wow.Helpers.ItemsManager.HasItemById(ID))
    {
    wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(z, y, z));
    System.Threading.Thread.Sleep(6000);
    ItemsManager.UseItem(ItemID);
    ClickOnTerrain.Pulse(new Vector3(x, y, z));
    System.Threading.Thread.Sleep(1000);
    }
    return true;

     

  2. you are able to add pots to you're fightclass with this.

    if (ItemsManager.HasItemById(118) && ItemsManager.GetItemCountByIdLUA(118) >= 1 && ObjectManager.Me.HealthPercent <= 40 && ObjectManager.Me.InCombat && ObjectManager.Me.Level <= 10) // change 118 in Hasitem, item count and use item.
            {
                ItemsManager.UseItem(108);
                Thread.Sleep(10); // change sleep to you're ms. i use 10 as a defult. 
                return;
            }

    you can add any condition you would like.

  3. Troll Priest quest "Garments of Spirituality"  Level 5 

    Code : OverridepulseCSharpCode

    if (Quest.HasQuest(5648))
    {
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(170.596f, -4769.92f, 14.40446f), 12430);
    wManager.Wow.Helpers.Lua.RunMacroText("/cast Lesser Heal");
    Usefuls.WaitIsCastingAndLooting();
    wManager.Wow.Helpers.Lua.RunMacroText("/cast Power Word: Fortitude");
    Usefuls.WaitIsCastingAndLooting();
    }
    return true;

    Undead Priest quest " Garments of Darkness" Level 5

    Code : OverridepulseCSharpCode

    if (Quest.HasQuest(5650))
    {
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(2436.81f, 359.072f, 33.26905f), 12428);
    wManager.Wow.Helpers.Lua.RunMacroText("/cast Lesser Heal");
    Usefuls.WaitIsCastingAndLooting();
    wManager.Wow.Helpers.Lua.RunMacroText("/cast Power Word: Fortitude");
    Usefuls.WaitIsCastingAndLooting();
    }
    return true;

     

    Optional if want to add complete condition (not needed.) 

    return (Quest.IsObjectiveComplete(1, 5648));

     

    Tested on WOTLK

  4. I downloaded proxycap but didn’t want to buy a proxy list so I googled socket 5 proxy’s and there are a lot of free ones out there. I’d recommend finding the ones with low use and fast speed. I also recommend changing you’re proxy list out every week or two or after a ban. (Ban account = ban that proxy.) also if you’re gonna bot for gold, switch you’re toons up every day or two. Botting 24 / 7 on one toon isn’t worth the ban. 

  5. local factionIndex = 1
    local lastFactionName
    repeat
      local name, description, standingId, bottomValue, topValue, earnedValue, atWarWith,
        canToggleAtWar, isHeader, isCollapsed, hasRep, isWatched, isChild = GetFactionInfo(factionIndex)
      if name == lastFactionName then break end
      lastFactionName  = name
      -- YOUR CODE HERE --
      factionIndex = factionIndex + 1
    until factionIndex > 200

     

  6. This sounds like a personal problem. Since I’ve gotten a sub . I have not been banned or anything. Only problem I’m having is how to set up a proxy but that’s it.

    you being banned is a personal problem, not the bots.

    like @Matenia said. Don’t bot on a account you’re not wanting to lose.

×
×
  • Create New...