Самый просто плагин ShowDamage
Код
#include <sourcemod>
public OnPluginStart()
{
HookEvent("player_hurt", Event_OnPlayerHurt);
}
public Event_OnPlayerHurt(Handle:event, const String:name[], bool:silent)
{
new attacker = GetClientOfUserId(GetEventInt(event, "attacker"));
if (attacker > 0)
{
PrintCenterText(attacker, "Урон: -%d", GetEventInt(event, "dmg_health")); //Как умножить число на 2, не урон а само число. Тоесть игрока нанёс 65 хп/ Показывается 130 хп
}
}