SA-MP Forums Archive
Error.. - 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: Error.. (/showthread.php?tid=598879)



Error.. - Fagrinht - 17.01.2016

En OnPlayerText puse esto...

printf("[CANAL IC] %s dice: %s", NombreJugador, text);

error "error 076: syntax error in the expression, or invalid function call"


Re: Error.. - SickAttack - 17.01.2016

pawn Код:
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
printf("%s: %s", name, text);



Re: Error.. - Choidito - 18.01.2016

NombreJugador no cumple ninguna funciуn, lo que puedes hacer si ya tienes definida es poner

PHP код:
NombreJugador(playerid
o simplemente:

PHP код:
new nombre[MAX_PLAYER_NAME];
GetPlayerName(playeridnombreMAX_PLAYER_NAME);
printf("CANAL IC %s: %s"nametext); 



Respuesta: Error.. - Fagrinht - 18.01.2016

Disculpen! me faltaba poner el (playerid) en NombreJugador, se me pasу de tonto.

igual os doy reputaciуn!