19.03.2011, 15:53
ok, this is a suuuuuper simple "include" that i made in about 5 minutes. I am only releasing it because im a noob. Anyway, here it is:
PCounter
Functions:
CountPlayersOnline();
Example:
Download: http://solidfiles.com/d/05305/
Pastebin: http://pastebin.com/ZHS54UTr
THANKZ!
Functions:
CountPlayersOnline();
Example:
pawn Код:
#include <a_samp>
#include <pcounter>
main()
{
print("\n----------------------------------");
print(" testcrap");
print("----------------------------------\n");
}
public OnFilterScriptInit()
{
SetTimer("count", 7500, true);
}
forward count();
public count()
{
new num = CountPlayersOnline();
printf("players online: %i", num);
}
Pastebin: http://pastebin.com/ZHS54UTr
THANKZ!