HeadShot solo Sniper
#1

Alguien fuera tan amable como puedo hacer para que de un disparo utilizando solo el sniper muere con un tiro.

Nota: que funcione solo con el sniper,

Muchas grcias
Reply
#2

En OnPlayerTakeDamage detectбs que en caso de que se dispare con el arma ID 34 y en la bodypart 9 (que es la cabeza), se le reste la vida a 0.

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
{
    if(bodypart == 9 && issuerid != INVALID_PLAYER_ID)
    {
        SetPlayerHealth(playerid, 0.0);
    }
    return 1;
}
Es tan fбcil como eso.
Reply
#3

Quote:
Originally Posted by DeadSkyTkb
Посмотреть сообщение
En OnPlayerTakeDamage detectбs que en caso de que se dispare con el arma ID 34 y en la bodypart 9 (que es la cabeza), se le reste la vida a 0.

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
{
    if(bodypart == 9 && issuerid != INVALID_PLAYER_ID)
    {
        SetPlayerHealth(playerid, 0.0);
    }
    return 1;
}
Es tan fбcil como eso.
donde defino el 34 ?

asi:

PHP код:
if(issuerid != INVALID_PLAYER_ID && bodypart == && weaponid == 34


Y me sale este error
PHP код:
Mejorado2014.pwn(15747) : error 025: function heading differs from prototype 
Reply
#4

pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
{
    if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)
    {
        SetPlayerHealth(playerid, 0.0);
    }
    return 1;
}
Reply
#5

Quote:
Originally Posted by DeadSkyTkb
Посмотреть сообщение
pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
{
    if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)
    {
        SetPlayerHealth(playerid, 0.0);
    }
    return 1;
}
Aun sigue saliendo el error ._.

PHP код:
C:\Users\User\Desktop\Server  \gamemodes\Mejorado2014.pwn(15750) : error 025: function heading differs from prototype 
Reply
#6

Quote:
Originally Posted by Zodiaco
Посмотреть сообщение
Aun sigue saliendo el error ._.

PHP код:
C:\Users\User\Desktop\Server  \gamemodes\Mejorado2014.pwn(15750) : error 025: function heading differs from prototype 
Actualiza tu include a_samp Team

PD https://sampwiki.blast.hk/wiki/OnPlayerTakeDamage
Reply
#7

Quote:
Originally Posted by PolloLoko
Посмотреть сообщение
Actualiza tu include a_samp Team

PD https://sampwiki.blast.hk/wiki/OnPlayerTakeDamage
muchas gracias men, creo que fue problema del include a_samp ya quedo bien.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)