Jump to content

Droidz

Administrators
  • Posts

    12443
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from Pudge in Plugin for attacking specific mobs?   
    Hello, Try this plugin: GatheringMobSpawns.cs
    using System.Collections.Generic; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var grinderState = new Grinding {EntryTarget = new List<int> {98232, 98234, 98235, 98233 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox, http://www.wowhead.com/npc=98233/withered-hungerer robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Farming") { if (grinderState.NeedToRun) { grinderState.Run(); cancelable.Cancel = true; } } }; Logging.Write("[GatheringMobSpawns] Loadded."); } public void Dispose() { Logging.Write("[GatheringMobSpawns] Disposed."); } public void Settings() { MessageBox.Show("[GatheringMobSpawns] No settings for this plugin."); } }  
  2. Like
    Droidz reacted to insanity in Create Healthstones (warlock fightclass)   
    I managed to get this to work by using lua script. Currently using the CastSpell() in combination with GetSpellTabInfo()
    CastSpellByName is not working for Healthstones for some odd reason (Elysium server)
    name,texture,offset,numSpells = GetSpellTabInfo(3); CastSpell((offset+1),"spell");  
    http://wowprogramming.com/docs/api/CastSpell
    http://wowprogramming.com/docs/api/GetSpellTabInfo
     
  3. Like
    Droidz got a reaction from mich125 in Dungeon profile issue   
    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) 
  4. Like
    Droidz got a reaction from mich125 in Durability check in quest profile   
    Hello, it is 
    ObjectManager.Me.GetDurabilityPercent  
  5. Like
    Droidz got a reaction from beden in monk heals   
    I have test with pala.   In "Party" product settings don't forget to activate option "Healer".   In fight class by spell - Activate option "For friends". - Desactivate option "Combat only". - Add condition "Target distance" (for spell range) and "Target health percent".   ps: sample in attached file heal pala test.xml
  6. Like
    Droidz reacted to Phantom in Crashes on start   
    I just tried to move out the fightclass, plugins and profiles folder and then completely re-install Wrobot, that did the trick.. dont know what caused it, but a re-installed fixed it :)
  7. Like
    Droidz reacted to JonnyK in When I start the bot it crashes along with WoW   
    Will do later today. Sorry for the stressed sounding post. I worked a 12 hour day spent two hours in traffic then started my account to bot on so by time I was ready to let it run and it didnt work I was just out of energy. 
    But today when I get home I will send you the log.
  8. Like
    Droidz got a reaction from Lord in Mage conjuring too many water   
    How to add spell from another fightclass to your fightclass: http://wrobot.eu/forums/topic/5033-how-to-add-easily-spell-from-another-fightclass-to-your-fightclass/
  9. Like
    Droidz got a reaction from Zan in Set a relogger to start on time?   
    I have taken note I'll add option like this
  10. Like
    Droidz reacted to Arcangelo in Casting a spell then target new mob   
    Will do next time I see I happen :)
  11. Like
    Droidz got a reaction from (̾●̮̮̃̾•̃̾) ̿ ̿ ‘̿’\̵͇̿̿\ in Bot stucked   
    Hello, use this plugin: 
    using System.ComponentModel; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { const int HearthstoneItemID = 6948; const int MaxStuckCount = 3; public void Initialize() { wManager.Events.MovementEvents.OnPulseStuckResolver += MovementEventsOnOnPulseStuckResolver; Logging.Write("[HearthstoneWhenStuck] Loadded."); } public void Dispose() { Logging.Write("[HearthstoneWhenStuck] Disposed."); } public void Settings() { MessageBox.Show("[HearthstoneWhenStuck] No settings for this plugin."); } private void MovementEventsOnOnPulseStuckResolver(CancelEventArgs cancelable) { if (Statistics.Stucks >= MaxStuckCount) { Logging.WriteDebug("[HearthstoneWhenStuck] Use Hearthstone."); var o = wManagerSetting.CurrentSetting.CloseIfPlayerTeleported; wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; MovementManager.StopMove(); Thread.Sleep(Usefuls.Latency + 150); Lua.LuaDoString("local itemName, _, _, _, _, _, _, _ = GetItemInfo("+ HearthstoneItemID + "); RunMacroText('/use ' .. itemName);"); Thread.Sleep(Usefuls.Latency + 500); if (ObjectManager.Me.IsCast) { Usefuls.WaitIsCasting(); Thread.Sleep(Usefuls.Latency + 10000); // wait load screen } wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = o; Statistics.Stucks = 0; cancelable.Cancel = true; } } } You can change item id and stucks count lines 11 and 12
    HearthstoneWhenStuck.cs
  12. Like
    Droidz reacted to manolo in Mount Golem   
    Droidz, thanks a lot for your help. I came back to the post to say I had tried and worked, doing exactly that. Now I have a little bit of time to test this wonderful bot. congratulations!!! 100% WORKING! 
  13. Like
    Droidz got a reaction from manolo in Mount Golem   
    Hello, put in your ground mount settings the name "Sky Golem".
  14. Thanks
    Droidz got a reaction from chrisklume in Repair/Install WRobot   
    Before request help, thank you to:
    Make sure you start wow in 32-bit and run Wow in Windowed mode. Make sure do you use WRobot on administrator Windows session. Keep Windows updated. Try to disable your antivirus/firewall, redownload and reinstall WRobot in empty folder. Delete completely WRobot folder, download and install it again (you can try to download preinstalled version). Try to put WRobot folder on your desktop and in root of the disc. (Re)Install DirectX, Framework (minimum 4.5) (or Framework Repair Tool), SlimDX (4.0 X86), Redistributable Visual C + + 2010  (X86). If the bot does not work at all, that WRobot freeze, change the version of DirectX that wow uses (do not forget to restart Wow) (if this don't resolve problem, you can try to launch WRobot with shortcut "WRobot No DX"). Reset key bindings Wow (the bot uses Forward, Backward, Jump, Sit / Stand, strafe right and left, but I suggest you reset everything). Some wow addon can cause problems, so disable all. Close Windows program like Skype, Teamviewer and all overlays e.g. Overwolf, Geforce Experience,  raptr, AMD Gaming Evolved, teamspeak (these programs can cause problems at WRobot, also programs for record screen or programs which draw/write in game window). Close/disable your VPN, Proxy and program like ProxyCap. If you have already run WRobot, you can try to remove folde "WRobot\Data\Meshes\". If WRobot window is not display correctly, you  can you try to Right-click on WRobot.exe and then click "Properties". On the "Compatibility" tab, select "Disable Display Scaling On High DPI Settings", and then click "OK" ( https://www.youtube.com/watch?v=0xS-UCuyq7s ). Some virus/malwares can block WRobot. Scan you computer AdwCleaner and/or Malwarebytes for remove malwares, and anti-virus like Eset or Kaspesky. Disable "Bliz Streaming" feature, for it, on the Battle.net App, go to upper left corner, click the down arrow, go to Settings. From there, go to Streaming and uncheck Enable Streaming. When WRobot is launched, you cannot minimize Wow, of course you can keep Wow in background and use your computer, but you cannot minize (put in taskbar) Wow (if minimized, WRobot don't works correctly). Sometime, you need to put "full control" at "WRobot.exe" (and WRobot folder): https://www.windowscentral.com/how-take-ownership-files-and-folders-windows-10 Do a search to see if a solution exists: https://www.google.com/search?q=site:wrobot.eu+adding+mailbox or http://wrobot.eu/search/. If you start to use bot, you can watch this video: http://wrobot.eu/forums/topic/3633-getting-started-with-wrobot-video/ If your problem is not resolved, request help on good forum, to get quick reply, don't forget to share your log file.
  15. Like
    Droidz reacted to Arcangelo in Vanilla leveling profiles ?   
    Started the project today (for horde this time though)
    Finished:
    1-5 Troll/orc
     
    In progress:
    15-20 Troll/orc
     
    This will follow the VanillaGuide as close as possible (so far 100 %)

    Takes pretty long as i have to level with the profile while i create it
  16. Like
    Droidz reacted to DaWandaBoi in no matter how many times i try to start the bot it will not   
    GREAT NEWS!!!
    I have fixed it!!!!
    All i had to do was reinstall my whole OS T_T
    At least it is working now !!! #FRESH

  17. Like
    Droidz got a reaction from molato in Complete meshes for Cata / MoP   
    Hello,
    WoD (offical server): http://download.wrobot.eu/wrobot/wod/meshes.zip 
    MoP: http://download.wrobot.eu/wrobotmop/meshes/meshes.zip 
    Cata: http://download.wrobot.eu/wrobotcata/meshes/meshes.zip
    Wotlk: http://download.wrobot.eu/wrobotwotlk/meshes/meshes.zip
  18. Like
    Droidz got a reaction from Amazing Snake in "Wanding"   
    Hello, wait next update and use spell like here: ShootVanilla.xml
     
  19. Like
    Droidz got a reaction from Amazing Snake in Movement "Works" only when Fraps is active?   
    http://wrobot.eu/forums/topic/4885-stutter-moving-vanilla/#comment-22822
  20. Like
    Droidz got a reaction from Macpod in Stutter Moving - Vanilla   
    I will add option to be move without CTM (but I'll keep CTM by default)
  21. Like
    Droidz got a reaction from kintoesti in BG profile how to create a new one   
    Hello, if you want use profile create one big loop (like than grinder or gatherer profile), and save the profile in folder "WRobot\Profiles\Battlegrounder\" (for  Eye of the Storm use file name "[A]EotS.xml" for the Alliance profile, "[H]EotS.xml" for Horde profile)
  22. Like
    Droidz got a reaction from BetterSister in Help WRobot to improve navigation mesh construction   
    The problem with private servers, it is than objects has added by the creator of the servers (but I can try to use mangos or trinity database to add defaults map objects)
  23. Like
    Droidz got a reaction from Jhin in Download Plugins if buying PServer edition   
    Hello, yes you have access at all files when you buy private server license.
  24. Like
    Droidz got a reaction from Stresse in Help WRobot to improve navigation mesh construction   
    Hello,
    It is possible to help WRobot to improve navigation (meshes) fiability.
    For it:
    Use this plugin: ExtractGameObjects.cs (or you can also run c# code "wManager.Wow.Bot.States.NPCScanState.ExtractGameObjects = true;" if you want record during current WRobot session) When WRobot product running, WRobot extract alone game objects infomations (you can see game objects extracted in debug log lines). After some hours/days/weeks of use, you can send me your game objects database (database file is "WRobot\Settings\gameObject.json"), compress and send me this file by private message. ps: This working only on WRobot for official wow server. Please use normal servers (not PTR).
  25. Like
    Droidz got a reaction from deadfiraspace in How to Video   
    Before all, you need to install:
    - Framework 4.0: http://www.microsoft...s.aspx?id=24872
    - Visual C++ 2012 (VSU1\vcredist_x86.exe 6.3 MB): http://www.microsoft...s.aspx?id=30679
     
    Running wow in 32 bit: 
     
     
    Download and Install WRobot:  
     
    Basic Settings:  
     
    Grinder - Use and Create Profile:
    https://www.youtube.com/watch?v=bak7iR0Ewo4 
    Download and Install Profile and Fight Class: 
    How to Add/Use Mailbox option:
×
×
  • Create New...