18.03.2016, 05:38
PHP код:
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid, bodypart)
{
if(issuerid != INVALID_PLAYER_ID)
{
new string[128];
format(string,sizeof(string),"-%.0f HP",amount);
SetPlayerChatBubble(playerid,string,0x660000AA,150.0,2500);
}
return 1;
}

