Everything posted by Droidz
- wrobot does not work
-
请问这是什么情况?一直进不了系统
Hello, this error can be caused when you use a proxy (or redirect http request)
-
How to load custom profile.
this is quester profile, you need to put downloaded file in the folder "WRobot\Profiles\Quester\", select "Quester" product and select profile in "Product settings" tab.
-
How to load custom profile.
Can you give me link of the profile please
-
How to load custom profile.
If it's xml it's not for "custom profile". Where do you find this file ?
-
Weird shutdowns
Hello, can you share the full log file please (you can find it in the folder "Logs").
-
How to load custom proflie
https://wrobot.eu/forums/topic/15080-how-to-load-custom-profile/#comment-67802
-
How to load custom profile.
Hello, Move (and unzip if zipped) downloaded file in the folder "WRobot\Profiles\Custom Profile\". In the bot main tab, select the product "Custom Profile", in the tab "Product Settings" select the previously added profile.
-
help Alopass does not work no key
Hello, I have answered your private message.
-
Key not working for version 7.3.5 26365
Hello, Your problem should solved.
-
LINUX ?
.net Framework 4.x (4.5 minimum). You can't use "$", bot compiler use old C# compiler (you can't use the new language features, or, you need previously to compile your code in dll). You can run your Lua code like that : var hello = "hello world"; Lua.LuaDoString(@" local index = string.find('" + hello + @",h'); "); or var hello = "hello world"; Lua.LuaDoString("local index = string.find('" + hello + ",h');");
-
Stack Count
In wow chat you haven't texts?
-
Stack Count
Hello, your code should good, I don't understand why you it doesn't work. try to debug it with print like that : returnResult = false; local name = GetSpellInfo(114250); local _, _, _, count = UnitBuff("player", name); if count and count >= 4 then returnResult = true; end print(tostring(returnResult) .. " - " .. tostring(count) .. " - " .. tostring(name))
-
LINUX ?
Hello, I don't think so, but I never tried. WRobot uses a lot of Windows APIs, and a Windows specific language, there is really little chance that it will work with a Windows emulator.
-
Needing to remove Blood elves from Wrobot files
Hi, try plugin like using wManager.Wow.Enums; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.FightEvents.OnFightStart += (unit, cancelable) => { if (unit.Type == WoWObjectType.Player) { var player = new WoWPlayer(unit.GetBaseAddress); if (player.PlayerRace == PlayerFactions.BloodElf) { cancelable.Cancel = true; ObjectManager.BlackListObjectManagerGuid.Add(player.Guid); } } }; } public void Dispose() { } public void Settings() { } }
-
Bot is attacking mob (also in the near of other several mobs)
Hello, in general settings you can find the option "Max unit near...".
-
WRobot crashes as soon as I pass the mouse over a button where a popup appears (play button, pause button)
Can you try with fresh installation (in new folder to not lost your settings), without fightclass, plugin, profile (with automaton for the test).
-
WRobot crashes as soon as I pass the mouse over a button where a popup appears (play button, pause button)
Hello, sorry for the delay. The problem should solved on the new update.
-
Quester FollowPath waypoint issue
Hello, Before the "Pulse" step (to run the follow path quest) try to use step type "Reset" (with follow path quest name).
-
Cannot compile plugin in relogger
or compiled plugin (dll)
-
Cannot compile plugin in relogger
Hello, WRobot compiler doesn't accept recent C# feature like "$". Use code like var smth = "123"; Logging.Write("smth = " + smth);
-
Payment option
Hello, you can also use https://wrobot.eu/allopass/
-
WRobot crashes as soon as I pass the mouse over a button where a popup appears (play button, pause button)
Changed Status to Confirmed Changed Version to All
-
rouge just pick pocket in instance
I think you should manage Stealth in your fightclass (or in separed thread). But why recode all. If you want something simple use a method like https://wrobot.eu/forums/topic/3383-pickpocket-mobs/?do=findComment&comment=16747&_rid=1 or https://wrobot.eu/files/file/862-rogue-pick-pocket/
-
WRobot crashes as soon as I pass the mouse over a button where a popup appears (play button, pause button)
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/ ).