Как Добавить окошко внизу экрана для тех, у кого ХП больше 512, что бы там было правильное число
Вот нашел какой то но там пишет только когда в тебя по стреляли а можно ли зделать что бы всегда показывало
Вот нашел какой то но там пишет только когда в тебя по стреляли а можно ли зделать что бы всегда показывало
PHP:
#include <sourcemod>
public Plugin:myinfo =
{
name = "HintTextHP",
author = "NagarD",
description = "Print full hp in HintText",
version = "1.0",
url = "http://*********.net"
}
public OnPluginStart()
{
HookEvent("player_hurt", Event_PlayerHurt, EventHookMode_Pre)
}
public Action:Event_PlayerHurt(Handle:event, const String:name[], bool:dontBroadcast)
{
new client = GetClientOfUserId(GetEventInt(event, "userid"));
new health = GetClientHealth(client);
if (health < 0)
{
health = 0;
}
// Display HP
PrintHintText(client, "HP: %d", health);
}