[HELP]Count Vehicles[HELP]!!!
#4

You may like to look https://sampwiki.blast.hk/wiki/IsValidVehicle

pawn Код:
native IsValidVehicle(vehicleid);
 
// Count vehicles
public OnPlayerCommandText(playerid,cmdtext[])
{
    if(!strcmp(cmdtext,"/countvehicles",true))
    {            
        new
            count,
            msg[60];
 
        for(new i; i < MAX_VEHICLES; i++)
        {
            if(IsValidVehicle(i)) count++;
        }
 
        format(msg, sizeof(msg), "* There are %d valid spawned vehicles on this server.", count);
        SendClientMessage(playerid, 0x33CCCCFF, msg);
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
[HELP]Count Vehicles[HELP]!!! - by Cjgogo - 22.08.2012, 08:28
Re: [HELP]Count Vehicles[HELP]!!! - by RedFusion - 22.08.2012, 08:35
Re: [HELP]Count Vehicles[HELP]!!! - by Cjgogo - 22.08.2012, 08:42
Re: [HELP]Count Vehicles[HELP]!!! - by [MM]RoXoR[FS] - 22.08.2012, 08:46
Re: [HELP]Count Vehicles[HELP]!!! - by HuSs3n - 22.08.2012, 09:00
Re: [HELP]Count Vehicles[HELP]!!! - by Cjgogo - 22.08.2012, 09:12

Forum Jump:


Users browsing this thread: 3 Guest(s)