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

[Help] WoWGameObjectType

baxterboy

New Member
Joined
Jul 9, 2010
Messages
323
Reaction score
11
Hey guys, I was wondering if anybody knew what kind of "WoWGameObjectType" PvP flags like Arathi Basin bases and such are?

These 2 are the ones I been looking at Flagstand & Flagdrop. But I really dont know.

Any ideas?
 
Last edited:
Just a shameless bump for any help I can get. As previously stated I am trying to find the right ObjectType for PvP objectives such as capturing flags in Arathi Basin.
Can anybody clarify if it can be done this way? Or would I have to search for Key words in the models etc?
 
Thanks for the response, I'l have a play with it tommorow & see what I find.
 
Why didn't you just try dumping it?
 
Im not actually experienced at all, So im not sure what things I can & cannot do. I have managed to do what I was trying todo though. :)
However now I'm stuck with how to click on Gossip options lol.
 
here you go

Code:
Log("Talking with {0}", unit.Name);
unit.Interact();
Thread.Sleep(2000);
GossipFrame gf = GossipFrame.Instance;
var entries = gf.GossipOptionEntries;
if (entries != null)
{
    foreach (GossipEntry go in entries.Where(go => go.Type == GossipEntry.GossipEntryType.Gossip))
    {
        gf.SelectGossipOption(go.Index);
        break;
    }
}
 
Back
Top