Quote:
Originally Posted by Dark Style
remove before start round or when player spawn ?
|
You should add map checking or only have this plugin running on that map(s) that you desire because this will always block awp from spawning.
PHP Code:
#include <amxmodx>
#include <hamsandwich>
public plugin_init()
{
RegisterHam( Ham_Spawn , "weapon_awp" , "AwpSpawn" );
}
public AwpSpawn( iEntity )
{
return HAM_SUPERCEDE;
}
__________________