Everything posted by TheSmokie
-
Check Faction level Help
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
-
Check Faction level Help
This should provide all info for you to use a if lua code. https://wowwiki.fandom.com/wiki/API_GetFactionInfo
-
Server Connection...
wManager.Wow.Memory
-
Character pathing and targeting
For you’re fightclsss set the range to 30, this should help.
-
C# Fightclass development - video tutorial
Amazing guide! Thank you!
-
level up, Hearthstone, train and sell
Add levels and threadsleeps
-
More precise location for quest obj
Are you trying to interact with object or use item on the area?
-
Full Refund
I got to say I love the way @sith500 handle it.
-
Server Connection...
How you been using it for 2 years if you do not have sub? You using a cracked copy?
-
Full Refund
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.
-
More precise location for quest obj
mak it 0 rang
-
Bot wont do quest - Help?
try turning off need quest in quest log
-
How To Reset Quest step type
Hello @83532827 you can use the gotostep option in quest order editer.
-
BOT is program
Go to you’re settings, go to advanced settings and turn on sell whites or turn off selling.
-
BOT is program
from what i can see it looks like you're plugin or settings is set to buy food but you dont have enuf gold to get food.
- Automated? Help
-
BOT is program
Hello @epicrean Can you provide what patch you're using and what profile + plugins you are using?
- Automated? Help
-
Quest Code log.
There are some quests that will not turn in, you need to look at the objective's option. some time it will show there is one but ingame quest doesnt have one. know quests WOTLK - Corruption (Warlock Bloodelf starting quest.) https://www.wowhead.com/quest=10073/corruption WOTLK - Evisceration (Rogue Bloodelf starting quest.) https://www.wowhead.com/quest=10071/evisceration WOTLK - Lazy Peons (Orc starting quests. \\ You need to make 2nd objective false.) https://www.wowhead.com/quest=5441/lazy-peons i'll Update the list as i go on, if you find a quest like this please let me know so i can update the list.
-
Aquatic form
@Jensen- Hello, this should work (not tested) if you want to go underwater and grab a object. it should work. run this code as a overridepulseCsharp if (Quest.HasQuest(QuestID) && !(ObjectManager.Me.Position.DistanceTo2D(new Vector3(y, x, z)) < 10) && !(wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming)) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(x, y, z)); } else if (wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming && !(ObjectManager.Me.HaveBuff(BuffID))) { wManager.Wow.Helpers.Lua.RunMacroText("/equip Aquatic Form"); System.Threading.Thread.Sleep(500); } else if (wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming && ObjectManager.Me.HaveBuff(BuffID) && wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(x, y, z)); wManager.Wow.Helpers.Interact.InteractGameObject(ObjectManager.GetWoWGameObjectByEntry(Object ID).FirstOrDefault().GetBaseAddress); } return true; or if you are using a fightclass, add this to you're fight class as a CSharp and make sure to add it as a buff in the options. if (wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming && !(ObjectManager.Me.HaveBuff(BuffID))) { wManager.Wow.Helpers.Lua.RunMacroText("/equip Aquatic Form"); } If there is any problem, contact me via message and ill try to help debug them. i am sorry for interupting this fourm post, i am trying to be helpful. ?
-
Quest Code log.
on warmane, if a npc is moving and its casing you not to be able to pick up or turn in use this code. if (!Quest.HasQuest(Quest ID) && !(ObjectManager.Me.Position.DistanceTo2D(new Vector3(x, y, z)) < 20)) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(x, y, z)); } var u = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(NPCID)); if (u.IsValid) { Interact.InteractGameObject(u.GetBaseAddress); wManager.Wow.Helpers.Lua.RunMacroText("/script AcceptQuest();"); } return true; Side note : turn in script \ /click QuestFrameCompleteQuestButton wManager.Wow.Helpers.Lua.RunMacroText("/click QuestFrameCompleteQuestButton"); for conditions Complete : use return (Quest.HasQuest(Quest ID)); or to turn in return (!Quest.HasQuest(Quest ID)); Ps : known warmane npc that need to use this code for. Orithos the Sky Darkener : http://www.wowhead.com/npc=28647 Olrun the Battlecaller : http://www.wowhead.com/npc=29047 Salanar the Horseman : http://www.wowhead.com/npc=28653
- Automated? Help
-
Quest Code log.
Solanian's Belongings quest \\ https://www.wowhead.com/quest=8330/solanians-belongings sometimes bugs out. code : OverridepulseCSharpCode if (Quest.HasQuest(8330) && !(Quest.IsObjectiveComplete(3, 8330))) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(10224.15f, -6343.831f, 30.84071f)); System.Threading.Thread.Sleep(1000); wManager.Wow.Helpers.Interact.InteractGameObject(ObjectManager.GetWoWGameObjectByEntry(180512).FirstOrDefault().GetBaseAddress); } else if (Quest.HasQuest(8330) && !(Quest.IsObjectiveComplete(1, 8330))) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(10091.82f, -6217.544f, 16.66797f)); System.Threading.Thread.Sleep(1000); wManager.Wow.Helpers.Interact.InteractGameObject(ObjectManager.GetWoWGameObjectByEntry(180510).FirstOrDefault().GetBaseAddress); } else if (Quest.HasQuest(8330) && !(Quest.IsObjectiveComplete(2, 8330))) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(10294.97f, -6030.385f, 28.44364f)); System.Threading.Thread.Sleep(1000); wManager.Wow.Helpers.Interact.InteractGameObject(ObjectManager.GetWoWGameObjectByEntry(180511).FirstOrDefault().GetBaseAddress); } return true;
-
Quest Code log.
http://www.wowhead.com/quest=8345 (The Shrine of Dath'Remar) bugged on warmane. i do not know on any other servers. code : OverridepulseCSharpCode if (Quest.HasQuest(8345) && !(Quest.IsObjectiveComplete(1, 8345))) { wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(10404.25f, -5947.928f, 41.27757f)); System.Threading.Thread.Sleep(1000); wManager.Wow.Helpers.Move.Forward(Move.MoveAction.PressKey,400); wManager.Wow.Helpers.Interact.InteractGameObject(ObjectManager.GetWoWGameObjectByEntry(180516).FirstOrDefault().GetBaseAddress); } return true; Updated. some time the code doesnt go to the area right. added MoveAction to help improve the code to 100%
-
Quest Code log.
Hello, in this thread ill be release code that works on bug items or bugged quests in game etc. If you find any bug quests please provide me with info and i can help. All code i upload is free to use but id like credit if you use it.