What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

click world object?

etmawow

New Member
Joined
May 2, 2010
Messages
79
Reaction score
1
Hi

How do i click a world object? like the "water Pitcher" in the quest "A Humble Task" in Mulgore (tauren) ? :)

Hope for an answer shortly.
 
Questing is BETA and has bugs. Some quests need to be blacklisted if you intend to use it to actually level rather than test.
You can use the search option to learn how to blacklist quests.
 
Load all the files (the exe and dll's) in a project with VS and use the object browser to review the current API.
Should get you all you need.
 
Load all the files (the exe and dll's) in a project with VS and use the object browser to review the current API.
Should get you all you need.


Code:
   foreach (WoWGameObject Gobject in objectsList)
                            {
                                try
                                {

                                    if (Gobject.Entry == 191009  && Gobject.Distance <= 30 && !Gobject.InUse)
                                    {

                                        WoWMovement.MoveStop();
                                         Navigator.MoveTo(Gobject.Location);
                                        slog("moving to port local");
                                        Thread.Sleep(1500);
                                        WoWMovement.MoveStop();
                                        slog("clicking Org Portal");
                                        Gobject.Interact();





                                    }


                                }
                                catch (Exception ex) { }
                            }
you should be able to figure it out from this code.
also this plug in will help you find the Entry ID for the item, or items you want to use. just load it up, start the bot where you the items are, go to the plugin config, and change the range. it should give all the info about near by items, remember sometimes eventhough its the same item, it can give off more then one entry ID. so gather the Item info multiple times.
 

Attachments

now that i think about it, you can probally use something like these code examples as well

if (StyxWoW.AreaManager.CurrentGrindArea.CurrentHotSpot.ToWoWPoint() == ObjectManager.Me.Location)
{
slog("Ive Arived at Location Hotspot");
}
if you add this
using Styx.Logic.Pathing;
you can use something like this.
LoadNew("pathto profile/profilename.xml");


so really you should be able to script out anything, from walking and getting flight points, to scripting quests, like you want to do.
hoped this helped.
 
thanks alot CodenameG - I'll try it out instantly :)
yeah.. I have it picking up the quests I want, creating profiles and loading those for the quests it has to do :)

I'll let you know if it works :)
 
Back
Top