Everything posted by nax
-
ObjectManager methods
run this as a int var wManagerSetting.CurrentSetting.ReadObjectManagerFTS
-
ObjectManager methods
it updates on a ms of 150 miliseconds
-
A single word was successfully ase swapped
Isn’t this python?
-
Bag.GetBagItem() | InBag
My Code nternal static void SearchForBags() { BagIndex.Clear(); foreach (var item in Bag.GetBagItem()) { if(item.Type == WoWObjectType.Container) { if(item.InBag) { Int32[] s = Bag.GetItemContainerBagIdAndSlot(item.Entry).ToArray(); if (s != null && !BagIndex.Exists(x => x.Name == item.Name)) { var Name = item.Name; var Slots = BagSlotReader(s[0], s[1]); var entry = item.Entry; BagIndex.Add(new BagClass(Name, Slots, entry, s)); } } } } }
- Bag.GetBagItem() | InBag
-
Bag.GetBagItem() | InBag
Hey for some reason the boolean InBag is returning false if its in bag. (Not equipped.) Bug ?
-
Implement own mount routine
I’d suggest inputting your own state to over rude default states.
-
Disable baсkup production
https://support.minitab.com/en-us/minitab/21/help-and-how-to/data-input-and-output/minitab-files/open-or-disable-backup-files/
-
Settings question
Unless you are going to reread all the commands between two clients, its bad practice to write to file to read then just to reread, You should use something like a server to talk together.
-
5 bot dungeon Accept
@cometttorSource Code (Plugin) using robotManager.Helpful; using System; using System.Collections.Generic; using System.Windows; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { public void Initialize() { EventsLuaWithArgs.OnEventsLuaStringWithArgs += AcceptDungeon; } public void Dispose() { EventsLuaWithArgs.OnEventsLuaStringWithArgs -= AcceptDungeon; } public void Settings() { MessageBox.Show("No Settings."); } private void AcceptDungeon(String EventName, List<String> Args) { try { if(EventName.ToString() == "LFG_PROPOSAL_SHOW") { Lua.LuaDoString("AcceptProposal();"); } } catch (Exception ex) { Logging.WriteError("Main > AcceptDungeon > " + ex.StackTrace); } } }
-
Can we use custom libraries with wrobot?
https://stackoverflow.com/questions/19728943/dynamically-loading-dll-referencing-other-dlls
-
Can we use custom libraries with wrobot?
Yes you can but you’d need to load the Dll into memory.
-
Fight Class Editor Rend Issues
Maybe check if Rend is on target?
-
amount of not looted mobs
For anyone to be able to help you, we'd need logs Html file.
- Warmane