Well I created a command to remove items from all players who are on the map, but this just myremoving I wanted to remove only players that are not GM's.
ACMD_FUNC(remove)
{
struct map_session_data* pl_sd;
struct s_mapiterator* iter;
int i;
nullpo_retr(-1, sd);
iter = mapit_getallusers();
for (i = 0; i < MAX_INVENTORY; i++) {
if (sd->status.inventory[i].amount) {
if(sd->status.inventory[i].equip != 0)
pc_unequipitem(sd, i, 3);
}
}
clif_displaymessage(fd, "Itens desequipados");
return 0;
}