Jump to content

Droidz

Administrators
  • Posts

    12439
  • Joined

  • Last visited

Everything posted by Droidz

  1. https://wrobot.eu/forums/topic/15080-how-to-load-custom-profile/#comment-67802
  2. 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.
  3. Hello, this error can be caused when you use a proxy (or redirect http request)
  4. Hello, I have answered your private message.
  5. .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');");
  6. In wow chat you haven't texts?
  7. 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))
  8. 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.
  9. 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() { } }
  10. Hello, in general settings you can find the option "Max unit near...".
  11. Can you try with fresh installation (in new folder to not lost your settings), without fightclass, plugin, profile (with automaton for the test).
  12. Hello, Before the "Pulse" step (to run the follow path quest) try to use step type "Reset" (with follow path quest name).
  13. Hello, WRobot compiler doesn't accept recent C# feature like "$". Use code like var smth = "123"; Logging.Write("smth = " + smth);
  14. Hello, you can also use https://wrobot.eu/allopass/
  15. 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/
  16. 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/ ).
  17. Hello, I'm not sure to understand. But to ignore combat, you can use https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088&_rid=1
  18. Hello, By default, WRobot uses little CPU. Disables all plugins, fightclass and uses the product "Automaton". Reactivate everything one by one to identify the file(s) that cause problems.
  19. Hello, try to reinstall WRobot in new folder (to check if problem continue to occur with default settings). If that don't solve your problem, please share your log file.
  20. Hello, You have taken a 6 month subscription in August. I think the date format is confusing for you. Format it's month/day/year
×
×
  • Create New...