I know for a fact that you can block the drop command, so this
should work
PHP Code:
public plugin_init() {
register_clcmd("drop", "hookDrop", 0)
}
public hookDrop(id) {
if (get_user_weapon(id) == CSW_USP) {
client_print(id, print_chat, "[AMXX] You are not allowed to drop the USP!")
return PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}
__________________