///////// Text Ghost Template ///////// Menu Processing Dictionary ///////// copyright (C) 2002 umeici. //**** Expand main menu ************************************************************* //---- Expand main menu --------------------------------------------------------------- OpenMenu { "\0\s[0]" -- "Yes、yes" "\s[6]Hmm?What do you want?" "Opening the menu。" -- "\n\n/ \q[Talk something,AITALK]\n/ \q[Talk frequency adjustment,TALKINTERVAL]\n\n/ \q[FAQ,FAQ]\n/ \q[Mode change,MODEC]\n/ \q[Security hole check,SEC]\n/ \q[Cancel,CANCEL]\e" } //**** Menu item selection ***************************************************************** //---- OnChoiceSelect event ----------------------------------------------------------- OnChoiceSelect { //---- Main menu if reference0 == "MENUMAIN" { "\0\s[0]" -- "This is the main menu。" -- "\n\n/ \q[Say something,AITALK]\n/ \q[Talk frequency adjustment,TALKINTERVAL]\n\n/ \q[FAQ,FAQ]\n/ \q[Mode,MODEC]\n/ \q[Cancel,CANCEL]\e" } elseif reference0 == "AITALK" { //---- Explicitly instruct AI talk to start OnAiTalk } elseif reference0 == "TALKINTERVAL" { //---- Adjusting talk frequency "\0\s[0]How much is good?\n\n/ \q[Uninterrupted,TALKMAX]\n/ \q[Early,TALKHIGH]\n/ \q[Normal,TALKNORMAL]\n/ \q[Quiet,TALKPOOR]\n/ \q[Shut up,TALKNONE]\e" } elseif reference0 == "FAQ" { "\0\s[0]This is FAQ。\n\n\w1\1\s[10]Anyway, this is a FAQ。/ \0\q[The button on the top right of the window is acting up,FONT]\n/ \q[Which is better, Pentium or Athlon?,PVA]\n/ \q[I want to add a video card,NOTEVGA]\n/ \q[My IP is being removed,IPNUKARE]\n/ \q[My IP is being removed (part 2),IPNUKE]\n\n/ \q[Cancel,CANCEL]\n/ \e" } //--- FAQ contents //--- Font cache corruption elseif reference0 == "FONT" { "%fontc\e" } //--- Pentium VS Athlon elseif reference0 == "PVA" { "%intelamd\e" } //--- Video card in laptop elseif reference0 == "NOTEVGA" { "%notevideo\e" } elseif reference0 == "IPNUKARE" { "%ipsteal\e" } elseif reference0 == "IPNUKE" { "%ipdanger\e" } //--- FAQ ends here elseif reference0 == "COMMUNICATEOPEN" { //---- Communicate box open "\0\s[0]Yes。\![open,communicatebox]\e" } elseif reference0 == "CANCEL" { //---- Cancelled "\0\s[0]Hmm\e" "\0\s[4]‥\w6‥\w6ughー。\e" } //---- Talk frequency elseif reference0 == "TALKMAX" { //---- Talk loudly (45 second intervals) aitalkinterval = 45 "\0\s[0]Hmm、you keep talking。\1You look tired\e" } elseif reference0 == "TALKHIGH" { //---- Talk a lot (90 seconds) aitalkinterval = 90 "\0\s[0]Understood } elseif reference0 == "TALKNORMAL" { //---- Talk normally (3 minute intervals) aitalkinterval = 180 "\0\s[0]What is normal?\1Apparently 3 minutes is the standard\e" } elseif reference0 == "TALKPOOR" { //---- Talk quietly (6 minute intervals) aitalkinterval = 360 "\0\s[0]Be ladylike?\1That doesn't suit me。\e" } elseif reference0 == "TALKNONE" { //---- Don't talk aitalkinterval = 0 "\0\s[0]What is the purpose of our existence?\1Maybe we're doing some work。\e" } elseif reference0 == "SEC" { //----Security check "\0\s[5]It doesn't have such a useful function。\w9\1\s[10]If that's the case、don't create such an item。\e" "\0\s[0]No matter how strong it is, it's powerless against Trojan horses。\w9\1\s[10]If you invite it in yourself\e" "\0\s[0]Don't set drives to be shared if you don't need to。\w9\1\s[10]Tweak the sharing permissions\e" "\0\s[0]Oh、sorry。I just triggered %virus。\w9\1\s[10]That's a lie\w9\w3\0\n\n\s[5]You might actually be infected?\w9\1\n\n………\e" "\0\s[0]Outlook Express Harm\w9\1\s[10]……………\e" } elseif reference0 == "MODEC" { if talkmode == 10 { talkmode = 0 "\0\s[0]Return talk mode to normal。\e" } else { talkmode = 10 "\0\s[0]トークモード┃━┏┃発動\e" } } //---- Headlines elseif reference0 == "HEADLINECANCEL" { //---- Headline "\0\s[0]Yes。\e" } } //---- Menu selection timeout --------------------------------------------------------- OnChoiceTimeout { "\0\s[0]Timeout。\e" }