How many would there be blood
#2

What? Find out yourself - we are not your personal assistants. You can use something such as:

pawn Код:
#include <a_samp>
#include <zcmd>
new Tracking[MAX_PLAYERS];

CMD:trackpos(playerid, params[])
{
      new string[64];
      if(Tracking[playerid])
      {
             Tracking[playerid] = Tracking[playerid] - gettime();
             format(string, sizeof(string), "Seconds elapsed: %d", Tracking[playerid]);
             SendClientMessage(playerid, -1, string);
             Tracking[playerid] = 0;
       }
       else
       {
             Tracking[playerid] = gettime();
       }
       return 1;
}
Reply


Messages In This Thread
How many would there be blood - by xmy1229 - 03.04.2015, 01:49
Re: How many would there be blood - by Abagail - 03.04.2015, 01:51
Re: How many would there be blood - by Kaperstone - 03.04.2015, 04:04

Forum Jump:


Users browsing this thread: 1 Guest(s)