11.06.2008, 16:47
Count Vehicles In Server
PasteBin link, for ready to use FSDisplays how many vehicles are in your server, only way i could think of, and no fancy shit
news:
pawn Код:
new CounterID, Count, String[32];
pawn Код:
if(!strcmp(cmdtext, "/countcars", true, 10))
{
CounterID = playerid;
for(new i = 0; i < MAX_VEHICLES; i ++)
SetVehicleToRespawn(i);
SetTimer("DisplayVehicles", 5000, 0);
return 1;
}
pawn Код:
Count = vehicleid;
pawn Код:
forward DisplayVehicles();
public DisplayVehicles()
{
format(String, sizeof(String), "%d Vehicles counted", Count);
SendClientMessage(CounterID, 0xFFFFFF, String);
}
EDIT: can this topic be stickied too?