-
Posts
1215 -
Joined
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by TheSmokie
-
-
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.
-
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.)
-
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);
-
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; }
-
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.
-
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
-
vanilla Manual Quest pick up and quest give
TheSmokie replied to zatvorgt's topic in General discussion
in the link @Matenia Post is the right method. GetQuestReward(itemChoice); -
i use the battle ground option with fightclasses i made to work.
-
Honestly i've found that battleground bot on warmane is the safeist way to farm gold via gems.
-
Anyone use this for "Unlimited wow" - fun server.
TheSmokie replied to Reborn's topic in General discussion
would also be useful for you to have a key to wrobot. just a fyi. -
Look up honor buddy then come back and tell us how you can get sued.
-
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.
-
Let’s just say there is a higher chance of me becoming a drag queen before @Droidz releases the bot for classic
-
Can you provide you’re plugin so I can have a lookie? I might be able to help
-
How to use Relogger with multiple wow.exe clients?
TheSmokie replied to ronkert's topic in General assistance
-
I was wondering this also.
-