-
Posts
838 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by camelot10
-
its bad practice to search npc by name. use id and entry
-
yes. east part of broken shore island. you need to kill some amount of mobs before that problem appear
-
here. check log 8 апр 2017 19H35.log.html
-
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
-
Interact.InteractGameObject doesnt work + That lead to fight stuck
camelot10 commented on camelot10's bug report in Bug Tracker
please make wrobot checking use of cvar "interactOnLeftClick" http://wowprogramming.com/docs/cvars/interactOnLeftClick -
Interact.InteractGameObject doesnt work + That lead to fight stuck
camelot10 commented on camelot10's bug report in Bug Tracker
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 -
its related to this bug bot doesnt target new mob coz interact failed
-
Interact.InteractGameObject doesnt work + That lead to fight stuck
camelot10 posted a bug report in Bug Tracker
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. -
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);
-
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
-
how to make fightclass move behind target?
camelot10 replied to camelot10's topic in Fight Classes assistance
i dont want convert figthclass into C#, is there any possibility to run this code while in fight with xml? -
is it possible for fightclass always try to move to target back/behind?
-
ask Driodz, when he release new update you will be able to play
-
expect update of course
-
- 1 comment
- 2 reviews
-
- death knight
- unholy
-
(and 1 more)
Tagged with:
-
не могу прикладывать к постам картинки из внешних источников. тут будет тема где я буду складировать картинки для этого сайта
-
- 1 comment
-
- demon hunter
- vengeance
-
(and 2 more)
Tagged with:
-
One quest + multple quest IDs + multiple NPC (pick&turnin)
camelot10 replied to camelot10's topic in Quester assistance
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; } -
official live servers? what faction you guys need? all of them? pm me with prices and i think about it