Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hi, it's not StaticPopup1Button1:Click() ?
  2. 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
  3. Hello, Are you certain that your profile is adapted to your game version ? You get same problem with you use the product 'Automaton' ?
  4. Hello, this error can be caused when you use a proxy (or redirect http request)
  5. 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.
  6. Can you give me link of the profile please
  7. If it's xml it's not for "custom profile". Where do you find this file ?
  8. Hello, can you share the full log file please (you can find it in the folder "Logs").
  9. https://wrobot.eu/forums/topic/15080-how-to-load-custom-profile/#comment-67802
  10. 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.
  11. Hello, I have answered your private message.
  12. Hello, Your problem should solved.
  13. .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');");
  14. In wow chat you haven't texts?
  15. 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))
  16. 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.
  17. 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() { } }
  18. Hello, in general settings you can find the option "Max unit near...".
  19. Can you try with fresh installation (in new folder to not lost your settings), without fightclass, plugin, profile (with automaton for the test).
  20. Hello, sorry for the delay. The problem should solved on the new update.
  21. Hello, Before the "Pulse" step (to run the follow path quest) try to use step type "Reset" (with follow path quest name).
  22. or compiled plugin (dll)
  23. Hello, WRobot compiler doesn't accept recent C# feature like "$". Use code like var smth = "123"; Logging.Write("smth = " + smth);
  24. Hello, you can also use https://wrobot.eu/allopass/
  25. Changed Status to Confirmed Changed Version to All
×
×
  • Create New...