[Ajuda] Contar Veнculos - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Contar Veнculos (
/showthread.php?tid=294555)
[Ajuda] Contar Veнculos -
cotonete - 02.11.2011
tem alguma funзгo que conta o total de veнculos adicionados no mode?
Re: [Ajuda] Contar Veнculos -
steki. - 02.11.2011
pawn Код:
Vehicle_Count()
{
new i = -1, Count;
while(++i < MAX_VEHICLES)
if(GetVehicleModel(i))
Count++;
return Count;
}