29.03.2017, 20:48
Bom Tarde galera bom eu queria saber como vejo os danos das armas no game mode Tiro se a minigun tira 100% de dano a onde vejo a quantidade de dano para diminuir os danos da arma.
if(GetPlayerWeapon(issuerid) == 38)//MINIGUN { new Float:health; SetPlayerHealth(playerid, GetPlayerHealth(playerid, health)-dano); return 1; }
dcmd_vervida(playerid, params[])
{
new tmp[256], idx, string[128];
tmp = strtok(params, idx);
new id;
if(!IsNumeric(tmp))
id = ReturnPlayerID(tmp);
else
id = strval(tmp);
if(Player[playerid][pAdmin] < 1)
return SendClientMessage(playerid, COR_ERRO, "ERRO: Vocк nгo tem permissгo para usar este comando!");
if(!strlen(tmp))
return SendClientMessage(playerid, COR_USOCORRETO, "Uso: /vervida [id]");
new Float:health;
GetPlayerHealth(id,health);
format(string, sizeof(string), "Vida do Player %s: %.1f", id, health);
SendClientMessage(playerid, 0xE3E3E3FF,string);
return 1;
}
PHP код:
|
PHP код:
|