[Ajuda] GetWeaponName e Bodyparty
#1

Bom Eu Gostaria de Mudar o Nome Das armas do GetWeaponName Tentei Ir Pelo Wiki Mas sem Sucesso e Tambйm Eu Gostaria de Saber Como definir as partes do Bodyparty,Por Exemplo Ao Player Morreu na Parte 1 no Caso Cabeзa ai no OnPlayer Death eu Criaria Uma send Mandando Nesse Formato:Vocк Foi Morto Por:[%s] Com a Arma:[Nomedasarmamudado] Local do Tiro:[Cabeзa] No Caso esse Local de Tiro para que Apareзa Cabeзa que Nгo estou conseguindo Colocar Quem puder me ajudar Agradeзo.
Sei Que deve Ser Facil mas Nгo to conseguindo
Reply
#2

Tenho um Filterscript sobre isso, dб uma olhadinha.
https://sampforum.blast.hk/showthread.php?tid=507549
Reply
#3

Код:
ID	Body Part
3	 BODY_PART_TORSO
4	 BODY_PART_GROIN
5	 BODY_PART_LEFT_ARM
6	 BODY_PART_RIGHT_ARM
7	 BODY_PART_LEFT_LEG
8	 BODY_PART_RIGHT_LEG
9	 BODY_PART_HEAD
exemplo:
pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid, bodypart)
{
    if(bodypart == 9) // Detecta se acertou a cabeзa do PLAYER
    {
        SetPlayerHealth(playerid, 0); // Seta vida 0, morre na hora!
        GameTextForPlayer(playerid, "~y~Levou na Testa!!!", 3000, 3);
        GameTextForPlayer(issuerid, "~r~Head Shot!!!", 3000, 3);   
    }
    return 1;
}
Reply
#4

Mais tipo Eu Queria Cria um Format No OnPlayerDeath e a Questгo e Que Nгo consigo Fazer Com que Cada Parte tenha um Nome Definido para Colocar no formate e Tambйm Nгo Consigo Mudar o Nome das Armas pelo GetWeaponsName Ja usei Os exemplos do Wiki mas nem Funciona
Exemplo de Como Seria o Format No OnPlayerDeath
Ex:
pawn Код:
new string[128];
    new gunname[34];
    GetWeaponName(reason,gunname,sizeof(gunname));
    GetPlayerName(killerid, NomePlayerMatou, sizeof(NomePlayerMatou));
    GetPlayerName(playerid, NomePlayerMorreu, sizeof(NomePlayerMorreu));
    //new ArmaMorte = GetPlayerWeapon(killerid);
    format(string, sizeof(string), "Vocк Foi Morto Por [%s] Com a Arma:[%s] Local do Tiro:[%s]", NomePlayerMatou, gunname,Partes);
    SendClientMessage(playerid, COLOR_LIGHTRED, string);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)