function action(mode, type, selection) {
if (mode == -1) {
cm.dispose();
} else {
if (mode == 0) {
cm.dispose();
return;
}
if (mode == 1) status++;
if (status == 0) {
var text = "#e你好,我这里可以为你清理一下你的背包哟,但是需要注意,清理掉后可不能复原的哟!\r\n";
text += "#b#L1#我要考虑清理装备栏全部的装备#l\r\n";
text += "#r#L2#我要考虑清理消耗栏全部的装备#l\r\n";
text += "#g#L3#我要考虑清理设置栏全部的装备#l\r\n";
text += "#r#L4#我要考虑清理其他栏全部的装备#l\r\n";
text += "#b#L5#我要考虑清理特殊栏全部的装备#l\r\n";
cm.sendSimple(text);
} else if (status == 1) {
if (selection == 1 || selection == 2 || selection == 3 || selection == 4 || selection == 5) {
fstype = selection;//把装备类型赋值到fstype变量,传给下面的方法
cm.sendYesNo("你确定让我为你删除装备吗?");
}
} else if (status == 2) {
cm.deleteItems(fstype);//调用服务端内删除装备方法
cm.dispose();
}
}
}