Jump to content

Droidz

Administrators
  • Posts

    12427
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

135796 profile views
  1. Hello, try to download game client on another website (that your game server).
  2. Hello, if it's this profile https://wrobot.eu/files/file/1725-free-13-20-the-crossroads-–-the-barrens/ , it's not Grinder but it's Quester profile.
  3. 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/ ).
  4. Do you have gray items in your bag ? (with your settings, the bot sells only gray items)
  5. Hello, can you a share log file of bugged session ? (folder "Logs"). Do you use wow addons (if yes try to disable all).
  6. 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/ ).
  7. Hello, https://wrobot.eu/byme/doc/html/M-wManager.Wow.Helpers.Interact.InteractGameObject_1.htm
  8. Hello, I found this example: https://github.com/droidzfr/WRobot_Packages/blob/fc6f7455e7c25beb4ce106788ae4d0725099bf2e/Old paid files/enraged/001053_Horde[01-12]Vanilla(Durotar).xml#L1708 But indeed your code looks good. When you launch Automaton near these mobs, the bot attacks them? Do you have the session log file with you? When you retrieve the target's information with 'Dev... tools' 'Target info' there is erroneous or bad information (like the blacklisted mob for example).
  9. Hello, By defaut, WRobot attack player, check settings. Can you share your log file please https://wrobot.eu/forums/topic/15429-plugin-for-robotsresponse-to-player-attack/?do=findComment&comment=69230&_rid=1
  10. Hello, Your code is wrong, the code would look more like this (not tested): using System.Linq; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Bot.States; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state is IsAttacked && Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { var enemies = ObjectManager .GetObjectWoWPlayer() .Where(u => u.IsValid && u.IsAlive && u.PlayerFaction != ObjectManager.Me.PlayerFaction && u.IsTargetingMe && u.InCombatFlagOnly ); if (enemies.Any()) { var enemy = enemies.First(); Logging.Write($"Attacking player {enemy.Name} in response to being attacked."); Fight.StartFight(enemy.Guid); } } }; } public void Dispose() { Logging.Write("Disposed."); } public void Settings() { MessageBox.Show("No settings for this plugin."); } }
  11. Is the “Sit / Stand” shortcut assigned to an accessible key for the bot? (by default the 'X' key).
  12. Generally, zone problems are caused by game cache or game client.
  13. Hello, try to download game client in new website (the original version of the game).
  14. Hi, I'm sorry, but this cannot be implemented securely with a plugin. By default, WRobot should change the machine name (wotlk) (provided that the game is always launched from the Relogger if you want to hide all time the name of your machine).
  15. Hello, Have you tried disabling the plugins/fightclass one by one (or replacing them) to see if one of them might be the cause? Also consider WoW addons, the game cache, or even trying with a new client. Using the Relogger could be a temporary solution (it will restart the game and the bot in case of a crash). But I don't see any errors in the log file.
×
×
  • Create New...