Jump to content

alchemy

Members
  • Posts

    15
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

alchemy's Achievements

  1. Don't use any addons. Wrobot can looted any mob after death. Please provide c# code to loot.
  2. Hello, i need help. Can you provide c# code to loot first or second slot after pick pocketing? http://prntscr.com/hhr32g At this screen character have 1 slot. I'll try Lootslot(1); and wManager.Wow.Bot.Tasks.LootingTask too won't work.
  3. If i started near flightmaster 3 of 5 times bot use this, 2 times blacklisted flightmaster. Please fix navigation logic "Dalaran to any broken isle location" you may check it too easy.
  4. 23 ноя 2017 11H16.log.html
  5. Don't use any advanced setting check box. Full default settings.
  6. Hello. For 4 months Dalaran mesh bugged, the bot can not leave it correctly, it constantly beats its head against the wall, does not use the flightmasters. When will there be a fix of Dalaran? I can record video if it helps.
  7. foreach (var woWItem in wManager.Wow.Helpers.Bag.GetBagItem()) { uint temp = wManager.Wow.Helpers.ItemsManager.GetIdByName(woWItem.Name); //Item ID }
  8. Hello! After starting the bot, the reloger does not change the size of the window and also does not transfer it to the indicated position.This bug appeared in the latest version. Tell me how to solve this problem? https://youtu.be/MuVqWB4mNVo
  9. Hello, why after the start of the bot, it is forced on 50 FPS? I have fix this shit. I don't find any setting about it.
  10. Hi, I need to check the status of the window, which opens after use any vendor. C# code please. Thx! i Think it's method have 2 state, window open, window close. bool wState = true or false.
  11. Hello! I'm continue building dungeon profile and now me need help. Mobs are not ordinary, when they have 1 hp, they become immortal. The bot ceases to change targets and is glued to this mob. After 1 hp, the mob becomes friendly. The bot needs to move within 50 meters and lower the life of all the mobs that are there. It would be ideal if I could turn off the fight, and just press 1 aoe ability. public class SecondBossKill : QuestClass { public SecondBossKill() { Thread t = new Thread(() => { var newbie = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWUnit(wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(111)); var snow = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWUnit(wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(222)); var lotos = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWUnit(wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(333)); while (true) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if(newbie.IsValid && newbie.HealthPercent >= 1 && newbie.GetDistance <= 40) { wManager.Wow.Helpers.Interact.InteractGameObject(newbie.GetBaseAddress); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(202028); Thread.Sleep(500); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(106830); } if(snow.IsValid && snow.HealthPercent >= 1 && snow.GetDistance <= 40) { wManager.Wow.Helpers.Interact.InteractGameObject(snow.GetBaseAddress); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(202028); Thread.Sleep(500); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(106830); } if(lotos.IsValid && lotos.HealthPercent >= 1 && lotos.GetDistance <= 40) { wManager.Wow.Helpers.Interact.InteractGameObject(lotos.GetBaseAddress); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(202028); Thread.Sleep(500); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(106830); } if(newbie.HealthPercent <= 2 && snow.HealthPercent <= 2 && lotos.HealthPercent <= 2) { break; } } } }); t.Start(); } }
  12. Thx mate! Working var o = wManager.Wow.ObjectManager.ObjectManager.GetObjectByGuid(new MemoryRobot.Int128("0002E600002D7A4F203AF40020255880"));
  13. i will try MemoryRobot.Int128 = 00663400002CA717202FD477E0376C80 ; But compiller don't accept this. Need easy code to select mob by EntryID or GUID.
  14. Hello! I have 2 targets, me need force select a first target and started attack. After few second me need select a second target and start attack him. I will try this code but don't work. It's questing profile, don't plugin. Int128 target1 = 00663400002CA717202FD477E0376C80 ; Int128 target2 = 00663400002CA717202FD477E0377C80 ; ObjectManager.Me.Target = target1; Thread.Sleep(5000); ObjectManager.Me.Target = target2; i receive error https://docs.microsoft.com/en-gb/dotnet/csharp/language-reference/compiler-messages/cs1685 Please help me.
×
×
  • Create New...