Jump to content

Droidz

Administrators
  • Posts

    12442
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from iMod in Offmesh Connections   
    This tool is not available on WRobot for the private servers for now, you need to wait next update of your WRobot version.
  2. Thanks
    Droidz got a reaction from M4k5P0w3r in Offmesh Connections   
    Hello,
    Sometime, WRobot cannot create path (navigation files are created from default maps, some quests/events open the doors, remove/add the stones,..., this can happen also if it's narrow, or sometime without reason).
    By sample, it is a narrow staircase, you get error like (navigation file tell at WRobot than he cannot walk in the staircase) (to get full pathfinding logs, in advanced general settings tab 'Path...' activate option "Server Logs")
    (to get detailed log, you need to activate option "Show server logs" in advanced general settings tab "Path-finding").

    Now, we will add offmesh connection (we will add staircase path):

    And we will try again to generate path:

     
     
     
     
    ref: http://www.pathengine.com/Contents/Overview/AdditionalFeaturesOverview/Off-MeshConnections/page.php https://docs.unity3d.com/Manual/class-OffMeshLink.html
  3. Like
    Droidz got a reaction from Runaro in Need tutorial for "Offmesh Connections" for quester   
    http://wrobot.eu/forums/topic/5283-offmesh-connections/ 
  4. Like
    Droidz got a reaction from DoptFree in Offmesh Connections   
    Hello,
    Sometime, WRobot cannot create path (navigation files are created from default maps, some quests/events open the doors, remove/add the stones,..., this can happen also if it's narrow, or sometime without reason).
    By sample, it is a narrow staircase, you get error like (navigation file tell at WRobot than he cannot walk in the staircase) (to get full pathfinding logs, in advanced general settings tab 'Path...' activate option "Server Logs")
    (to get detailed log, you need to activate option "Show server logs" in advanced general settings tab "Path-finding").

    Now, we will add offmesh connection (we will add staircase path):

    And we will try again to generate path:

     
     
     
     
    ref: http://www.pathengine.com/Contents/Overview/AdditionalFeaturesOverview/Off-MeshConnections/page.php https://docs.unity3d.com/Manual/class-OffMeshLink.html
  5. Like
    Droidz reacted to k4njin in First Impressions   
    Just bought the bot some minutes ago.
    I come from Honorbuddy (6 years of usage, since 1 february banwave)
    I'm very impressed. I'm not a gold seller, and i just farm for "myself" as i'm a raider. Just use the bot to make gold for my characters. And to farm some cool mounts,etc.
    The quantity and the quality of the options that it gives you is stunning. Plus it seems that, even for a bot, it seems that ( i just changed some options, for mounts, etc. the rest is default) he has a very "human" approach to playing.
    I just got hit in the banwaves, never get a report since i make a normal usage of the bot. I just use it to speed up my grinding and farming.
    I'll test it out more in these days.
    For now, i'll just say GG to the devs. :)
  6. Like
    Droidz got a reaction from Hapiguy in How to lock fps on 20   
  7. Like
    Droidz got a reaction from Arcangelo in (Bug) Die under water   
    Hello, if you don't use ctm, try this plugin 
     
  8. 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."); } }  
  9. Like
    Droidz got a reaction from mich125 in CPU usage after few hours   
    If you can update WRobot and try again.
    Also, to use less CPU, in your fightclass you can try to put lower value in "Frame per second", try to use less spells.
    In your quests profile, if you use loop (while) try to add wait time
  10. Like
    Droidz got a reaction from thatsugly in Stealth not working   
    WRobot use action bar to check if spell is usable (IsSpellUsable)
  11. Like
    Droidz got a reaction from scsfl in Node search radius   
    Hello,
    1: 
    float radius = 50; foreach (var o in ObjectManager.GetObjectWoWGameObject()) { if (o.IsValid && o.GetDistance < radius && o.CanOpen) { // your code here } } 2:
    foreach (var o in ObjectManager.GetObjectWoWPlayerTargetMe()) { if (o.IsValid) { // your code here } } or 
    foreach (var o in ObjectManager.GetObjectWoWPlayer()) { if (o.IsValid && o.IsTargetingMe) // o.IsTargetingMeOrMyPet { // your code here } }  
  12. Like
    Droidz got a reaction from Bronson in Interact with Portcullis   
    Hello, you can run this c# code:
    wManager.Wow.Helpers.Interact.InteractGameObject(wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(254241)).GetBaseAddress); Or add Portcullis in objects at harvest list (in advanced generals settings)
  13. 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)
  14. Like
    Droidz got a reaction from mich125 in Help WRobot to improve navigation mesh construction   
    if (wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection == null || wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.Count <= 0) wManager.Wow.Helpers.PathFinder.OffMeshConnections.Load(); var me = new List<PathFinder.OffMeshConnection> { new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(4167.176, -2293.402, 59.9585), new Vector3(4167.222, -2319.793, 64.63189) }, (int) wManager.Wow.Enums.ContinentId.TanaanJungleIntro), new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(4167.222, -2319.793, 64.63189), new Vector3(4167.176, -2293.402, 59.9585) }, (int) wManager.Wow.Enums.ContinentId.TanaanJungleIntro), }; wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.AddRange(me); //wManager.Wow.Helpers.PathFinder.OffMeshConnections.Save();  
  15. Like
    Droidz got a reaction from supersurfer in Help WRobot to improve navigation mesh construction   
    To fix this problem, run this c# code (before this step or at profile start):
    if (wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection == null || wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.Count <= 0) wManager.Wow.Helpers.PathFinder.OffMeshConnections.Load(); var me = new List<PathFinder.OffMeshConnection> { new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-14240.09, 326.9852, 24.45414), new Vector3(-14269.62, 349.9516, 32.49757) }, (int) wManager.Wow.Enums.ContinentId.Azeroth), new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-14269.62, 349.9516, 32.49757), new Vector3(-14240.09, 326.9852, 24.45414) }, (int) wManager.Wow.Enums.ContinentId.Azeroth) }; wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.AddRange(me); //wManager.Wow.Helpers.PathFinder.OffMeshConnections.Save();  
  16. Thanks
    Droidz got a reaction from happiness7 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."); } }  
  17. Like
    Droidz got a reaction from Reaper666 in incorrect game version   
    If you get message 'Incorrect game version' after WRobot update, close wow and launch Battlenet to update Wow.
    If you cannot start grinder/gatherer/quester/petbattle bot after update, update again WRobot I resolved problem.
  18. Like
    Droidz got a reaction from Roman1 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."); } }  
  19. Like
    Droidz got a reaction from mkeagy in Sky golem fixed yet?   
    I'll add this feature. If you can help me to complete list of all mobs spawn by the herbs:
    http://www.wowhead.com/npc=98232/withered-hungerer http://www.wowhead.com/npc=98234/nightmare-creeper
  20. Like
    Droidz got a reaction from loves2spooge in Wrobot wow1.exe, wow2.exe...   
    I tried and I can attach WRobot to renamed Wow.exe without problem. Try to disable your antivirus, install required software (slimdx, vc++,...) http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 . Why do you need to rename Wow.exe?
  21. Like
    Droidz got a reaction from loves2spooge in Relogger   
    Hello, yes.
    You can look this tuto: http://wrobot.eu/forums/topic/3632-relogger-tutorial-video/ and http://wrobot.eu/forums/topic/3979-relogger-with-tons-of-alts/ 
     
  22. Like
    Droidz got a reaction from loves2spooge in Relogger Wont Work   
    Hello, go to general settings et remove google.com (leave it blank)
  23. Like
    Droidz got a reaction from loves2spooge in Instance navigation problems   
  24. Like
    Droidz got a reaction from loves2spooge in The bot dosent eat?   
    Hello, you can found eat settings in advanced general settings
  25. Like
    Droidz got a reaction from loves2spooge in Plain Letter in Mailbox   
×
×
  • Create New...