
Weer36
Members-
Posts
100 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Weer36
-
Doesn't matter its mistake in post. For clarity: when I run fake profile like: <QuestsSorted Action="RunCode" NameClass="robotManager.Products.Products.LoadProductsWithoutInit("Gatherer");" /> <QuestsSorted Action="LoadProfile" NameClass="my_profile_with_thread_of_product_change.xml" /> then assembly Gatherer.dll have time to load. Same successful result, if I manually select Gatherer product in UI, then select back Quester "my_profile_with_thread_of_product_change.xml"
-
Hi everyone! I'm trying to change product inside plugin with running quester profile or just inside quester profile with following code: new Thread(() => { wManager.Plugin.PluginsManager.DisposeAllPlugins(); robotManager.Products.Products.DisposeProduct(); robotManager.Products.Products.LoadProducts("Gatherer"); robotManager.Helpful.Gatherer.Bot.GathererSetting.CurrentSetting.ProfileName = "123.xml"; robotManager.Products.Products.ProductStart(); }).Start(); But robotManager.Helpful.Gatherer is not accessible, cuz Gatherer never started before and assembly not loaded yet. Adding smth like Products.LoadProductsWithoutInit() won't help. Is exist any solution instead of making fake profile with Gatherer preload?
-
Is it possible to run my plugin before Quester's GoToTown runs, for example? Fight class written in c# instead of standard plugin is good alternative ?))
-
Bot successfully avoiding obstacles with simple GoToTask.ToPosition(x,y,x,"Flying") method. What the difference?
-
What's the code inside subj? It interrupts by fight as well as GoToTask.ToPosition() As far as I noticed is automount
-
20 for each? Why is no one cylinder from hell to heaven (without Z-check)?
-
What is tolerance for Z coordinate inside pathfinder for each type of TypeArea ? In my experiments POLYAREA_BIGDANGER has not infinite height of cylinder, so I forced to play with Z on Blackspots for make Pathfinder avoid it in mountains or oceans
-
Yeap, with other charachter's position it runs once o_O. Ok nvm then
-
Just ran it in development tools window for clean test. Ingame it throws sometime 4-5 events for one ToGo point during usual questing or gathering or any else pathing.
-
I subscribe to subj event, and surprised for minumum 2 times calling it for simple path task wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(-5470.455, -2890.753, 350.0887, "None")); [N] 06:56:21 - [Path-Finding] FindPath from -5466.455 ; -2879.753 ; 350.0887 ; "None" to -5470.455 ; -2890.753 ; 350.0887 ; "None" (Azeroth) [N] 06:56:21 - [Path-Finding] Path Count: 3 (15.88784y, 111ms) [D] 06:56:21 - [myDebug] OnPathFinderFindPathResult [N] 06:56:21 - [Path-Finding] FindPath from -5466.455 ; -2879.753 ; 350.0887 ; "None" to -5470.455 ; -2890.753 ; 350.0887 ; "None" (Azeroth) [N] 06:56:21 - [Path-Finding] Path Count: 3 (15.88784y, 0ms) [D] 06:56:21 - [myDebug] OnPathFinderFindPathResult Isn't should be once?
-
What is default values of them ? - nvm, I can read it )) What for engine.framerate then?
-
What is default values of them ?
-
So the only option for lower CPU consuming is engine's framerate ? Besides ingame performance
-
Hello everyone, especially DroidZ! How works subj under the hood? It used for like Usefuls.Latency => return Random(LatencyMin, LatencyMax) or Thread.Sleep(Random(LatencyMin, LatencyMax)) or smth? If Engine.StartEngine method has default 16fps framerate, so LatencyMax should be less than 625ms ? I want to understand, how to tune LatencyMin & Engine.framerate for lower CPU using, meanwhile fighting with lowest latency between hits.
-
Thats way works fine, just tried to understand how it should works correctly. Thanks.
-
Tryed, but can't see that bot checks CanCondition: tested it with <CanCondition>Logging.WriteDebug("123"); return true;</CanCondition>
-
<EasyQuest> <Name>easy</Name> <QuestType>KillAndLoot</QuestType> <QuestClass xsi:type="KillAndLootEasyQuestClass"> <HotSpots> ... </HotSpots> <EntryTarget /> <IsGrinderNotQuest>false</IsGrinderNotQuest> <IsHotspots>true</IsHotspots> </QuestClass> <CanCondition>return true;</CanCondition> <IsCompleteCondition>return false;</IsCompleteCondition> <RepeatableQuest>false</RepeatableQuest> <NotRequiredInQuestLog>false</NotRequiredInQuestLog> <PickUpQuestOnItem>false</PickUpQuestOnItem> <PickUpQuestOnItemID>0</PickUpQuestOnItemID> <GossipOptionRewardItem>1</GossipOptionRewardItem> <RequiredQuest>0</RequiredQuest> <MaxLevel>100</MaxLevel> <MinLevel>0</MinLevel> <WoWClass>None</WoWClass> </EasyQuest> I'd read about NotRequiredInQuestLog: when you use "NotRequiredInQuestLog" WRobot ignore "CanCondition" Why EasyQuest don't start in <QuestsSorted Action="Pulse" NameClass="easy" /> ?
-
No You don't, for hinting me about ObjectManager.GetWoWUnitLootable().Count()
-
Can I manage next HotSpots point? Sometimes bot choose not the nearest hostspot
-
Is any info in Looting state about nearest dead mobs maybe?
-
tyvm! btw, EventsLuaWithArgs.OnEventsLuaStringWithArgs += ChatEvent; can't work, but EventsLuaWithArgs.OnEventsLuaStringWithArgs += (e, a) => {}; with same procedure code works fine. I'm confuzed )
-
How to read message text in EventsLua.AttachEventLua("CHAT_MSG_SYSTEM", () => {})? Chat.Messages.Count is zero.
-
Hi everybody! How to get amount of not looted mobs yet ? During mass-killing )
-
I didn't heart yet about db2, just investigate
-
What exact for wManager.Wow.Helpers.DB2Reader exists? I haven't found examples or documentation ((