you could just use the no buy zone plugin and find a plugin which strips weapons already.
maybe this plugin will work for you for striping all weapons, it works for me. Stewie created it. I didnt. I just did some research to find it on the forum.
PHP Code:
#include <amxmodx>
#include <hamsandwich>
#include <fun>
public plugin_init()
{
register_plugin("hello", "1.0", "Stewie!");
RegisterHam(Ham_Spawn, "player", "player_spawn", 1);
}
public player_spawn(id)
{
if(is_user_alive(id))
{
strip_user_weapons(id);
}
}
__________________