-
Posts
1215 -
Joined
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by TheSmokie
-
Yes, that’s a fightclass
-
I’d need more info on what product you bought.
-
Just use whatsgoingon by @Matenia
-
Go To Trainers command (for all classes)
TheSmokie replied to ScripterQQ's topic in Quester assistance
Or you can use toolbox and buy skills by name. -
Hello, these are some suggestions i have for the relogger, (help bot more often.) 1) a loop, so after you reach the end of your tasks, you can set it to loop again. 2) at the end of a profile, run the next task.
-
Go To Trainers command (for all classes)
TheSmokie replied to ScripterQQ's topic in Quester assistance
@Droidz can you add a option to train a set list of skills? -
Go To Trainers command (for all classes)
TheSmokie replied to ScripterQQ's topic in Quester assistance
You have to update your bot | wait for update. (I dont know if droidz pushed a update yet.) -
You can find lua bot on https://ewtwow.com/
-
Ban hammer - Frostmourne
TheSmokie replied to Photogenic's topic in WRobot for Wow Wrath of the Lich King - Help and support
I turn on smooth moving to help, and change the wall ratios to 2.0. -
Ban hammer - Frostmourne
TheSmokie replied to Photogenic's topic in WRobot for Wow Wrath of the Lich King - Help and support
I apogize @Photogenic for over take your thread a little. -
Ban hammer - Frostmourne
TheSmokie replied to Photogenic's topic in WRobot for Wow Wrath of the Lich King - Help and support
There is 2 kind of questing profiles, This one has video attached. good video by @eeny, it uses the easy quest editer There is this one, i just recently starting using for more none direct quests where i need to make the bot do something a different way. (This is more advance) -
Ban hammer - Frostmourne
TheSmokie replied to Photogenic's topic in WRobot for Wow Wrath of the Lich King - Help and support
Private profiles are less likely to be banned, grinder + quester. i use schelule product and change every so often. and i stop by the Inn to get rested Ep every few hours . -
-
Ban hammer - Frostmourne
TheSmokie replied to Photogenic's topic in WRobot for Wow Wrath of the Lich King - Help and support
I have 3 bots still safe on Frostmourne, make sure to use your own profiles (private, not public.) a good fight class (using paid ones from @Matenia) and don’t bot where a lot of people are at, -
sell items (specific vendor and specific time )
TheSmokie replied to sidalibns's topic in Quester assistance
wManager.Wow.Bot.States.ToTown.ForceToTown = true; -
I think this will help you, https://wrobot.eu/forums/topic/8668-workaround-for-stutter-flying/?page=2
-
Can you post your logs?
-
This may sound like a joke but do you have flying enabled?
-
I made a custom code for 3rd - 4th quest for DK starting area, here you go if anyone is wondering this quest. Disclamer : i just learn how to use this method of doing quests less then a hour ago, so if there a random bug, please let me know. The Emblazoned Runeblade: public sealed class TheEmblazonedRuneblade : QuestClass { public TheEmblazonedRuneblade() { Name = "The Emblazoned Runeblade"; QuestId.Add(12619); Step.AddRange(new[] { 1, 0, 0, 0, 0 }); } public override bool IsComplete() { return Quest.IsObjectiveComplete(1, QuestId.FirstOrDefault()); } public override bool Pulse() { if(ItemsManager.HasItemById(38607)) { if(GoToTask.ToPosition(new Vector3(2494.718f, -5640.34f, 420.6466f))) { ItemsManager.UseItem(38607); MovementManager.StopMove(); Thread.Sleep(1000 * 11); } } GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(2491.9, -5636.3, 420.6), 190584); return true; } } Runeforging: Preparation For Battle: public sealed class RuneforgingPreparationForBattle : QuestClass { public RuneforgingPreparationForBattle() { Name = "The Emblazoned Runeblade"; QuestId.Add(12842); Step.AddRange(new[] { 1, 0, 0, 0, 0 }); } public override bool IsComplete() { return Quest.IsObjectiveComplete(1, QuestId.FirstOrDefault()); } public override bool Pulse() { ItemsManager.EquipItemByName("Runed Soulblade"); GoToTask.ToPosition(new Vector3(2507.303f, -5559.092f, 420.6502f)); if (!Lua.LuaDoString<bool>("return TradeSkillFrame:IsVisible()")) { SpellManager.CastSpellByNameLUA("Runeforging"); Craft("Rune of Cinderglacier"); ItemsManager.UseItem("Runed Soulblade"); Usefuls.WaitIsCasting(); Lua.LuaDoString("TradeSkillFrame:Hide()"); return true; } return true; } public static void Craft(string RecipeName) { Lua.LuaDoString(string.Format(@" for i=1,GetNumTradeSkills() do local name, _, _, _ = GetTradeSkillInfo(i) if (name == '{0}') then DoTradeSkill(i) end end ", RecipeName)); } } The Endless Hunger: public sealed class TheEndlessHunger : QuestClass { public TheEndlessHunger() { Name = "The Endless Hunger"; QuestId.Add(12848); Step.AddRange(new[] { 1, 0, 0, 0, 0 }); } public override bool IsComplete() { return Quest.IsObjectiveComplete(1, QuestId.FirstOrDefault()); } public override bool Pulse() { if (ObjectManager.Me.InCombat) { Fight.StartFight(ObjectManager.Target.Guid); return true; } GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(2481.146f, -5585.025f, 415.6641f), 191582); return true; } }
-
GoToTask.ToPosition(new Vector3(1, 1, 1)); // change the 1's to your vectors
-
wManager.wManagerSetting.CurrentSetting.IgnoreServerRoadsWater
TheSmokie replied to Pudge's topic in General assistance
@emil19ro you're best bet to get what you want is to to private message @Droidz. -
wManager.wManagerSetting.CurrentSetting.IgnoreServerRoadsWater
TheSmokie replied to Pudge's topic in General assistance
I personally never look at this code before, i thought wrobot didnt have a way to detect if someone is on water or not. from what ive found out using Vs it is a boolen (true\false) -
Ps : I went a head and push the code for end to all things, dragon quest to help you.