I saw you looked into it before (I stalked your profile) so you should know how to just block it. Loop through all players and if player has the bool set true, block, else don't.
Simple as that. I'm just too lazy to check up the actual code.
Edit: You could try this:
PHP Code:
#include < amxmodx >
#include < hamsandwich >
public plugin_init( ) {
register_plugin( "No Weapon Pickup", "1.0", "xPaw" );
RegisterHam( Ham_Touch, "weaponbox", "FwdHamPlayerWeaponTouch" );
RegisterHam( Ham_Touch, "armoury_entity", "FwdHamPlayerWeaponTouch" );
}
public FwdHamPlayerWeaponTouch( const iEntity, const id )
return g_LastRequest ? HAM_SUPERCEDE : HAM_IGNORED;
__________________