Everything posted by Droidz
-
[Wotlk] Error on startup
Hello, You get this problem only when HMP plugin is installed? If problem is only with HMP plugin check if you have follow all steps of installation guide, if problem is not resolved contact plugin creator.
-
Is there any way to speed up wRotation?
Hello, try to increment you FPS in game, in fightclass editor you have also option "Frames per second", increment this option. Otherwise you have to decrease your number of spells, and avoid using lua (or if you can combine scripts)
-
druid exits flight form to gather
Redownload WRobot, install it in new folder, keep default settings , choose only your fly mount and you profile (don't use fightclass). Disable all wow addons and test it
-
druid exits flight form to gather
In ground mount name (in general settings) try to remove try to use ground mount (or nothing)
-
druid exits flight form to gather
Hello, try to put 0 in randomize node positon (in product settings)
-
"Incorrect Version"
Hello, Can share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
"Incorrect Version"
Hello, https://wrobot.eu/forums/topic/7716-how-to-starting-wow-in-32-bit/
-
My game is crashing every 5 minutes while gathering ores?
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/ ).
-
How to make bot pick closest enemy
In advanved general settings tab "Pathfinding" try to use option "Try to avoid group of mobs". But if it is not settings problem it is profile problem, a good profile is based on the behavior of WRobot to avoid areas where WRobot does not perform well.
-
How can i choose to which NPC bot will sell items?
Hello, go near npc on click on "blacklist zone" in tab tools. But you can also remove npc from your "npc db" (tab tools) and remove npc from your profile (with profile editor)
-
Server Down?
Hello, Try to install Redistributable Visual C + + 2010 (X86) and SlimDX (4.0 X86). Disable all Wow addons, all WRobot plugins and share your log file please ( ).
-
the bot does not fly by taxi
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/ ).
-
Maximize / restore down wow window attached to wrobot process
You need more code using System; using System.Runtime.InteropServices; using System.Windows.Forms; public class Main : wManager.Plugin.IPlugin { [DllImport("user32.dll", SetLastError = true)] static extern int GetWindowLong(IntPtr hWnd, int nIndex); public const uint WS_MINIMIZE = 0x20000000; public const uint WS_MAXIMIZE = 0x01000000; public const int GWL_STYLE = -16; void GetState() { int style = GetWindowLong(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, GWL_STYLE); if ((style & WS_MAXIMIZE) == WS_MAXIMIZE) { MessageBox.Show("maximized"); } else if ((style & WS_MINIMIZE) == WS_MINIMIZE) { MessageBox.Show("minimized"); } else { // normal style? MessageBox.Show("Normal??? > style=" + style.ToString("x8")); } } public void Initialize() { GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 6); GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 3); GetState(); robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 4); GetState(); } public void Dispose() { } public void Settings() { } }
-
[Suggestion] allow custom scripts into reward item
Hello, wait next update, I added even: wManager.Events.OthersEvents.OnSelectQuestRewardItem += delegate(CancelEventArgs cancelable) { }; if you cancel event WRobot will not select reward item.
-
[HELP] Affected by certain spell
I couldn't give a code that works, people here are more specialized in that. But I think you should look at the lua event side (wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs) Run this code to dump lua event in wrobot log: wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += delegate(string eventid, List<string> args) { try { //if (eventid != "COMBAT_LOG_EVENT_UNFILTERED" && eventid != "COMBAT_LOG_EVENT") // return; var argsString = new System.Text.StringBuilder(); var first = true; foreach (var a in args) { if (first) first = false; else argsString.Append(" , "); argsString.Append(a); } robotManager.Helpful.Logging.Write("[L] " + eventid + " > " + argsString.ToString()); } catch { } };
-
Maximize / restore down wow window attached to wrobot process
hi, try robotManager.Helpful.Win32.Native.ShowWindow(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, 3); (no tested)
-
[HELP] Affected by certain spell
What do you want to do if you are affected by a certain spell? You want check a special spell or check by example if your character is stun?
-
Bot spiraling up as high as possible
Wait next update and tell me if problem still happen
-
Stop looting with full bags
Hey, You can increment option "wManager.wManagerSetting.CurrentSetting.BlacklistUnitDefaultTimeMs" (default: 120000 ms (2 minutes)) Or you can increment option "wManager.wManagerSetting.CurrentSetting.MinFreeBagSlotsToGoToTown" (default 2) (you can found this option in advanced general settings) Or you can try plugin like: using wManager.Wow.Bot.States; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state is Looting && Bag.GetContainerNumFreeSlotsNormalType == 0) cancelable.Cancel = true; }; } public void Dispose() { } public void Settings() { } }
-
WoD 20779 is not working.
You use 64bit client, use 32 bit https://wrobot.eu/forums/topic/7716-how-to-starting-wow-in-32-bit/
-
Druid cancel flight form to herb
Hello, try without fightclass. if your problem is not resolved please 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/ ).
-
WoD 20779 is not working.
Hello, problem is normally resolved
-
[HELP] Affected by certain spell
Hello, The better is to use lua for that
-
Add event handler or hook to add new state safely
and code like: Engine lastEngine = null; robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += delegate(Engine engine, State state, CancelEventArgs cancelable) { try { if (engine == null || engine.States == null) return; if (engine != lastEngine) { if (engine.States.Any(s => s is Idle)) { lastEngine = engine; engine.AddState(new MyCustomState()); // or engine.States.Insert(X, new MyCustomState()); // cancelable.Cancel = true; ?? } } } catch { } };
-
How to make bot pick closest enemy
Hello, try to increment option "Max number of hostile units near the unit to attack", you can also activate radar3d to check if mob is not blacklisted