Everything posted by Droidz
-
Help pls!!!
Hello, For mailbox and post all items in auction house use the product "Auction", for go to guild bank and deposit gold use "Custom Profile" or "Quester". To switch between "Auction" and "Custom Profile" / "Quester" products, you can use "Relogger" application or "Schedule" product.
-
Farming.IgnoreIfPlayerNear
Hello, robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelEvent) => { if (state is wManager.Wow.Bot.States.Farming farmingState) { farmingState.IgnoreIfPlayerNear = true; } };
-
How can i Call another Quester xml file in this Quseter?Plz Help
Hello, For the randomize profile selection, you can use this approach : Random Step.xml To load quest profile (from quest profile) use step type "LoadProfile", put the profile file name (like it's appeared in "Product settings"). In Battleground product settings you have the option to use another product during queue (that can cause problems with quester product, some profiles can be complexes)
-
isssue of using one plugin for different wrobot versions
Hello, I'm not sure if this will work, but try adding a Try/Catch with a log in case of an error in the "Initialize" function (from IPlugin). Usually, it's the enums, so you can try to retrieve them from a String instead of a raw link: https://stackoverflow.com/questions/16100/convert-a-string-to-an-enum-in-c-sharp
-
Game closes after 5 minutes Free and licensed version
Have you tried deleting the game's cache files? Or to re-download and re-install the game (from a clean, unmodified version)?
-
Game closes after 5 minutes Free and licensed version
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/ ).
-
Doesn't use skills in battle
https://wrobot.eu/forums/topic/15459-doesnt-use-skills-in-battle/?do=findComment&comment=69331&_rid=1
-
Doesn't use skills in battle
Hello, You seem to play on a server with custom spells and use game addons (that are bad points). But I think that your problem is that you use a "Leveling" fightclass. Some fightclasses work only for against NPCs and not in combat against players.
-
PathFinder server seem down, try to change server.
Hello, try to reboot your computer
-
Does the bot work on Felsong?
Hello, Yes WRobot should work with this version (if unmodified), it's the updated list of supported versions : https://wrobot.eu/supported-wow-versions/
-
problem with connecting to the server
Hello, If you have this problem only on one of the pathfinding servers it is not very important, is your bot working?
-
Error
Try to launch WRobot with the shortcut "WRobot (DX hook)"
-
why my bot trying to logout?
Hello, you have try without fightclass? with another profile ? Do you use unmodified game client ? Maybe it's server protection
-
Error
Hello, Prefer to use "Window mode" (and not full-screen mode) in your game settings. Try also to clear your game cache, if it's not the problem, try to download the game client on another website (you need to have an unmodified game client).
-
Failing to login with relogger
Hello, try to download game client on another website (that your game server).
-
No profiles work for me on grinder?
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.
-
No profiles work for me on grinder?
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/ ).
-
Character stuck trying to sell on NPC
Do you have gray items in your bag ? (with your settings, the bot sells only gray items)
-
Character stuck trying to sell on NPC
Hello, can you a share log file of bugged session ? (folder "Logs"). Do you use wow addons (if yes try to disable all).
-
I can not press launch bot
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/ ).
-
Interact with objects
Hello, https://wrobot.eu/byme/doc/html/M-wManager.Wow.Helpers.Interact.InteractGameObject_1.htm
-
Can't detect killed moby
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).
-
Bot doesn't attack people
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
-
Plugin for robots/response to player attack
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."); } }
-
druid dismount to herbing issue
Is the “Sit / Stand” shortcut assigned to an accessible key for the bot? (by default the 'X' key).