11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
|
var status = 0;
|
||
|
|
||
|
function start() {
|
||
|
status = -1;
|
||
|
action(1, 0, 0);
|
||
|
}
|
||
|
|
||
|
function action(mode, type, selection) {
|
||
|
cm.sendOk("Please calm down, uncle. We are embarking to #bVictoria Island#k, we will be safe once we reach there. So, come on!");
|
||
|
cm.dispose();
|
||
|
}
|