Jump to content

TheSmokie

Banned
  • Posts

    1215
  • Joined

Everything posted by TheSmokie

  1. Yes, that’s a fightclass
  2. I’d need more info on what product you bought.
  3. i would use mouse over to cast poly on the other mob.
  4. Just use whatsgoingon by @Matenia
  5. Or you can use toolbox and buy skills by name.
  6. 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.
  7. @Droidz can you add a option to train a set list of skills?
  8. You have to update your bot | wait for update. (I dont know if droidz pushed a update yet.)
  9. You can find lua bot on https://ewtwow.com/
  10. I turn on smooth moving to help, and change the wall ratios to 2.0.
  11. I apogize @Photogenic for over take your thread a little.
  12. 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)
  13. 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 .
  14. 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,
  15. wManager.Wow.Bot.States.ToTown.ForceToTown = true;
  16. I think this will help you, https://wrobot.eu/forums/topic/8668-workaround-for-stutter-flying/?page=2
  17. Can you post your logs?
  18. This may sound like a joke but do you have flying enabled?
  19. 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; } }
  20. GoToTask.ToPosition(new Vector3(1, 1, 1)); // change the 1's to your vectors
  21. @emil19ro you're best bet to get what you want is to to private message @Droidz.
  22. 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)
  23. Ps : I went a head and push the code for end to all things, dragon quest to help you.
×
×
  • Create New...