30.03.2014, 07:12
PHP Code:
CMD:points(playerid, params[])
{
new string[128];
for(new i; i < MAX_POINTS; i++)
{
if (Points[i][Type] >= 0)
{
format(string, sizeof(string), "Name: %s | Owner: %s | Captured By: %s | Hours: %d",
Points[i][Name],Points[i][Owner],Points[i][CapperName],Points[i][Vulnerable]);
SendClientMessageEx(playerid, COLOR_WHITE, string);
}
}
return 1;
}