31 lines
510 B
JavaScript
31 lines
510 B
JavaScript
var status = 0;
|
|
var request;
|
|
|
|
function start() {
|
|
status = -1;
|
|
action(1, 0, 0);
|
|
}
|
|
|
|
|
|
function action(mode, type, selection) {
|
|
if (mode == -1) {
|
|
cm.dispose();
|
|
} else {
|
|
if (mode == 0 && status == 0) {
|
|
cm.dispose();
|
|
return;
|
|
}
|
|
if (mode == 1)
|
|
status++;
|
|
else
|
|
status--;
|
|
if (status == 0) {
|
|
cm.warpParty(980030000, 4);
|
|
cm.cancelarSaida();
|
|
cm.dispose();
|
|
}
|
|
}
|
|
}
|
|
|
|
|