If i wanted to make my special particular weapon?
How can I prevent it on the players?
Code:
new pistols
public plugin_init( )
{
register_concmd("weapon_egon", "remove_item", ADMIN_BAN);
pistols = HLW_EGON
}
public remove_item( id, level, cid )
{
if( !cmd_access( id, level, cid, 0 ) )
return PLUGIN_HANDLED;
new players[32]
new num, i
get_players(players, num, "bch")
for (i = 0; i < num; i++)
{
fm_strip_user_gun(players[i], pistols)
}
return PLUGIN_CONTINUE
}
__________________