-
Posts
12579 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
I replied to your private message.
-
Hello, https://wrobot.eu/forums/topic/15107-64-bit-client-change-to-32-bit/?do=findComment&comment=67894&_rid=1
-
7.35 26124 Game version is incorrect
Droidz replied to bobbekong's topic in WRobot for Wow Legion - Help and support
Hello, try to download game client in another website -
does this work for classic?
Droidz replied to bigwetfeet's topic in WRobot for Wow Wrath of the Lich King - Help and support
Hello, no, it's the list of supported versions : https://wrobot.eu/supported-wow-versions/ -
Issue with "Can cure Debuff" function always returning false
Droidz replied to Evaexe's topic in Developers assistance
Hello, In "playerName" argument you should pass arguments like "player", "target", "focus", "party1", "raid1" (if you pass real player/unit name that will no work). Your code should look like that if you want to use playerName (not tested) : public bool CanPurify(string playerName) { var units = ObjectManager.GetObjectWoWUnit(); units.AddRange(ObjectManager.GetObjectWoWPlayer()); var unitsByName = ObjectManager.GetWoWUnitByName(units, playerName); return CanPurify(unitsByName.FirstOrDefault()); } public bool CanPurify(WoWUnit wowUnit) { if (wowUnit == null || !wowUnit.IsValid) return false; string unit; long currentFocus; if (wowUnit.IsLocalPlayer) unit = "player"; else if (wowUnit.IsMyTarget) unit = "target"; else { currentFocus = ObjectManager.Me.FocusGuid; ObjectManager.Me.FocusGuid = wowUnit.Guid; unit = "focus"; } var lua = $@" canPurify = false for i = 1, 40 do local name, _, _, debuffAuraType, _, _, _, _, _ = UnitDebuff(""{unit}"", i); if (name and debuffAuraType) and (debuffAuraType == 'Magic' or debuffAuraType == 'Disease' or debuffAuraType == 'Poison') then canPurify = true break end end return canPurify "; if (unit == "focus") ObjectManager.Me.FocusGuid = currentFocus; Logging.Write($"Checking if {wowUnit} can be purified..."); bool result = Lua.LuaDoString<bool>(lua); Logging.Write($"Result: {result}"); return result; } -
Have you tried another food (to be sure it's not a problem with this food specifically, some item and spell names may cause problems in some languages). Wow addons too, try to disable all.
-
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/ ).
-
I created and used this profile for the test : t.xml (Grinder profile), and it works fine (tested again just now)
-
64 bit client change to 32 bit
Droidz replied to mihaljevic's topic in WRobot for Wow Cataclysm - Help and support
Download client on another website (this site seems safe : https://wowdl.net/fichiers/clients ) -
I added support to pathfinder server
-
Flight form slow dismounting when gathering.
Droidz replied to mads1803's topic in Gatherer assistance
Hello, in advanced general settings, try to activate the option "Use lua to move" (or desactivate this option if enabled). -
64 bit client change to 32 bit
Droidz replied to mihaljevic's topic in WRobot for Wow Cataclysm - Help and support
Hello, What executables do you have in the game folder? Normally, you rename (or delete) the executable file of the 64 bit version and you launch the Wow.exe file (Wow.exe is 32bit version) -
Hi, the correct code is : public static string GetTextFixed(string commandline) { uint FrameScript_GetText = 0x0819d40; var commandByte = System.Text.Encoding.UTF8.GetBytes(commandline + "\0"); var luaGetLocalizedTextSpace = wManager.Wow.Memory.WowMemory.AllocData.Get(commandByte.Length); var rCodecave = wManager.Wow.Memory.WowMemory.AllocData.Get(IntPtr.Size); if (luaGetLocalizedTextSpace <= 0) return ""; wManager.Wow.Memory.WowMemory.Memory.WriteBytes(luaGetLocalizedTextSpace, commandByte); wManager.Wow.Memory.WowMemory.Memory.WritePtr(rCodecave, 0); var asm = new[] { wManager.Wow.Memory.WowMemory.CallWrapperCodeRebaseEsp(FrameScript_GetText, 0x0C, luaGetLocalizedTextSpace, -1, 0), "mov ecx, " + rCodecave, "mov [ecx], eax", wManager.Wow.Memory.WowMemory.RetnToHookCode }; wManager.Wow.Memory.WowMemory.InjectAndExecute(asm); var sResult = string.Empty; var a = wManager.Wow.Memory.WowMemory.Memory.ReadPtr(rCodecave); if (a > 0) sResult = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(a); if (string.IsNullOrEmpty(sResult)) sResult = string.Empty; wManager.Wow.Memory.WowMemory.AllocData.Free(luaGetLocalizedTextSpace); wManager.Wow.Memory.WowMemory.AllocData.Free(rCodecave); return sResult; }
-
thanks, I'll add it soon to pathfinder, you know in what game versions these elevators are?
-
Help with my Allopass Payment (got no code)
Droidz replied to Demisenkai's topic in General assistance
Hello, for some code you have to wait few hours (to get them by mail). Enter the codes obtained here https://wrobot.eu/allopass/ You can check the available credit on your account here : https://wrobot.eu/clients/credit/ To obtain the code quickly the best way is to call. But, I don't have any information about the payments or the status of the payments. I get information and money only when you use a code (these codes can be used on several sites, that's why I don't get any information before a code validated on this site). -
I accidentally bought 2 times one of the offers
Droidz replied to emorroidin's topic in General assistance
Hello, Problem solved by support ticket. -
You can run this c# code : robotManager.Helpful.Others.OpenWebBrowserOrApplication(@"c:\myapp.exe");
-
Code should look like : Var.GetVar<int>("RND5451") == 2
-
Hello, yes, you can run c# code to execute your application. What type of profile do you use ?
-
Hello, try to disable option BlackListTrainingDummy : wManager.wManagerSetting.CurrentSetting.BlackListTrainingDummy = false;
-
Hello, what is the position and continent of this elevator please
-
mailing gold accept button
Droidz replied to Oustm1ne's topic in WRobot for Wow Legion - Help and support
Hi, it's not StaticPopup1Button1:Click() ? -
Wrobot will not attack first WoW 1.12.1
Droidz replied to xandroido's topic in Battlegrounder assistance
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/ ). Some options like "max unit near" can cause this problem