SA-MP Forums Archive
[FilterScript] [OwnerBox] iStats - Ultimate statistics FS - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] [OwnerBox] iStats - Ultimate statistics FS (/showthread.php?tid=325686)



[OwnerBox] iStats - Ultimate statistics FS - iToast - 14.03.2012

Description:

iStats, taking stalking to a whole new level for you info freaks!
Requirements to compile:

Dini (in zip)
Colors (in zip)
Pawno (derp)

Features:

Tracks multiple aspects of your server. Such as player crashes, joins, unique players, deaths, murders, and more!

Commands:

iVer - Current Version
iLoads - Total script loads
iJoins - Total player joins
iLeaves - Total player leaves
iCrashes - Total player crashes
iPlayers - Total player joins
iuPlayers - Total different player joins
iMessages - Total messages sent
iKills - Total murders
iDeaths - Total deaths
iSpawns - Total player spawns

Credits:

iToast - iStats
Dracoblue - Dini
****** - Colors

Download:

Click me!

Donate:

Click me!


Re: [OwnerBox] iStats - Ultimate statistics FS - iToast - 14.03.2012

Suggest anything I should add to be tracked, I'm working on a new script right now for devs


Re: [OwnerBox] iStats - Ultimate statistics FS - iToast - 15.03.2012

Any feedback...? Also next update should do vehicle spawning tracking and despawning tracking


Re: [OwnerBox] iStats - Ultimate statistics FS - milanosie - 18.03.2012

This is attacking Apple's copyright

They bought everything with "i" in front of it

But whatever, I think it could be usefull but it really does not take a lot of time to make this,


Re: [OwnerBox] iStats - Ultimate statistics FS - petrolhead - 18.03.2012

track PM's,cmds typed,most online player's.


Re: [OwnerBox] iStats - Ultimate statistics FS - milanosie - 18.03.2012

pawn Код:
public OnPlayerCommandPerformed( playerid, cmdtext[ ], success )
{
    if(success)
    {
        new name[24];
        new string[128];
        GetPlayerName(playerid, name, 24);
        format(string, sizeof(string), "%s: [%s]", name, cmdtext);
        writeallcmd(string);
    }
    return 1;
}
Track cmds.


Easy as that