Ayuda, Error 035: argument type mismatch (argument 1)
#1

Descarguй un cуdigo que me pasу un amigo y resulta que tiene el siguiente error (el no puede brindarme el soporte que necesito), como yo voy mбs por otros sistemas, este cuenta con dini y yo no entender mucho del tema. їme podrнan ayudar?, gracias.

Код:
stock nGraffiti()
{
        new ID[64]; for(new h = 0; h <= 200; h++)
	{
	         format(ID, sizeof(ID), Graffitis, h);if(!dini_Exists(ID)) return h; <-- LINEA DONDE ESTБ EL ERROR.
	}
	return true;
}
Reply
#2

Код:
stock nGraffiti()
{
        new ID[64]; for(new h = 0; h <= 200; h++)
	{
	         format(ID, sizeof(ID), Graffitis, h);if(!dini_Exists(ID));
	}
	return 1;
}
Reply
#3

Persiste el mismo problema.
Reply
#4

El cуdigo compilado!
Reply
#5

Код:
stock nGraffiti()
{
        new ID[64]; 
        for(new h = 0; h <= 200; h++)
	{
	         format(ID, sizeof(ID), Graffitis, h);
                 if(!dini_Exists(ID)) return h; <-- LINEA DONDE ESTБ EL ERROR.
	}
	return true;
}
No debes colocar el "for" en la misma linea que la variable... Creo.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)