Code:
#include <amxmodx>
#include <hamsandwich>
#include <fun>
#define START_HEALTH 150
public plugin_init()
{
register_plugin( "HP Modifier", "1.0", "Wrecked" )
RegisterHam( Ham_Spawn, "player", "HamSpawnPost", 1 )
}
public HamSpawnPost( id )
{
if( is_user_alive( id ) )
{
set_user_health( id, START_HEALTH )
}
}
EDIT: Oh, hi there, drekes. =]
__________________