Try this, it should work. Otherwise consider that you have another plugin which change the health of players ( Or the map is badly designed ) :
PHP Code:
#include < amxmodx >
#include < hamsandwich >
#include < fun >
public plugin_init( )
{
register_plugin( "Fix 35HP", "1.0.0", "Baguette" );
new szMapName[ 32 ];
get_mapname( szMapName, charsmax( szMapName ));
if( equal( szMapName, "35hp" ) || equal( szMapName, "35hp_2" ))
{
RegisterHam( Ham_Spawn, "player", "CPlayer__Spawn_P", true );
}
}
public CPlayer__Spawn_P( iPlayer )
{
if( is_user_alive( iPlayer ))
{
set_user_health( iPlayer, 35 );
}
}
__________________