Jump to content

TheSmokie

Banned
  • Posts

    1215
  • Joined

Everything posted by TheSmokie

  1. Maybe if you ask nicely with a pretty please with more pepperonis on top ? or say I’ll smoke out the driver
  2. http://spendbitcoins.com/places/c/pizza/ pizza places that take bitcoin. This is more for the laughs but it’s a joke ?
  3. there is no wrobot for 8.0.1, youll need to reach out to @Droidzvia DM.
  4. TheSmokie

    Vehicle options

    Hello @Droidz I have been stuck on end to all things death knight quest and I am unable to get aiming the dragon to work while flying. Is there anyway you can add more vehicle api to wrobot? quest : https://www.wowhead.com/quest=12779/an-end-to-all-things I am able to get it to fly around but not aim and shot while moving. It’s just idk ice tried everything and out of ideas.
  5. if its just a delivery quests then make change quest objective to false (there isnt any quest objective so you can just turn in. sorry i didnt know there was no objectives.)
  6. at "back to billy" there is no info. also for a complete condition you can use this // set you're quest id and set you're item id and amount. once thats done add to complete condition. return (Quest.IsObjectiveComplete(1, ID) && ItemsManager.GetItemCountById(ID) == 1);
  7. edit this to you're needs. it will take a little editing to make work for you're needs. private Dictionary<int, uint> FoodDictionary = new Dictionary<int, uint> { { 5, 2287 }, { 15, 3770 }, { 25, 3771 }, { 35, 4599 }, { 45, 8952 }, { 55, 8952 }, { 65, 8952 }, { 75, 8952 }, }; int previousFoodLevel = 0; foreach (int level in FoodDictionary.Keys) { if (previousFoodLevel <= Me.Level && level > Me.Level) { CurrentFood = FoodDictionary[previousFoodLevel]; string foodName = ItemsManager.GetNameById(FoodDictionary[previousFoodLevel]); wManagerSetting.CurrentSetting.FoodName = foodName; } previousFoodLevel = level; }
  8. if (ObjectManager.Pet.IsDead && !ObjectManager.Me.IsMounted && !ObjectManager.Me.IsDead && CallPet.KnownSpell && CallPet.IsSpellUsable) { CallPet.Launch(); Thread.Sleep(Usefuls.Latency + 500); } I've edited you're C# with a few code problems. There is a lot of conditions you can use. like i said via discord message. watch @Marsbar Amazing guide on how to make fightclasses. he taught me everything i know from that single video and a lot of trial and error. Try disabling all you're wow addons , this might case you to dismount. also looping is good and all but the way you have it will case a lot of problems with lag, cpu heating up. just use a array list.
  9. just this //dont if i am mounted !ObjectManager.Me.IsMounted // do if i am mounted ObjectManager.Me.IsMounted
  10. tbh thats you're downfall, making a fightclass right is worth more then being lazy. Trust me, ive thought about being lazy with some of my fightclasses but i had to write the food method for mage completely. being lazy helps no one.
  11. why use bag slot instead of the meat or food name / ID?
  12. Hello, First off using this "Lua.LuaDoString(@"WrathCS.text:SetText(""Buffing Hunter's Mark"")");" is slowing you're rotation down. Reason can be found Here 2nd with you're mend problem, you need to add a space inbetween <= Here 60 (should fix the problem 3rd you do not really need to keep using Thread.Sleep(Usefuls.Latency + 14000);, you can use "Usefuls.WaitIsCasting();" its a lot better in my option. 4th : for feeding you can use code like this // food list, it will choost whats best food inside you're bags. private List<string> FoodList() { return new List<string>() { "Tough Jerky", }; } // choost from the food list private void FeedPet() { if (PetFoodType().Contains("Food type")) FeedByType(FruitList()); } // feed from list FeedPet(); Thread.Sleep(600); 5th id try adding "Usefuls.WaitIsCasting();" to mark and sting. make sure to check if you're spelling is correct. if you need anymore help join my discord server and id be more then happy to help. Link : ttps://discord.gg/ppm8Ufc
  13. in the link @Matenia Post is the right method. GetQuestReward(itemChoice);
  14. i use the battle ground option with fightclasses i made to work.
  15. Honestly i've found that battleground bot on warmane is the safeist way to farm gold via gems.
  16. would also be useful for you to have a key to wrobot. just a fyi.
  17. Look up honor buddy then come back and tell us how you can get sued.
  18. Classic is gonna be fun off the latest wow client with a more improved warden then any private server has ever seen. Unless @Droidz makes a way to bypass it or a work around for it and not get a massive lawsuit by the greedy mofos at blizzard then maybe but it’s hard.
  19. Let’s just say there is a higher chance of me becoming a drag queen before @Droidz releases the bot for classic
  20. Nope.
  21. Can you provide you’re plugin so I can have a lookie? I might be able to help
  22. use option run wow in different path
  23. I was wondering this also.
×
×
  • Create New...