[PEDIDO]Como criar um Chat Kill
#1

Eu queria criar um chat kill, que mostra o nome de quem matou o icone da arma e o nome da vitima.
Agradeзo desde ja.
Se tiver isso no fуrum desculpe-me. Pois usei search, ****** e nгo achei nada.
Reply
#2

pawn Код:
public OnPlayerDeath(playerid,killerid,reason)
{
    SendDeathMessage(playerid,killerid,reason);
    return 1;
}
Reply
#3

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    SendDeathMessage(killerid, playerid, reason);
    new Morreu[MAX_PLAYER_NAME], Matou[MAX_PLAYER_NAME], string[115];
    GetPlayerName(playerid, Morreu, sizeof(Morreu));
    GetPlayerName(killerid, Matou, sizeof(Matou));
    format(string, sizeof(string), "[~] %s matou %s", Matou, Morreu);
    SendClientMessageToAll(0xE31919FF, string);
    return 1;
}
Reply
#4

desculpa te corrigir aih, mas soh tem um errinho;
pawn Код:
new Morreu[MAX_PLAYER_NAME], Matou[MAX_PLAYER_NAME], new string[115];
ali no string vc repetiu o new, o que vai ocasionar em erro[s]

correзгo do cуdigo:
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    SendDeathMessage(killerid, playerid, reason);
    new Morreu[MAX_PLAYER_NAME], Matou[MAX_PLAYER_NAME], string[115];
    GetPlayerName(playerid, Morreu, sizeof(Morreu));
    GetPlayerName(killerid, Matou, sizeof(Matou));
    format(string, sizeof(string), "[~] %s matou %s", Matou, Morreu);
    SendClientMessageToAll(0xE31919FF, string);
    return 1;
}
faltou com que arma ele matou neh ;P;
Reply
#5

Quote:
Originally Posted by Skoll
Посмотреть сообщение
desculpa te corrigir aih, mas soh tem um errinho;
pawn Код:
new Morreu[MAX_PLAYER_NAME], Matou[MAX_PLAYER_NAME], new string[115];
ali no string vc repetiu o new, o que vai ocasionar em erro[s]

correзгo do cуdigo:
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    SendDeathMessage(killerid, playerid, reason);
    new Morreu[MAX_PLAYER_NAME], Matou[MAX_PLAYER_NAME], string[115];
    GetPlayerName(playerid, Morreu, sizeof(Morreu));
    GetPlayerName(killerid, Matou, sizeof(Matou));
    format(string, sizeof(string), "[~] %s matou %s", Matou, Morreu);
    SendClientMessageToAll(0xE31919FF, string);
    return 1;
}
faltou com que arma ele matou neh ;P;
Obrigado ^^.
Eu iria usar ele separademente em outra linha mais resolvi economizб-las rs. =)

Quote:

que mostra o nome de quem matou o icone da arma e o nome da vitima.

Ele pediu somente estas informaзхes .
Reply
#6

OnPlayerDeath:

pawn Код:
if(killerid == INVALID_PLAYER_ID)
{
    SendDeathMessage(INVALID_PLAYER_ID, playerid, reason)
}
else
{
    SendDeathMessage(killerid, playerid, reason);
}
Reply
#7

Esse aparece somente em letras eu queria com imagem

Reply
#8

pawn Код:
public OnPlayerDeath(playerid,killerid,reason)
{
    SendDeathMessage(playerid,killerid,reason);
    return 1;
}
Reply
#9

https://sampwiki.blast.hk/wiki/OnPlayerDeath
ai
olhe pra vc entender o code
Reply
#10

TIPO NENHUM DESSE AI ME AJUDARAM ALGUEM TEM UM FS DESSE PROONTO JA SO BAIXAR ME AJUAD A??
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)