23.06.2014, 18:00
o codigo dele ta muito top curti bastante e simples e eficaz, ve se assim entende como se usa, top Will
pawn Код:
forward contar(playerid, x);
public contar(playerid, x)
{
if (x == -1) return 0;
new str[128];
format(str, sizeof(str), "Contagem: %d", x);
GameTextForPlayer(playerid, str, 1000, 1);
return contar(playerid, x-1);
}
CMD:contar10(playerid)
return contar(playerid, 10);