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

Get list of players

Boxxy

Member
Joined
Jan 7, 2012
Messages
87
Reaction score
0
Sup guys,

I've got the idea to collect statistics of players, but i don't know how to do that.
I wrote some code, but... idk what to do next:
Code:
private WoWPlayer ListOfPlayers()
        {                
            return (from unit in ObjectManager.GetObjectsOfType<WoWPlayer>(true, false)
                    orderby unit.Name ascending
                    where !unit.IsMe
                    select unit).FirstOrDefault();               
        }

Could you give me a hint how to implement it?
 
what is that? "statistics of players"??? more information about what you wanna do will help us, help you.
 
I wanna get names and realm of players in current battleground, and write it to file(or my own db) :)
 
No. Just want to see some "statistic" because it's interesting
 
100 people idling in dalaran or sw or uldum. whats interesting? type /who uldum and you got it.
 
I want to know where the leprechauns keep their pots of golds. It would be cool to know.
 
PHP:
 List<WoWPlayer> PL = new List<WoWPlayer>(ObjectManager.GetObjectsOfType<WoWPlayer>());
 
Back
Top