- Joined
- Jun 14, 2008
- Messages
- 80
- Reaction score
- 1
Code:
// Made by king321123 [gil].
// Do not release anywhere else FXP or RZ w/out
// a credit.
var status = 0;
function start() {
status = -1;
action(1, 0, 0);
}
function action(mode, type, selection) {
if (mode != 1) {
cm.dispose();
return;
} else
status++;
if (status == 0) {
cm.sendSimple("Hey, #b#h ##k. Oh ow.. I can tell you many things about Time. What would you like to know? #b\r\n#L0#What day is it?#l\r\n#L1#Hour ^ Minuets.#l#k");
} else if (status == 1) {
if (selection == 0) { // Explain about the Holyday.
cm.sendOk("The day is " + cm.getDayOfWeek() + ", that means..\r\n\r\n1 - Sunday.\r\n2 - Monday.\r\n3 - Thuesday.\r\n4 - Wednesday.\r\n5 - Thursday.\r\n6 - Friday.\r\n7 - Saturday.");
} else if (selection == 1) { // Tells what you have to do.
cm.sendNext("The time now is #r#e" + cm.getHour() + ":" + cm.getMin() + "#k#n. Well if it's too\r\nlate or too early.. We suggest you play more #biStories.#k");
cm.dispose();
}
}
}
