Everything posted by Droidz
-
Wrotation not working in game
Hello, In wow settings try to limit max foreground fps (at a lower value than your computer can generate).
-
PolyArea
Yes, sorry, my answer was wrong. Poly_avoid blacklists the area at the same time (but paths made in this area will probably be inconsistent). The solution is to directly use PathFinder.ReportArea(Position, Radius, TypeArea); But, this list is cleared when the bot changes continent.
-
PolyArea
Hello, use POLYAREA_DANGER or POLYAREA_AVOID.
-
Bot crashing when near opposing faction towns
Hello, Do you have installed all the required software programs? (links in the file 'Reame.txt')
-
MovementFlag
Hello, this flag list is more complete that the WRobot list https://github.com/ajlopez4/ejt-projects/blob/master/Frost/source/Core/ObjectManager/Offsets/Constants.h#LL360C1-L410C5 1536 = 0x600 = 0x200 | 0x400 = TimeValid and Immobilized (if I make no mistake and the values are good)
-
Discord ???
Hello, you can find the discord link at the top/right of the page (if you are on a computer), current link is https://discord.gg/HXunx8tUpn Shadowland is a recent version, and is not very popular there will be little content (profiles, fightclasses) available.
-
can the fight class editor use trinkets?
Hello, There are a few posts about this, there seem to be several working answers : https://www.google.com/search?q=site%3Awrobot.eu+trinkets
-
Realm list selection stuck
Do you have the same problem if you use the 'Relogger' application? You can try if you use only one account, in wow login screen to enable the option "remember account name", I think it should automatically open the correct realmlist.
-
Ascension Private Server Bot [TRIAL] ( CRASH)
They are probably using a modified version of the game client. WRobot only supports the original client. You can try to download the default game client in another website and check if it works with your server.
-
Ascension Private Server Bot [TRIAL] ( CRASH)
Hello, https://wrobot.eu/forums/topic/15188-work-on-ascension/
-
Pls help --- interact with NPC
An easy way that comes to my mind is: - Force the bot to ignore attacks with a RunCode step https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088&_rid=1 wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; - Add a step to go to the position where you want the bot to resume the fight (with a FollowPath quest or other). - Reactivate the fight with a RunCode step: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; Repeat these steps until the end of the dungeon.
-
Realm list selection stuck
Hello, in "Dev... tools" (tab "Tools", when you click on the button "All informations", towards the end of the result there is the name of the realm, it is not correct?
-
Loot not work
Hello, Maybe WRobot is too fast, try increasing the latency (min/max) in the bot's advanced settings.
-
RMB求帮助
You seem to have a DNS problem, test with https://1.1.1.1/
-
Issue
(you don't need to update the bot to get this new feature)
-
Autorun plugin
Hi, I just added the possibility to execute code when starting the bot (code executed after connecting to the authentication server). The file must be named 'autorun.cs' and be in the 'Plugins' folder. The static method 'Main.Autorun()' is called after compilation. using System.Windows.Forms; public class Main { public static void Autorun() { MessageBox.Show("Hello World!"); } } autorun.cs
-
server seems to be down, you may try to disable your Anti-virus or Firewall and try again.
Hello, Using a VPN or proxy can solve the problem. But I'm sorry I don't currently have a 100% working solution, you're not the only Chinese user to encounter this problem.
-
Pls help --- interact with NPC
Hello, Configure the bot correctly (for sale), add the sellers/repairer of the area and run the code (from the quest profile): wManager.Wow.Bot.States.ToTown.ForceToTown = true; It will force the bot to go to the seller.
-
How to force to reset waypoint
Hello, With the Gatherer profile you can (in the product settings) force the bot to return to the previous profile position. But, to make a more complete profile it is necessary to use the quester (or a custom profile). But it requires very good knowledge of WRobot, Lua and C#.
-
help with interactwithNPC
Hello, you can found one solution in this profile : https://github.com/droidzfr/WRobot_Packages/blob/e495ad6e09c91ec8291018192ed37799f7851690/Old paid files/Maylu/1-60 tbc quest maylu 1.1.xml#L79
-
Smelting
Hello, I don't know where you got this code, but it can't work, it's missing a lot of methods (did you use chatgpt?).
-
Profile positions and "Action" column
Hello, Do you have information in the log? Do you have any sellers in your 'NPC DB' (or in the profile)? Are the settings correct?
-
single and multi target and AOE
Use code without "return" and the ";" ObjectManager.GetObjectWoWUnit().Count(u => u.IsAlive && u.MaxHealth > 500 && ((ObjectManager.Me.TargetObject.Position.DistanceTo2D(u.Position) - ObjectManager.Me.TargetObject.CombatReach) <= 15) && u.IsAttackable && !TraceLine.TraceLineGo(u.Position))
-
"Version mismatch" when attempting to connect with Felsong's 64 bit launcher
Hello, Check the 'Logs' folder to see if there are any errors in the logs. Try downloading the game client from another site and replacing the Wow.exe file from your current installation with the new one.
-
Pause/Unpause when an error is encountered in the "Waypoint timed out" log
Hello, you can should look like that : using System.Threading; using wManager.Plugin; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; robotManager.Events.LoggingEvents.OnAddLog += delegate(robotManager.Helpful.Logging.Log log) { if (log != null) { if (log.Text.Contains("[MovementManager] Think we are stuck")) { robotManager.Products.Products.InPause = true; // new thread to unpause after 5 seconds new Thread(t => { Thread.Sleep(5000); if (_isLaunched) robotManager.Products.Products.InPause = false; }).Start(); } } }; } public void Dispose() { _isLaunched = false; } public void Settings() { } }