-
Posts
12590 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, when wrobot ignore or blacklist a NPC it is written why in the log.
-
Read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 do you have file "oMESpQ.exe" in wrobot folder? if yes try to launch this file
-
Hello, try to disable your antivirus
-
Bonjour, pouvez vous partager vos fichier log ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, use lua to click in wow interface button http://wrobot.eu/forums/topic/1689-useful-scripts/#comment-8447
-
This code is for wrobot for vanilla, you can use lua for others wow vresion
-
Bonjour, pouvez vous partager vos fichier log ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (install slimdx and vsc++)
-
Fishing problems
Droidz replied to mbfme's topic in WRobot for Wow The Burning Crusade - Help and support
Hello, try to increment your min/max latency in advanced general settings tab others -
Hello, you can use wow addon for this or http://wrobot.eu/files/file/667-lootfilterwrobot/
-
Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, you have normal wrobot subscription, you need unlimited subscription to run more than 1 session at the same time.
-
Fight Class only selected enemy atack.
Droidz replied to hakancamli's topic in Fight Classes assistance
Hello, use WRotation product -
Now support 7.2.0.23911
-
You are alone at report this problem, I think than this problem is probably caused by your wrobot install. Can you try to reinstall WRobot? If you can send me your profile I'll try to reproduce this problem (you can send me your profile by private message).
-
Hello, you can create your own product/custom profile, or use event (with plugin or fightclass) to hook "FreeDefaultState" bg like: robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state == null || string.IsNullOrWhiteSpace(state.DisplayName) || state.DisplayName != "Free default") return; // put your bahaviour here: // if you don't want run base behaviour: cancelable.Cancel = true; };
-
And you get this problem only in this zone?
-
Hello, on what version of wow do you play? and you can try to use lua for that
-
Force bot to take a "break"
Droidz replied to insanity's topic in WRobot for Wow Vanilla - Help and support
Hello, try new Thread(() => { robotManager.Products.Products.InPause = true; Thread.Sleep(20 * 1000); // 20 secondes robotManager.Products.Products.InPause = false; }).Start(); or robotManager.Products.Products.InPause = true; Thread.Sleep(20 * 1000); // 20 secondes robotManager.Products.Products.InPause = false; -
Normally wrobot try to found the best position to resurrect. Are you sure that when this happen, an safe spot is available to resurrect?
-
Hello, to use descriptor you can use WRobto API like: uint address = wManager.Wow.ObjectManager.ObjectManager.Me.GetDescriptorAddress(wManager.Wow.Patchables.Descriptors.PlayerFields.NextLevelXP); int result = wManager.Wow.Memory.WowMemory.Memory.ReadInt32(address); If you don't want to use focus, you can try to use "mouseover": WoWUnit target; // ... your target uint s_MouseOver = 0x00BD0798; // 3.3.5 http://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-memory-editing/298310-3-3-5-offsets.html#post1902575 wManager.Wow.Memory.WowMemory.Memory.WriteUInt64(s_MouseOver, target.Guid); SpellManager.CastSpellByNameOn("Spell Name", "mouseover");