-
Posts
12581 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Bug Report Comments posted by Droidz
-
-
-
-
-
I fixed it in new update, now the bot compiles all the steps at start (in one time) and the calls from the cache. For that this works, must be no error in the C # codes used in profile "steps" (a lot of profiles have bad code, you have an error log when profile is loaded if error and the steps codes are compiled 1 by 1 as before)
-
-
ok I found, sorry I rarely watch Discord
-
yes if someone can send me a profile that causes this problem (and tell me the context of the character, if possible easy to reproduce) that I try.
-
Hi,
Logging.Write("==================="); var t = System.Diagnostics.Stopwatch.StartNew(); uint id = 8326; var n = "Ghost"; var s = System.Diagnostics.Stopwatch.StartNew(); Logging.Write("TargetObject.HaveBuff(id) > " + wManager.Wow.ObjectManager.ObjectManager.Me.TargetObject.HaveBuff(id) + " > " + s.ElapsedMilliseconds); s.Restart(); Logging.Write("TargetObject.GetBuff(n) > " + wManager.Wow.ObjectManager.ObjectManager.Me.TargetObject.GetBuff(n) + " > " + s.ElapsedMilliseconds); s.Restart(); Logging.Write("Target.HaveBuff(id) > " + wManager.Wow.ObjectManager.ObjectManager.Target.HaveBuff(id) + " > " + s.ElapsedMilliseconds); s.Restart(); Logging.Write("Target.GetBuff(n) > " + wManager.Wow.ObjectManager.ObjectManager.Target.GetBuff(n) + " > " + s.ElapsedMilliseconds); Logging.Write(t.ElapsedMilliseconds + " ms ========");
I can't reproduce problem, if you can code that I can run for that.
But it is better to use objectmanager.target to get character target (it is more safe and bot cache result)
-
You get problem with encrypted profile? I can't reproduce problem, I tested with several profiles that size is bigger that 1 MB (2 MB for one) . You have try without plugins?
-
-
Changed Status to Fixed
Changed Version to All
-
Can you share full log please
-
mixing flight and ground path is rarely a good idea. Are you sure your profile is correct? and your WRobot configuration? Try to reinstall the bot in a new folder (to restore the configuration)
-
Hello, Do you still have this problem?
-
Changed Status to Confirmed
Changed Version to All
-
Hey, https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.wManagerSetting.htm look
MaxZDistanceAttack MaxZDistanceFarm MaxZDistanceIsAttacked
-
Hi, maybe with wow lua events
-
Hi.
Don't use enum "LuaEventsId" it is obsolete, use string like that:
EventsLua.AttachEventLua("LFG_PROPOSAL_SHOW", m => Lua.LuaDoString("AcceptProposal();"));
You can dump all events and check event called when you get this popup, run this code one time when product is started:
wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) => { Logging.WriteDebug("[EVENT] " + eventid); };
-
I can only solve the problem if you have this problem with WRobot without plugin, profile (test several) and fightclass (test several). Otherwise you have to find the plugin / profile / fightclass that causing the problem and see with the creator, if the creator tells me that the problem comes from WRobot because it occurs when it uses X method in this case I could solve.
-
Hello, no special log?
-
You are allone to report me this problem. Try in VM with new wrobot install, new wow install (redownload) to be sure. If problem is not resolved try to dump wrobot process and share file with me by private message https://m-files.force.com/s/article/Creating-a-memory-dump-from-a-specific-process-with-Task-Manager
-
Hey, if you speak about https://wrobot.eu/bugtracker/bug-ingame-error-stack-overflow-r1392/?tab=comments#comment-6332 I have already replied to you by private message and I do not find any problem in WRobot. You are the only one to report this problem I think it is a configuration / plugin / profile / fightclass problem.
-
-
Hello, try to disable also your VPN and proxy. To restart your computer. If problem is not resolved share your log files (in "Logs" folder)
LoadProfile and slow loading of profile steps
in Bug Tracker
Posted
you probably use "Var.GetVar("varname")" instead "Var.GetVar<type>("varname")" ( https://docs.microsoft.com/dotnet/csharp/misc/cs0411 )