-
Posts
12586 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hi, no tested but you can try code like this: using System.Collections.Generic; using robotManager.Helpful; using wManager.Wow.Bot.States; using wManager.Wow.Class; using wManager.Wow.ObjectManager; public class QuestGrindingNearestMobs : QuestClass { public Vector3 HotSpots = new Vector3(1, 2, 3); public float RadiusGrinderZone = 50; public string NameQuest = "QuestGrindingNearestMobs"; private wManager.Wow.Bot.States.GrindingNearestMobs _grinder; private wManager.Wow.Bot.States.MovementLoop _movement; public QuestGrindingNearestMobs() { _grinder = new wManager.Wow.Bot.States.GrindingNearestMobs { Priority = 2, CenterGinderZone = HotSpots, RadiusGrinderZone = RadiusGrinderZone }; _movement = new wManager.Wow.Bot.States.MovementLoop { PathLoop = new List<Vector3>() { HotSpots } }; Name = NameQuest; } public override bool Pulse() { Logging.Status = "Quester > Grinder nearest mobs for \"" + Name + "\""; if (_grinder.NeedToRun) _grinder.Run(); else if (_movement.NeedToRun) { _movement.Run(); } return true; } public override bool IsComplete() { return !_grinder.NeedToRun && ObjectManager.Me.Position.DistanceTo(HotSpots) <= RadiusGrinderZone; } public override bool HasQuest() { return !IsComplete(); } }
-
Too many times to enter the dungeon in a short time.
Droidz replied to zhxwbr8's topic in General discussion
Hello, look https://wrobot.eu/forums/topic/9204-addingusing-a-counter/?do=findComment&comment=42769&_rid=1 -
Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, try to reinstall WRobot, you have problem with one of your plugin (you have a lot of errors)
-
Settings use PropertyGrid, you can found code to use enum or array in them on google. But better is to create your own settings UI if you want more control
-
Hi, with easy fightclass editor?
-
Not fully mining ores
Droidz replied to BlobIAmAFish's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, in advanced general settings tab "looting & farming" you have option "Max try per node", try to increment value -
Ignore the attack of a specific mob if (wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.ContainsKey(CurrentTarget.Guid)) wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Remove(CurrentTarget.Guid); wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Add(CurrentTarget.Guid, System.DateTime.Now + System.TimeSpan.FromMinutes(5)); (this code ignore mob attack for 5 minutes)
-
Try resolve navigation problem In some zone (mainly if you are on a moving gameobject like boat) use this option can help to resolve navigation problem (you need to enable this option also when you record path or get npc/gameobject positions) wManager.Wow.ObjectManager.WoWUnit.ForceRelativePosition = true; (don't forget to disable this option after, wrobot only turns it off itself after a restart)
-
Sample of plugin for Relogger (move file in the folder "WRobot\Plugins\Relogger\") Relogger Plugin Sample.cs
-
wrobot constantly closing and reopening with relogger rapidly
Droidz replied to justakeenz's topic in General discussion
Hello, Have you come back with a new fresh WRobot installation or you use your old install folder? If you use old install try to make fresh. Check if your fightclass / plugins / profiles are up to date, and try to deactivate everything and reactivate 1 by 1 to be sure that the problem does not come from one of them. If the problem is not solved can you send me few log files. -
Since latest update when I use radar3d everything goes black
Droidz commented on arktnas's bug report in Bug Tracker
Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). -
Since latest update when I use radar3d everything goes black
Droidz commented on arktnas's bug report in Bug Tracker
Hello, try to reinstall SlimDX -
Hello, lua code can change from one version of wow to another but you must use lua, try https://wowwiki.fandom.com/wiki/API_SetDungeonDifficulty and https://wowwiki.fandom.com/wiki/API_SetRaidDifficulty
-
Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hi, try with new update. But be careful, This team seems active, using a bot can be risky for your game account
-
Use new update
-
I won't back to old version of code (change was do 1 year ago). Current code: public static void BuyItem(string name, int number) { try { Lua.LuaDoString($@" local n = '{name.Replace("'", @"\'")}'; local q = {number}; for i=1,100 do local name, _, _, quantity = GetMerchantItemInfo(i) if name and n==name then if q > quantity then q = quantity end BuyMerchantItem(i,q) end end"); } catch (Exception e) { Logging.WriteError("BuyItem(string name, int number): " + e); } } to get old code remove: if q > quantity then q = quantity end
-
PathFinder server seem down, try to change server.
Droidz replied to Versailles's topic in General assistance
Can you share your log please (and all who have this problem), more I have log files, better is it, log helps me find and understand what can cause this problem for few users. -
hello, you are sure it is WRobot error? (no plugin/profile?) Can you tell me what is your list of "do not sell" and "force to sell" items, and name of your food/drink please