Jump to content

camelot10

Elite user
  • Posts

    838
  • Joined

  • Last visited

Everything posted by camelot10

  1. its bad practice to search npc by name. use id and entry
  2. yes. east part of broken shore island. you need to kill some amount of mobs before that problem appear
  3. here. check log 8 апр 2017 19H35.log.html
  4. after some time (5-10min) this error appear in log, and after 5-10 min wrobot stopresponding. log attached. quests http://ru.wowhead.com/quest=45970/dutys-end http://www.wowhead.com/quest=45985/hellish-scavengers
  5. please make wrobot checking use of cvar "interactOnLeftClick" http://wowprogramming.com/docs/cvars/interactOnLeftClick
  6. Var.SetVar("MyOldItem", 12345); var oldItemID = Var.GetVar<int>("MyOldItem);
  7. var hotspots = new List<Vector3>() { new Vector3(-1265.911, 2403.347, 1.521154, "None"), new Vector3(-1225.33, 2321.722, 1.624876, "None"), new Vector3(-1191.712, 2339.736, 1.835864, "None"), }; var mobs = new List<int>() { 120966, 120963, }; var mob = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(mobs)); if (mob != null && mob.IsValid && mob.IsAlive) { if (mob.GetDistance > 40) { GoToTask.ToPosition(mob.Position, 30); return true; } Interact.InteractGameObject(mob.GetBaseAddress, true); Lua.LuaDoString("ExtraActionButton1:Click()"); Usefuls.WaitIsCasting(); return true; } GoToTask.ToPosition(hotspots[Others.Random(0, hotspots.Count - 1)]); return true; this quest objective N2 http://www.wowhead.com/quest=45035/the-call-of-battle
  8. its related to this bug bot doesnt target new mob coz interact failed
  9. dont know why its happens. but i tryed to write today quest. and Interact.InteractGameObject doest target anything. also i have guessing thats why sometimes fightclasses doesnt work/stuck. bot write in log 03:58:36 - [Fight] Player Attack <MOB NAME> and nothing get targeted. and this cause stuck in bot/fightclass/fight work.
  10. var corpse = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWUnit() .Where(u => u != null && u.IsValid && u.IsDead && u.Entry == <YOUR MOB ID> && !wManager.wManagerSetting.IsBlackListed(u.Guid) ) .OrderBy(u => u.Position.GetDistance) .FirstOrDefault(); if (corpse != null) { ItemsManager.UseItem(itemID); Usefuls.WaitIsCasting(); Interact.InteractGameObject(corpse.GetBaseAddress); //blacklist corpse return true; } corspse ^ mob var mob = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(mobs)); if (mob != null && mob.IsAlive && mob.IsAttackable && mob.IsValid) { Interact.InteractGameObject(mob.GetBaseAddress); Fight.StartFight(mob.Guid); return true; } npc var npc = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(npcId)); if (npc != null && npc.IsValid && npc.IsAlive) { if (GoToTask.ToPositionAndIntecractWithNpc(npc.position, npc.Entry, <GOSSIP NUMBER, MOSTLY 1>)) { //blacklist mob } } blacklist wManager.wManagerSetting.AddBlackList(mobEntry.Guid, 5 * 60 * 1000); //5 min blacklist move on loop MovementManager.GoLoop(hotspots);
  11. C# coding if sprit near talk to spirit and blacklist for 5min if dead corpse near use item and blacklist for 5min if mob near attack else loop hotspots
  12. i dont want convert figthclass into C#, is there any possibility to run this code while in fight with xml?
  13. is it possible for fightclass always try to move to target back/behind?
  14. can you read?
  15. no changelog. deal with it
  16. ask Driodz, when he release new update you will be able to play
  17. expect update of course
  18. Version 17.01.2018

    982 downloads

    You can set any talents. Tryed to use all spells / talents / artifact ability Based on http://www.icy-veins.com/wow/unholy-death-knight-pve-dps-rotation-cooldowns-abilities My profiles
  19. не могу прикладывать к постам картинки из внешних источников. тут будет тема где я буду складировать картинки для этого сайта
  20. LuaDoString
  21. Main -> Custom Profile
  22. Version 1.0.0

    614 downloads

    You can choose any talents, i tryed to cover all spells. Based on http://www.icy-veins.com/wow/vengeance-demon-hunter-pve-tank-guide My profiles
  23. maded dirty hook public static bool ClearKaynIfAltriusChoosed() { if (ChoosedKayn) return false; var kayn = new List<int>(){ //DH class hall 99247, 95240, //DH vengeance artifact //DH havoc artifact //DH azsuna }; foreach (var npc in Quest.NPCList) { if (kayn.Contains(npc.Id)) { Log(" (Hook) Clear NPC='" + npc.Name + "' PickUp and TurnIn quests, because player choosed Altrius."); npc.PickUpQuests.Clear(); npc.TurnInQuests.Clear(); } } return true; }
  24. official live servers? what faction you guys need? all of them? pm me with prices and i think about it
×
×
  • Create New...