Se equivoca el texto - 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: Se equivoca el texto (
/showthread.php?tid=607781)
Se equivoca el texto -
wharlos - 23.05.2016
Por que cuando asesino el mensaje se le da a la victima y no ami?
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(killerid != INVALID_PLAYER_ID)
{
new string[128];
PlayerInfo[killerid][Asesinatos] ++;
format(string, sizeof(string), "[ADVERTENCIA]: {FFFFFF}Has realizado un asesinato, la victima fue {FF8409}%s", PlayerNombre(playerid));
SendClientMessage(playerid, COLOR_NARANJA, string);
}
PlayerInfo[playerid][Muertes] ++;
return 1;
}
Re: Se equivoca el texto -
Onfroi - 23.05.2016
SendClientMessage(killerid, COLOR_NARANJA, string);
Respuesta: Re: Se equivoca el texto -
wharlos - 23.05.2016
Quote:
Originally Posted by Onfroi
SendClientMessage(killerid, COLOR_NARANJA, string);
|
Muchas gracias
+1