OliZ 5 Posted January 26, 2018 Share Posted January 26, 2018 How can i make my grinder&gatherer click objects in dungeons? like in RFD, u need to use this Gong to be able to spawn a bos in order to continue the instance. Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/ Share on other sites More sharing options...
FNV316 65 Posted January 26, 2018 Share Posted January 26, 2018 wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(XXX, YYYY, ZZZ), OBJECT_ID); "Run code"-step and insert coords + object id. Edit: I was assuming you use it in Quester. I doubt you can do that in Gatherer or Grinder. Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38417 Share on other sites More sharing options...
OliZ 5 Posted January 31, 2018 Author Share Posted January 31, 2018 On 1/26/2018 at 3:39 PM, FNV316 said: wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(XXX, YYYY, ZZZ), OBJECT_ID); "Run code"-step and insert coords + object id. Edit: I was assuming you use it in Quester. I doubt you can do that in Gatherer or Grinder. Expand Thanks! but how do i find the Object ID? Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38683 Share on other sites More sharing options...
Pitoco 5 Posted January 31, 2018 Share Posted January 31, 2018 If you are using grinder, when you sre near of the object, select ITEM in profile creator, write the name of the item and click in "add item" (or another link name, i dont remember now). Wrobot shows the item ID. Try this.. Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38684 Share on other sites More sharing options...
OliZ 5 Posted January 31, 2018 Author Share Posted January 31, 2018 On 1/31/2018 at 1:33 PM, Pitoco said: If you are using grinder, when you sre near of the object, select ITEM in profile creator, write the name of the item and click in "add item" (or another link name, i dont remember now). Wrobot shows the item ID. Try this.. Expand I'm using quester now, i've done it like this but stil gets error. wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(2552,44, 856,9836, 51,49502), 148917); Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38685 Share on other sites More sharing options...
FNV316 65 Posted January 31, 2018 Share Posted January 31, 2018 Quote wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(2552,44, 856,9836, 51,49502), 148917); Expand Has to be: wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(2552.44, 856.9836, 51.49502), 148917); Dots instead of commatas for the minor values. Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38689 Share on other sites More sharing options...
nudl 74 Posted January 31, 2018 Share Posted January 31, 2018 The Gong in the Razorfen Downs isn't only a GameObject since it got redesigned, but also a Unit. I've used this two RunCodes one after another: Reveal hidden contents Quote WoWUnit toTalk = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWUnit() .SingleOrDefault(i => i.Entry == 75746); if (toTalk != null) { wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(toTalk.Position, toTalk.Entry, 1); } Expand Quote WoWGameObject gong = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject().FirstOrDefault(i => i.Entry == 148917 ); if (gong != null) { wManager.Wow.Helpers.Interact.InteractGameObject(gong.GetBaseAddress); } Expand Can't test if they still work though, as I don't do anything on official servers anymore. FNV316 1 Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38690 Share on other sites More sharing options...
OliZ 5 Posted January 31, 2018 Author Share Posted January 31, 2018 On 1/31/2018 at 3:53 PM, nudl said: The Gong in the Razorfen Downs isn't only a GameObject since it got redesigned, but also a Unit. I've used this two RunCodes one after another: Reveal hidden contents Can't test if they still work though, as I don't do anything on official servers anymore. Expand Thank you! Will tey this out, where do i add the cords? Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38694 Share on other sites More sharing options...
OliZ 5 Posted January 31, 2018 Author Share Posted January 31, 2018 On 1/31/2018 at 3:51 PM, FNV316 said: Has to be: wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(2552.44, 856.9836, 51.49502), 148917); Dots instead of commatas for the minor values. Expand Thank you! Will try this out! Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38695 Share on other sites More sharing options...
nudl 74 Posted January 31, 2018 Share Posted January 31, 2018 On 1/31/2018 at 5:38 PM, OliZ said: Thank you! Will tey this out, where do i add the cords? Expand You don't need any coords. You just need be near the gong. Over short distance the pathfinder will do the work. Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38696 Share on other sites More sharing options...
OliZ 5 Posted January 31, 2018 Author Share Posted January 31, 2018 On 1/31/2018 at 5:41 PM, nudl said: You don't need any coords. You just need be near the gong. Over short distance the pathfinder will do the work. Expand Aha! So ill just puth a waypoint near then! :) Link to comment https://wrobot.eu/forums/topic/8395-clicking-objects-in-dungeons/#findComment-38698 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now