07.02.2011, 19:01
Йste plugin creado por ****** tiene varias funciones mбs de archivos, y una de ellas es ffind, como el nombre lo indica, es para encontrar archivos.
Te dejo un ejemplo que encontrй en el thread:
Te dejo un ejemplo que encontrй en el thread:
pawn Код:
// Find all the vehicle files in Los Santos
main()
{
new
i,
buf[64];
i = 0;
// Find all files matching the given wildcard string
while (ffind("vehiclelists/ls_*.txt", buf, sizeof (buf), i))
{
printf("%d) %s", i - 1, buf);
}
}