SA-MP Forums Archive
[Ajuda] Sistema de taser - 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: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Sistema de taser (/showthread.php?tid=375417)



Sistema de taser - Tony_Rodrigues - 06.09.2012

Bom, o meu sistema de taser quando eu atiro no cara com o /taser ligado o cara so perde life sendo que era pra ele congelar..
Mas se eu tiver com taser na mгo e ele me da um soco ele congela!
Oque pode ser

pawn Код:
public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid)
{
    new str[128];
    if(GetPlayerWeapon(damagedid) == 23 && Taser[damagedid] == true)
    {
        TogglePlayerControllable(playerid,0);
        CongeladoViaTaser[playerid] = true;
        format(str,sizeof(str),"Vocк foi atingido por um taser de %s!",NomeP(damagedid));
        MSG(playerid, Azul_Claro, str);
        format(str,sizeof(str),"Vocк atingiu %s com um tiro de taser!",NomeP(playerid));
        MSG(damagedid,Azul_Claro,str);
    }
    return 1;
}



Re: Sistema de taser - Tony_Rodrigues - 06.09.2012

Alguem?


Re: Sistema de taser - .FuneraL. - 06.09.2012

pawn Код:
public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid)
{
    new str[128];
    if(GetPlayerWeapon(playerid) == 23 && Taser[damagedid] == true)
    {
        TogglePlayerControllable(damagedid,0);
        CongeladoViaTaser[damagedid] = true;
        format(str,sizeof(str),"Vocк foi atingido por um taser de %s!",NomeP(damagedid));
        MSG(damagedid, Azul_Claro, str);
        format(str,sizeof(str),"Vocк atingiu %s com um tiro de taser!",NomeP(playerid));
        MSG(playerid,Azul_Claro,str);
    }
    return 1;
}
Tenta aн


Re: Sistema de taser - paulor - 06.09.2012

pawn Код:
public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid) {
    new str[128];
    if(GetPlayerWeapon(playerid) == 23 && Taser[playerid] == true) {
        TogglePlayerControllable(damagedid,0);
        CongeladoViaTaser[damagedid] = true;
        format(str,sizeof(str),"Vocк foi atingido por um taser de %s!",NomeP(playerid));
        MSG(damagedid, Azul_Claro, str);
        format(str,sizeof(str),"Vocк atingiu %s com um tiro de taser!",NomeP(damagedid));
        MSG(playerid,Azul_Claro,str);
    }
    return 1;
}