[Release]Server Stats Library

Posts 115 of 18 · Page 1 of 2
[Release]Server Stats Library
Hey there.

I'm presenting you a little library I have created today. This library is extracting information from *********** and game-monitor.

There is a class for each.

~ Explanation ~

*********** & Game-Monitor contain a hell of a lot servers. Thus, you can easily get a servers information like the current online players.
Game-Monitor for example, also shows the server variables, such as punkbuster. You can make a little tool showing your favourite servers with
the current map/current players and much more!

You don't have to go ingame anymore, it is very handy

This library lets you easily access/extract these gameserver informations.

~ Functions ~


The functions are pretty obviously.

~ Setup ~

This is very simple.

=> Rightclick your project in the solution-explorer
=> Add reference
=> Select the .dll
=> Done

~ Usage ~

[php]Dim *********** as new ServerList.***********("77.111.202.39:27015")
For i = 0 to ***********.players.count
dim x() as string = split(***********.players(i), "|")

listview1.items(listview1.items.count - 1).subitems.add(x(0))
listview1.items(listview1.items.count - 1).subitems.add(x(1))
listview1.items(listview1.items.count - 1).subitems.add(x(2))
next

listview2.items.add(***********.currentplayers)
listview2.items(listview2.items.count - 1).subitems.add(***********.currentmap)
[/php]

[php]Dim gamemonitor as new ServerList.GameMonitor("cod4", "193.47.83.227:28935")

For i = 0 to gamemonitor.players.count
dim x() as string = split(gamemonitor.players(i), "|")

listview1.items(listview1.items.count - 1).subitems.add(x(0))
listview1.items(listview1.items.count - 1).subitems.add(x(1))
listview1.items(listview1.items.count - 1).subitems.add(x(2))
listview1.items(listview1.items.count - 1).subitems.add(x(3))

listview2.items.add(gamemonitor.currentmap)[/php]

Use intellisense for any further help.

~ Credits ~
=> Blubb1337
=> XScapism
=> Jason(serving water)
=> Nextgen(being offline whenever you need him)

~ Virusscans ~

VirusTotal
Jotti

~ File Information ~

  • .Net Framework 2.0
  • Filesize Packed ~ 40 KB
  • Filesize Unpacked ~ 80 KB
  • MD5(RAR) - 50e5dab1083c4753ed1d53edcebd23f5

If you have any further suggestions/improvements or bugs you may have faced, please post them in this topic.

Thanks and enjoy
ServerStats.rarattachment deleted · 15 downloads before removal
Ahahahahahaha() at credits
nice thingie
Waterboy

When the fuck did you start making this? It's the first I've heard of you making
Did that after school. A guy on msn requested code to extract the servername of a game-monitor server. So I just made a library for extracting some more information =D.

You can do a little "Favourites"-Tool or such. Pretty neat.
Quote Originally Posted by Physcadelic View Post
Lol @ Waterboy Jason.
It's an inside joke; if you don't get it, get out.
You will need put refresh.
What are you talking about? o_O
Do you dont have refresh...
Just dim it again to refresh
Quote Originally Posted by Blubb1337 View Post
Just dim it again to refresh
Time1 per 1 sec + Dim = Lagger
very nice work mate.
Posts 115 of 18 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?