PHP Code:
#include <amxmodx>
#include <hamsandwich>
new Float:g_RoundStartGmt;
public plugin_init() {
register_plugin( "xx", "0.7.0", "shine" );
register_event( "DeathMsg", "EventDeath", "a" );
register_logevent( "EventRoundStart", 2, "1=Round_Start" );
}
public EventDeath( ) {
if( get_gametime( ) - g_RoundStartGmt < 1.0 )
ExecuteHamB( Ham_CS_RoundRespawn, read_data( 2 ) );
}
public EventoundStart( )
g_RoundStartGmt = get_gametime();
__________________