[Ayuda]їY estas advertencias? - 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: Español/Spanish (
https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: [Ayuda]їY estas advertencias? (
/showthread.php?tid=581110)
[Ayuda]їY estas advertencias? -
MatrixenXD - 10.07.2015
Hola, tengo una consulta.
їPorque me sale estos warnings?
Quote:
D:\Killing Zone Freeroam\gamemodes\KZFR.pwn(12483) : warning 202: number of arguments does not match definition
D:\Killing Zone Freeroam\gamemodes\KZFR.pwn(12483) : warning 202: number of arguments does not match definition
D:\Killing Zone Freeroam\gamemodes\KZFR.pwn(12502) : warning 202: number of arguments does not match definition
D:\Killing Zone Freeroam\gamemodes\KZFR.pwn(12502) : warning 202: number of arguments does not match definition
|
Linea 12483:
PHP код:
SendClientMessageToAll(red, "Evento Fъtbol: El partido entre %s vs %s ha empezado!!!", EsPJ1, EsPJ2);
Linea 12502:
PHP код:
SendClientMessageToAll(red, "Evento Fъtbol: El partido entre %s vs %s ha finalizado", EsPJ1, EsPJ2);
De antemano, Gracias.
Re: [Ayuda]їY estas advertencias? -
Onfroi - 10.07.2015
SendClientMessageToAll(color, const mensaje[]);
Tienes argumentos de extra.
Respuesta: [Ayuda]їY estas advertencias? -
Swedky - 10.07.2015
Es porque
SendClientMessageToAll solo tiene 2 parбmetros y tu pusiste 4.
La forma correcta serнa:
pawn Код:
new string[128];
format(string, sizeof(string), "Evento Fъtbol: El partido entre %s vs %s ha empezado!!!", EsPJ1, EsPJ2);
SendClientMessageToAll(red, string);
Saludos.
Respuesta: [Ayuda]їY estas advertencias? -
FelipeAndres - 10.07.2015
debes usar format en estos tipos de mensajes
Код:
new string[100];
format(string, sizeof(string), "Evento Fъtbol: El partido entre %s vs %s ha empezado!!!", EsPJ1, EsPJ2);
SendClientMessageToAll(red, string);
Respuesta: [Ayuda]їY estas advertencias? -
MatrixenXD - 10.07.2015
Aaaah es verdad, Gracias Enzo, gracias Felipe
Respuesta: [Ayuda]їY estas advertencias? -
Goncho28 - 10.07.2015
Te dejo esto, siempre sirve
https://sampwiki.blast.hk/wiki/Errors_List#Warnings
Respuesta: [Ayuda]їY estas advertencias? -
MatrixenXD - 10.07.2015
Gracias Goncho, me puede funcionar siempre