npc_pcre.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. prontera,152,181,5 script MouseJstr 763,{
  2. // hello
  3. Lquote0:
  4. npctalk "How do you do. Please state your problem.";
  5. end;
  6. // computer
  7. Lquote1:
  8. switch(rand(4)) {
  9. case 0: npctalk "Do computers worry you?"; break;
  10. case 1: npctalk "What do you think about machines?"; break;
  11. case 2: npctalk "Why do you mention computers?"; break;
  12. case 3: npctalk "What do you think machines have to do with your problem?"; break;
  13. }
  14. end;
  15. // name
  16. Lquote2:
  17. npctalk "I am not interested in names";
  18. end;
  19. // sorry
  20. Lquote3:
  21. switch(rand(3)) {
  22. case 0: npctalk "Please don't apologize"; break;
  23. case 1: npctalk "Apologies are not necessary"; break;
  24. case 2: npctalk "What feelings do you have when you apologize"; break;
  25. }
  26. end;
  27. // I remember $@p2$
  28. Lquote4:
  29. switch(rand(6)) {
  30. case 0: npctalk "Do you often think of "+$@p2$+"?"; break;
  31. case 1: npctalk "Does thinking of "+$@p2$+" bring anything else to mind?"; break;
  32. case 2: npctalk "What else do you remember?"; break;
  33. case 3: npctalk "Why do you recall "+$@p2$+" right now?"; break;
  34. case 4: npctalk "What in the present situation reminds you of "+$@p2$+"?"; break;
  35. case 5: npctalk "What is the connection between me and "+$@p2$+"?"; break;
  36. }
  37. end;
  38. // do you remember
  39. Lquote5:
  40. switch (rand(4)) {
  41. case 0: npctalk "Did you think I would forget "+$@p2$+" ?"; break;
  42. case 1: npctalk "Why do you think I should recall "+$@p2$+" now"; break;
  43. case 2: npctalk "What about "+$@p2$+""; break;
  44. case 3: npctalk "You mentioned "+$@p2$+""; break;
  45. }
  46. end;
  47. // if
  48. Lquote6:
  49. switch(rand(4)) {
  50. case 0: npctalk "Do you really think its likely that "+$@p2$+""; break;
  51. case 1: npctalk "Do you wish that "+$@p2$+"?"; break;
  52. case 2: npctalk "What do you think about "+$@p2$+"?"; break;
  53. case 3: npctalk "Really-- if "+$@p2$+"?"; break;
  54. }
  55. end;
  56. // i dreamt
  57. Lquote7:
  58. switch(rand(3)) {
  59. case 0: npctalk "Really-- "+$@p2$+""; break;
  60. case 1: npctalk "Have you ever fantasized "+$@p2$+" while you were awake?"; break;
  61. case 2: npctalk "Have you dreamt "+$@p2$+" before?"; break;
  62. }
  63. end;
  64. // dream about
  65. Lquote8:
  66. npctalk "How do you feel about "+$@p2$+" in reality?";
  67. end;
  68. // dream
  69. Lquote9:
  70. switch(rand(4)) {
  71. case 0: npctalk "What does this dream suggest to you?"; break;
  72. case 1: npctalk "Do you dream often?"; break;
  73. case 2: npctalk "What persons appear in your dreams?"; break;
  74. case 3: npctalk "Don't you believe that dream has to do with your problem?"; break;
  75. }
  76. end;
  77. // my mother
  78. Lquote10:
  79. switch(rand(2)) {
  80. case 0: npctalk "Who else in your family "+$@p2$+""; break;
  81. case 1: npctalk "Tell me more about your family"; break;
  82. }
  83. end;
  84. // my father
  85. Lquote11:
  86. switch(rand(3)) {
  87. case 0: npctalk "Your father"; break;
  88. case 1: npctalk "Does he influence you strongly?"; break;
  89. case 2: npctalk "What else comes to mind when you think of your father?"; break;
  90. }
  91. end;
  92. // I want
  93. Lquote12:
  94. switch(rand(3)) {
  95. case 0: npctalk "What would it mean if you got "+$@p2$+""; break;
  96. case 1: npctalk "Why do you want "+$@p2$+""; break;
  97. case 2: npctalk "Suppose you got "+$@p2$+" soon"; break;
  98. }
  99. end;
  100. // I am glad
  101. Lquote13:
  102. switch(rand(3)) {
  103. case 0: npctalk "How have I helped you to be "+$@p2$+""; break;
  104. case 1: npctalk "What makes you happy just now"; break;
  105. case 2: npctalk "Can you explain why you are suddenly "+$@p2$+""; break;
  106. }
  107. end;
  108. // I am sad
  109. Lquote14:
  110. switch(rand(2)) {
  111. case 0: npctalk "I am sorry to hear you are depressed"; break;
  112. case 1: npctalk "I'm sure its not pleasant to be sad"; break;
  113. }
  114. end;
  115. // $@p2 are like "+$@p3$+"
  116. Lquote15:
  117. npctalk "What resemblance do you see between "+$@p2$+" and "+$@p3$+"";
  118. end;
  119. // "+$@p2$+" is like "+$@p3$+"
  120. Lquote16:
  121. switch(rand(4)) {
  122. case 0: npctalk "In what way is it that "+$@p2$+" is like "+$@p3$+""; break;
  123. case 1: npctalk "What resemblance do you see?"; break;
  124. case 2: npctalk "Could there really be some connection?"; break;
  125. case 3: npctalk "How?"; break;
  126. }
  127. end;
  128. // alike
  129. Lquote17:
  130. switch(rand(2)) {
  131. case 0: npctalk "In what way?"; break;
  132. case 1: npctalk "What similarities are there?"; break;
  133. }
  134. end;
  135. // same
  136. Lquote18:
  137. npctalk "What other connections do you see?";
  138. end;
  139. // I was "+$@p2$+"
  140. Lquote19:
  141. switch(rand(3)) {
  142. case 0: npctalk "Were you really?"; break;
  143. case 1: npctalk "Perhaps I already knew you were "+$@p2$+""; break;
  144. case 2: npctalk "Why do you tell me you were "+$@p2$+" now?"; break;
  145. }
  146. end;
  147. // was I
  148. Lquote20:
  149. switch(rand(3)) {
  150. case 0: npctalk "What if you were "+$@p2$+" ?"; break;
  151. case 1: npctalk "Do you thin you were "+$@p2$+""; break;
  152. case 2: npctalk "What would it mean if you were "+$@p2$+""; break;
  153. }
  154. end;
  155. // I am
  156. Lquote21:
  157. switch(rand(2)) {
  158. case 0: npctalk "In what way are you "+$@p2$+""; break;
  159. case 1: npctalk "Do you want to be "+$@p2$+" ?"; break;
  160. }
  161. end;
  162. // am I
  163. Lquote22:
  164. switch(rand(4)) {
  165. case 0: npctalk "Do you believe you are "+$@p2$+""; break;
  166. case 1: npctalk "Would you want to be "+$@p2$+""; break;
  167. case 2: npctalk "You wish I would tell you you are "+$@p2$+""; break;
  168. case 3: npctalk "What would it mean if you were "+$@p2$+""; break;
  169. }
  170. end;
  171. // am
  172. Lquote23:
  173. switch(rand(2)) {
  174. case 0: npctalk "Why do you say AM?"; break;
  175. case 1: npctalk "I don't understand that"; break;
  176. }
  177. end;
  178. // are you
  179. Lquote24:
  180. switch(rand(3)) {
  181. case 0: npctalk "Why are you interested in whether I am "+$@p2$+" or not?"; break;
  182. case 1: npctalk "Would you prefer if I weren't "+$@p2$+""; break;
  183. case 2: npctalk "Perhaps I am "+$@p2$+" in your fantasies"; break;
  184. }
  185. end;
  186. // you are
  187. Lquote25:
  188. npctalk "What makes you think I am "+$@p2$+" ?";
  189. end;
  190. // because
  191. Lquote26:
  192. switch(rand(3)) {
  193. case 0: npctalk "Is that the real reason?"; break;
  194. case 1: npctalk "What other reasons might there be?"; break;
  195. case 2: npctalk "Does that reason seem to explain anything else?"; break;
  196. }
  197. end;
  198. // were you
  199. Lquote27:
  200. switch(rand(3)) {
  201. case 0: npctalk "Perhaps I was "+$@p2$+""; break;
  202. case 1: npctalk "What do you think?"; break;
  203. case 2: npctalk "What if I had been "+$@p2$+""; break;
  204. }
  205. end;
  206. // I can't
  207. Lquote28:
  208. switch(rand(2)) {
  209. case 0: npctalk "Maybe you could "+$@p3$+" now"; break;
  210. case 1: npctalk "What if you could "+$@p3$+" ?"; break;
  211. }
  212. end;
  213. // I feel
  214. Lquote29:
  215. npctalk "Do you often feel "+$@p2$+" ?";
  216. end;
  217. // I felt
  218. Lquote30:
  219. npctalk "What other feelings do you have?";
  220. end;
  221. // $@p1$ I $@p2$ you $@p3$
  222. Lquote31:
  223. npctalk "Perhaps in your fantasy we "+$@p3$+" each other?";
  224. end;
  225. // why don't you
  226. Lquote32:
  227. switch(rand(3)) {
  228. case 0: npctalk "Should you "+$@p3$+" yourself?"; break;
  229. case 1: npctalk "Do you believe I don't "+$@p3$+""; break;
  230. case 2: npctalk "Perhaps I will "+$@p3$+" in good time"; break;
  231. }
  232. end;
  233. // yes
  234. Lquote33:
  235. switch(rand(3)) {
  236. case 0: npctalk "You seem quite positive"; break;
  237. case 1: npctalk "You are sure?"; break;
  238. case 2: npctalk "I understand"; break;
  239. }
  240. end;
  241. // no
  242. Lquote34:
  243. switch(rand(3)) {
  244. case 0: npctalk "Why not?"; break;
  245. case 1: npctalk "You are being a bit negative"; break;
  246. case 2: npctalk "Are you saying NO just to be negative?"; break;
  247. }
  248. end;
  249. // someone
  250. Lquote35:
  251. npctalk "Can you be more specific?";
  252. end;
  253. // everyone
  254. Lquote36:
  255. switch(rand(4)) {
  256. case 0: npctalk "surely not everyone"; break;
  257. case 1: npctalk "Can you think of anyone in particular?"; break;
  258. case 2: npctalk "Who for example?"; break;
  259. case 3: npctalk "You are thinking of a special person?"; break;
  260. }
  261. end;
  262. // always
  263. Lquote37:
  264. switch(rand(4)) {
  265. case 0: npctalk "Can you think of a specific example?"; break;
  266. case 1: npctalk "When?"; break;
  267. case 2: npctalk "What incident are you thinking of?"; break;
  268. case 3: npctalk "Really-- always?"; break;
  269. }
  270. end;
  271. // what
  272. Lquote38:
  273. switch(rand(5)) {
  274. case 0: npctalk "Why do you ask?"; break;
  275. case 1: npctalk "Does that question interest you?"; break;
  276. case 2: npctalk "What is it you really want to know?"; break;
  277. case 3: npctalk "What do you think?"; break;
  278. case 4: npctalk "What comes to your mind when you ask that?"; break;
  279. }
  280. end;
  281. // perhaps
  282. Lquote39:
  283. npctalk "You do not seem quite certain";
  284. end;
  285. // are
  286. Lquote40:
  287. switch(rand(2)) {
  288. case 0: npctalk "Did you think they might not be "+$@p2$+""; break;
  289. case 1: npctalk "Possibly they are "+$@p2$; break;
  290. }
  291. end;
  292. // default
  293. Lquote41:
  294. switch(rand(6)) {
  295. case 0: npctalk "Very interesting"; break;
  296. case 1: npctalk "I am not sure I understand you fully"; break;
  297. case 2: npctalk "What does that suggest to you?"; break;
  298. case 3: npctalk "Please continue"; break;
  299. case 4: npctalk "Go on"; break;
  300. case 5: npctalk "Do you feel strongly about discussing such things?"; break;
  301. }
  302. end;
  303. OnInit:
  304. defpattern 1, "([^:]+):.*\\shello.*", "Lquote0";
  305. defpattern 1, "([^:]+):.*\\scomputer.*", "Lquote1";
  306. defpattern 1, "([^:]+):.*\\sname.*", "Lquote2";
  307. defpattern 1, "([^:]+):.*\\ssorry.*", "Lquote3";
  308. defpattern 1, "([^:]+):.*\\si\\s+remember\\s+(.*)", "Lquote4";
  309. defpattern 1, "([^:]+):.*\\sdo\\s+you\\s+remember\\s+(.*)", "Lquote5";
  310. defpattern 1, "([^:]+):.*\\sif\\s+(.*)", "Lquote6";
  311. defpattern 1, "([^:]+):.*\\si\\s+dreamt\\s+(.*)", "Lquote7";
  312. defpattern 1, "([^:]+):.*\\sdream\\s+about\\s+(.*)", "Lquote8";
  313. defpattern 1, "([^:]+):.*\\sdream\\s+(.*)", "Lquote9";
  314. defpattern 1, "([^:]+):.*\\smy\\s+mother\\s+(.*)", "Lquote10";
  315. defpattern 1, "([^:]+):.*\\smy\\s+father\\s+(.*)", "Lquote11";
  316. defpattern 1, "([^:]+):.*\\si\\s+want\\s+(.*)", "Lquote12";
  317. defpattern 1, "([^:]+):.*\\si\\s+am\\s+glad\\s+(.*)", "Lquote13";
  318. defpattern 1, "([^:]+):\\s+(.*)\\s+i\\s+am\\s+sad\\s+(.*)", "Lquote14";
  319. defpattern 1, "([^:]+):\\s+(.*)\\s+are\\s+like\\s+(.*)", "Lquote15";
  320. defpattern 1, "([^:]+):\\s+(.*)\\s+is\\s+like\\s+(.*)", "Lquote16";
  321. defpattern 1, "([^:]+):.*\\salike\\s+(.*)", "Lquote17";
  322. defpattern 1, "([^:]+):.*\\ssame\\s+(.*)", "Lquote18";
  323. defpattern 1, "([^:]+):.*\\si\\s+was\\s+(.*)", "Lquote19";
  324. defpattern 1, "([^:]+):.*\\swas\\s+i\\s+(.*)", "Lquote20";
  325. defpattern 1, "([^:]+):.*\\si\\s+am\\s+(.*)", "Lquote21";
  326. defpattern 1, "([^:]+):.*\\sam\\s+i\\s+(.*)", "Lquote22";
  327. defpattern 1, "([^:]+):.*\\sam\\s+(.*)", "Lquote23";
  328. defpattern 1, "([^:]+):.*\\sare\\s+you\\s+(.*)", "Lquote24";
  329. defpattern 1, "([^:]+):.*\\syou\\s+are\\s+(.*)", "Lquote25";
  330. defpattern 1, "([^:]+):.*\\sbecause\\s+(.*)", "Lquote26";
  331. defpattern 1, "([^:]+):.*\\swere\\s+you\\s+(.*)", "Lquote27";
  332. defpattern 1, "([^:]+):.*\\si\\s+(cant|can't|cannot)\\s+(.*)", "Lquote28";
  333. defpattern 1, "([^:]+):.*\\si\\s+feel\\s+(.*)", "Lquote29";
  334. defpattern 1, "([^:]+):.*\\si\\s+felt\\s+(.*)", "Lquote30";
  335. defpattern 1, "([^:]+):.*\\si\\s+(.*)\\s+you\\s+(.*)", "Lquote31";
  336. defpattern 1, "([^:]+):.*\\swhy\\s+(don't|dont)\\s+you\\s+(.*)", "Lquote32";
  337. defpattern 1, "([^:]+):.*\\syes\\s+(.*)", "Lquote33";
  338. defpattern 1, "([^:]+):.*\\sno\\s+(.*)", "Lquote34";
  339. defpattern 1, "([^:]+):.*\\ssomeone\\s+(.*)", "Lquote35";
  340. defpattern 1, "([^:]+):.*\\severyone\\s+(.*)", "Lquote36";
  341. defpattern 1, "([^:]+):.*\\salways\\s+(.*)", "Lquote37";
  342. defpattern 1, "([^:]+):.*\\swhat\\s+(.*)", "Lquote38";
  343. defpattern 1, "([^:]+):.*\\sperhaps\\s+(.*)", "Lquote39";
  344. defpattern 1, "([^:]+):.*\\sare\\s+(.*)", "Lquote40";
  345. defpattern 1, "([^:]+):(.*)", "Lquote41";
  346. activatepset 1;
  347. end;
  348. }