8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
|
function start() {
|
||
|
action(1, 0, 0);
|
||
|
}
|
||
|
|
||
|
function action(mode, type, selection) {
|
||
|
cm.sendNext("The magic of this forest is amazing...");
|
||
|
cm.dispose();
|
||
|
}
|