Jump to content

Droidz

Administrators
  • Posts

    12432
  • Joined

  • Last visited

Community Answers

  1. Droidz's post in Plugin to disable auto loot was marked as the answer   
    Hello, line 39 and 48 replace
    autoInteract by
    autoLootDefault  
  2. Droidz's post in Relogger not selecting wow2 account was marked as the answer   
    Hello, in wow (in login screen), check if option "Remember Account Name" is disabled.
  3. Droidz's post in Pathfinder Event => Start, End was marked as the answer   
    Hello, you can disable PathFinder here: 
    wManagerSetting.CurrentSetting.UsePathsFinder For the events, wait next update I added:
    wManager.Events.OthersEvents.OnPathFinderFindPath // Vector3 from, Vector3 to, string continentNameMpq, CancelEventArgs cancelable wManager.Events.OthersEvents.OnPathFinderFindPathResult // Vector3 from, Vector3 to, List<Vector3> path, string continentNameMpq, bool resultSuccess  
  4. Droidz's post in Creating a plugin with debugging? was marked as the answer   
  5. Droidz's post in The bot skips sale was marked as the answer   
    Hello,
    WRobot blacklist sometime your repair/vendor npc "[ToTown] Unable to reach the vendor, blacklist it 120 minutes (you can disable this NPC in NPC DB tab 'Tools')."
    In your profile, try to disable repair/selling when you are in "Ulduar80" and reactive it when you are in "Northrend"
  6. Droidz's post in Change fight class/load plugin/changing the type of the bot in questing profile using code was marked as the answer   
    Hello,
    1:
    wManager.wManagerSetting.CurrentSetting.CustomClass = "fdsfsd.xml"; wManager.Wow.Helpers.CustomClass.DisposeCustomClass(); Thread.Sleep(1000); wManager.Wow.Helpers.CustomClass.LoadCustomClass(); 2: 
    wManager.Plugin.PluginsManager.DisposeAllPlugins(); foreach (var p in wManager.wManagerSetting.CurrentSetting.PluginsSettings) { if (p.FileName == "myplugin.cs") p.Actif = true; } wManager.Plugin.PluginsManager.LoadAllPlugins(); (but you can run c# code in your quest profile, it is better way http://wrobot.eu/forums/topic/5272-new-script-node-in-quester-profiles/#comment-24318
    3: You cannot
  7. Droidz's post in Summon a friend was marked as the answer   
    In runluacode, put only lua code: 
    SummonFriend("party1")  
  8. Droidz's post in Shared CS code for all profiles was marked as the answer   
  9. Droidz's post in WRobot compatible with Windows XP? was marked as the answer   
    Hello, yes WRobot works on Windows XP, he uses Framework 4.0 (in required files I have put link to Framework 4.6 because this version support Framework 4.0 and has better performance, but if you use Win XP, install Framework 4.0).
  10. Droidz's post in Visual С# Command Line Compiler was marked as the answer   
    Edit your profile, in replace last step (LoadProfile: HoL.xml) by step type GoToStep: 0.
    Try to repair/reinstall framework: https://www.microsoft.com/en-us/download/details.aspx?id=30135
  11. Droidz's post in [Tol-Barad]Magnets, how do they works ? was marked as the answer   
    Hello, use quest type  UseItemOn, but before pulse this step add step type runcode with c# code;
    wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(123456); (replace 123456 by the entry id of gameobject at havest)
  12. Droidz's post in Set a relogger to start on time? was marked as the answer   
    Hello, sorry you cannot
  13. Droidz's post in Mount Golem was marked as the answer   
    Hello, put in your ground mount settings the name "Sky Golem".
  14. Droidz's post in Dungeon profile issue was marked as the answer   
    Hello, I cannot help you without your profile, but you can try to run this code when your profile start (one time):
    robotManager.Events.LoggingEvents.OnAddLog += delegate(robotManager.Helpful.Logging.Log log) { if (log != null && log.Text.Contains("[Resurrect] Player retrieve corpse")) { new System.Threading.Thread(() => robotManager.Products.Products.ProductRestart()).Start(); } }; (this code stop/start quester when you retrieve your corpse) 
  15. Droidz's post in Using stems/stalks/blades to create an herb was marked as the answer   
    Hello, you want combine items? if yes use this plugin: http://wrobot.eu/files/file/481-combine/
  16. Droidz's post in Wrobot 7.0.3 22522 was marked as the answer   
    Hello, http://download.wrobot.eu/wrobot/oldversion/WRobot_7.0.3_22522.zip
  17. Droidz's post in Relogger not working properly was marked as the answer   
    Hello,this problem is caused by new protection.
    In relogger go to "General Settings" and change "Path to WRobot", select file with same icon than 'WRobot.exe' with an random name like "UqtfGgP.exe".
  18. Droidz's post in Bot Freeze after X minutes was marked as the answer   
    Hello, try to remove folder "WRobot\Data\Meshes\".
  19. Droidz's post in Use ExtraActionButton spell to kill NPC was marked as the answer   
    ps: you can also replace
    if (itemId > 0) ItemsManager.UseItem(itemId); // if it is item if (spellId > 0) SpellManager.CastSpellByIdLUA(spellId); // if it is spell by
    Lua.LuaDoString("ExtraActionButton1:Click()");  
  20. Droidz's post in Q: Unwelcome Visitors 42160 - part 1 was marked as the answer   
    Hello, to AOE spell/item, you need to use: 
    wManager.Wow.Helpers.ClickOnTerrain.Pulse(new Vector3(724.7518, 5318.563, 57.52559));
  21. Droidz's post in Interact with NPC with no Objective count was marked as the answer   
    Hello, you can try to put true at "Auto detect objective count X". If this don't works you need to detect manually (with c# code in option "Is complete condition")
  22. Droidz's post in Zip multiple fight classes for easy updates was marked as the answer   
    Hello, I have removed it.
    But it is possible manually, you need to edit file "WRobot\Settings\packages.xml" and add link to your zip file, for it edit packages.xml with notepad and add after "<UrlProtocolXML>":
    <UrlProtocolXML> <UrlZip>http://url.com/file.zip</UrlZip> <Name>Your files name</Name> <Author>Your name</Author> <Size>0</Size> <AutoUpdate>true</AutoUpdate> </UrlProtocolXML>  
  23. Droidz's post in Re-use item to get buff was marked as the answer   
    Hello,
    You can create plugin (change id in this plugin: http://wrobot.eu/files/file/517-potion-of-luck/ )
    Or, if it is only for one quest, add step type 'RunCode' before 'pulse' (and after 'PickUp') quest with code:
    Thread t = new Thread(() => { uint itemId = 62899; int questId = 93351; uint buffId = 135855; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (!ObjectManager.Me.HaveBuff(buffId)) { ItemsManager.UseItem(itemId); } } Thread.Sleep(500); } }); t.Start(); (ofcourse, change itemId, questId and buffId)
  24. Droidz's post in bot wont attack while getting node. was marked as the answer   
    Sorry for the delay (I didn't have this mount), I have resolved problem, if you can wait next update.
  25. Droidz's post in wrobot not work was marked as the answer   
    Try to remove file 'WRobot\Settings\WRobotGlobalSetting.xml', if this don't works try to reinstall WRobot in new folder.
×
×
  • Create New...