HLMOD.HU Forrás Megtekintés
- www.hlmod.hu#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>
/* Force a point and a comma after expresions */
#pragma semicolon 1
/* Health offset by ConnorMcLeod */
#define m_iClientHealth 359
public plugin_init()
{
register_plugin("HP Bug Fix", "1.3", "claudiu_hks");
/* After the player has spawned (forward) */
RegisterHam(Ham_Spawn, "player", "ham_PlayerSpawnPost", 1);
}
public ham_PlayerSpawnPost(id)
{
if (is_user_alive(id))
{
/* Negative value to make sure the message is sent */
set_pdata_int(id, m_iClientHealth, -99);
}
}