I don't believe XP Mod takes action on players with weapons, too lazy to read the XP Mod code. You need to create the plugin yourself as far as I know.
PHP Code:
#include <amxmodx>
#include <hamsandwich>
#include <fun>
public plugin_init()
{
RegisterHam( Ham_Spawn, "player", "cmdSpawn", 1 )
}
public cmdSpawn(id)
{
strip_user_weapons(id)
give_item( id, "weapon_knife" )
}
This will disarm all players when they spawn, and give them knives.
__________________