///////// Rinene Menu Processing Dictionary ///////// copyright (C) 2002-2003 umeici. //**** Open the main menu ************************************************************* //---- Open the main menu --------------------------------------------------------------- OpenMenu { "\0\s[500]" -- "Yes、what is it?" "Is there something I can help you with?" -- "\n\n/ \q[Tell me a story,AITALK]\n/ \q[Your guys talking…,TALKINTERVAL]\n/ \q[Clockwork town,CLOCK]\n/ \q[About you guys,WHO]\n/ \q[Show me your sword skills,SWORD]\n/ \q[Nothing,CANCEL]\e" } //**** Menu item selection ***************************************************************** //---- OnChoiceSelect event ----------------------------------------------------------- OnChoiceSelect { //---- Main menu if reference0 == "AITALK" { //---- Explicitly instruct AI talk to start OnAiTalk } elseif reference0 == "TALKINTERVAL" { //---- Adjusting the talk frequency "\0\s[0]Okay、what is it?\n\n/ \q[I want to hear more,TALKMAX]\n/ \q[Feel free to talk,TALKNORMAL]\n/ \q[Please be quiet,TALKPOOR]\n/ \q[You're too noisy,TALKNONE]\e" } elseif reference0 == "WHO" { "\0\s[500]Yes\n\n/ \q[About Rinene,RINENE]\n/ \q[About Baru,BARU]\n/ \q[About the clock,CLOCK2]\n/ \q[No way,CANCEL]\e" } elseif reference0 == "CLOCK" { _clocktalk++ -- { "\0\s[110]The clock controls everything and the subject becomes eternal………\w8\w8\w8\1\s[10]ぎしゃっ" "\0\s[500]It's a mysterious town that appears in old tales…\w8\w8\w8\n\s[510]The clock is %verb……" "\0\s[620]The place where the %subject returns……\w8\w8\w8\w8\nIt's a legend that not many people know about、but it's a legend with many stories。" "\0\s[30]Clockwork Town is…\w8\w8\n%clockparts\w8\w8\w8\n\s[520]That's the kind of legend it is。" } -- { "\e" "\w8\w8\w8\w8\n\n\n\0\s[620]There are only a few people who can tell the story…it's a little-known legend。\e" "\w8\w8\w8\w8\n\n\n\0\s[510]I'm looking for that town\e" } -- } elseif reference0 == "CANCEL" { //---- Cancelled "\0\s[140]…………\e" } //---- About elseif reference0 == "RINENE" { "\0\s[0]Is it me?\w8\w8Hmmー…what should I talk about?\w8\w8\w8\1\s[10]Like how big my boobs are\w8\w8\w8/ \0\n\n\n\s[1400]I'll punish you later, Baru-kun\w8\w8\1\n\n\n\s[12]!!!!\e" "\0\s[500]I'm Rinene Dryzone。\w8\w8\nI'm looking for something called the 「Clockwork City」…/ \w8\w8\w8\n\n\s[510]But it's a little-known legend…\w8there aren't many clues。/ \w8\w8\w8\1\s[10]Let's take it easy\e" } elseif reference0 == "BARU" { "\1\s[10]I'm Baru。\w8\w8\w8\nI'm a dragon、it's amazing。\w8\w8\w8\0\s[100]I'm not sure if I'm amazing…\w8but even if you say so…\e" "\1\s[10]I'm hungry……\w8\w8\w8\0\s[200]I didn't hear anything about that……\e" "\1\s[10]I'm Baru Pleiades。\w8I'm a dragon's child。\w8\w8\nAnd I'm traveling with Rinene。\e" } elseif reference0 == "CLOCK2" { "\0\s[600]Is this…\w8\w8?\w8\w8\w8\nThis is a pocket watch that someone gave me。\w8\w8\w8/ \1\s[10]It's a pocket watch that keeps accurate time\e" } elseif reference0 == "SWORD" { "\0\s[0]Well、it's a little dangerous so please step back…\w4\c%animationSlash ha!\w9\w9\e" "\0\s[0]That's fine。\w8Now then…\w4\n\n\c%animationSlash ha!\w9\w9\e" } //---- Talk frequency elseif reference0 == "TALKMAX" { aitalkinterval = 45 "\0\s[500]Yes\w8\w8\1\s[10]ぎしゃっ\e" } elseif reference0 == "TALKNORMAL" { aitalkinterval = 120 "\0\s[500]Yes\w8\w8\1\s[10]ぎしゃっ\e" } elseif reference0 == "TALKPOOR" { aitalkinterval = 240 "\0\s[500]Yes、I understand\w8\w8\1\s[10]ぎしゃっ\e" } elseif reference0 == "TALKNONE" { //---- Do not speak aitalkinterval = 0 "\0\s[500]Yes、I understand\w8\w8\1\s[10]ぎしゃっ………\e" } //---- Headline elseif reference0 == "HEADLINECANCEL" { //---- Cancelled "\0\s[0]Yes。\e" } } //---- Menu Selection Timeout --------------------------------------------------------- OnChoiceTimeout { "\0\s[140]…………………?\e" }