May 14, 20196 yr Hello everyone. I want to make a GetDistance on my nearest object like in the tools : Nearest GameObject informations: Name: Vietérule (Entry: 2041 ) IsBlacklisted = False CreatedBy = 0 DisplayId = 677 FlagsInt = 0 Flags = 0 Position = 4333,47 ; 3002,03 ; 124,227 ; "None" Name = Vietérule GetDistance = 108,2044 --> I want this one ^^ For me I use : wManager.Wow.ObjectManager.ObjectManager.Me.IsGoodInteractDistance; But for an object, i don't know how it's working. Something like : var distance = wManager.Wow.ObjectManager.WoWObject.GetDistance(ObjectID); If someone know that ^^" (I'm beginner in C#) And the other question is : Which class can i use for use gathering ? I want By the distance active gathering the plant with this the nearest ID. If u have the answers, i will love u forever ! Salmo ^^
May 15, 20196 yr Author Someone know how to resolv this problem ? Line : ObjectManager.GetWoWGameObjectByEntry(neantineId).First().Entry) Error on compliation pluggin : My usings : using System; using System.ComponentModel; using System.IO; using robotManager; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using wManager.Events; using wManager.Plugin; using wManager.Wow; using wManager.Wow.Bot.States; using wManager.Wow.Bot.Tasks; using wManager.Wow.Enums; using wManager.Wow.Forms; using wManager.Wow.Forms.ProfileMaker;
May 15, 20196 yr ObjectManager.GetObjectWoWGameObject().Where(o => o.Entry == 1234).OrderBy(o => o.GetDistance).FirstOrDefault();
May 15, 20196 yr Author Thank for this code, but when i want to put this code in pluggin, he don"t find : o.Entry or .Where, .position .GetDistance ... Do u know how to implement this method in pluggins ?
May 15, 20196 yr Author Yes it's what I do for the other, but i don"t find the link for .entry ^^" Something like ? wManager.Wow.ObjectManager.WoWObject.Entry
May 15, 20196 yr Author Ok i'm fucking idiot, I was trying to apply the Get: for the attribut on my method ... Better way to use it on the object ... Thanks for help !
Create an account or sign in to comment