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:
Could you give me a hint how to implement it?
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?






