-
Notifications
You must be signed in to change notification settings - Fork 3
/
DIALOUGE.CON
3483 lines (2898 loc) · 97 KB
/
DIALOUGE.CON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
state pause-dialouge-box
setvar digy 96 state digz32768 state pal0
setvar digx 32 setvar tilenum 8171 state rs
setvar digx 184 setvar tilenum 8173 state rs
setvar MISCARRAYID 61 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // dialouge-picnum
setvar digx 32 setvarvar tilenum MISCARRAYID_AMOUNTTEMP state rs
setvar textscale 49152 setvar tilenum 2822 setvar pal 20 state digx320 setvar digy 74 setvar temp 1031 state gtz
setvar digx 140 state pal0
setvar digy 82 setvar temp 1025 state gtz
addvar digy 6 setvar temp 1026 state gtz
addvar digy 6 setvar temp 1027 state gtz
addvar digy 6 setvar temp 1028 state gtz
addvar digy 6 setvar temp 1029 state gtz
addvar digy 6 setvar temp 1030 state gtz
ends
state dialouge-sounds
ifvare CHARACTERSELECTED? 8 // Lisa
{
stopsound LISA_PAUSEDGAME1
stopsound LISA_PAUSEDGAME2
stopsound LISA_PAUSEDGAME3
stopsound LISA_PAUSEDGAME4
stopsound LISA_PAUSEDGAME5
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0 globalsound LISA_PAUSEDGAME1
ifvare MISCARRAYID_AMOUNTTEMP 1 globalsound LISA_PAUSEDGAME2
ifvare MISCARRAYID_AMOUNTTEMP 2 globalsound LISA_PAUSEDGAME3
ifvare MISCARRAYID_AMOUNTTEMP 3 globalsound LISA_PAUSEDGAME4
ifvare MISCARRAYID_AMOUNTTEMP 4 globalsound LISA_PAUSEDGAME5
}
ifvare CHARACTERSELECTED? 15 // Maken
{
stopsound MAKEN_PAUSEDGAME1
stopsound MAKEN_PAUSEDGAME2
stopsound MAKEN_PAUSEDGAME3
stopsound MAKEN_PAUSEDGAME4
stopsound MAKEN_PAUSEDGAME5
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0 globalsound MAKEN_PAUSEDGAME1
ifvare MISCARRAYID_AMOUNTTEMP 1 globalsound MAKEN_PAUSEDGAME2
ifvare MISCARRAYID_AMOUNTTEMP 2 globalsound MAKEN_PAUSEDGAME3
ifvare MISCARRAYID_AMOUNTTEMP 3 globalsound MAKEN_PAUSEDGAME4
ifvare MISCARRAYID_AMOUNTTEMP 4 globalsound MAKEN_PAUSEDGAME5
}
ends
state dialouge-pausedgame
state orientation2
ifvare CHARACTERSELECTED? 1
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7936 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Duke
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Come back quickly before I kick your sorry
redefinequote 1026 ass!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 So, what the hell are you waiting for,
redefinequote 1026 Thanksgiving?!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 I hate sitting here on my ass because you
redefinequote 1026 have to "take a break". Friggin' pansy!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 At this rate, disco will have been back in
redefinequote 1026 style and then died off again by the time you
redefinequote 1027 get back!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 What the hell is taking you so long?!
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 2
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7937 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Jack
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 *sigh* Man, I hate all this waiting around!
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You know, I would like to have some of my
redefinequote 1026 summer vacation left over by the time this
redefinequote 1027 is done!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Hey man, wake up! This isn't the time to
redefinequote 1026 snooze on the job!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Come, I have aliens to kill before I sleep...
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You'd think someone like you would want to
redefinequote 1026 actually be considered a hero, but you're
redefinequote 1027 just waiting around like a lump!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 3
{
setvar MISCARRAYID 103 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // BUBSY-FORM?
ifvare MISCARRAYID_AMOUNTTEMP 0 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7938 }
ifvare MISCARRAYID_AMOUNTTEMP 1 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7962 }
// Quote 1031 = Name of the Speaker
redefinequote 1031 Bubsy
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You players always have to find a way to
redefinequote 1026 delay us hero-types, don't ya?
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Aw come on, I got a world to save, and you're
redefinequote 1026 over there just twiddling your thumbs!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 If you were this lazy 5 years ago, the
redefinequote 1026 Woolies would have already taken all your
redefinequote 1027 yarn by now!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Wow, my Amazitorium tour guide job was more
redefinequote 1026 interesting than you are right now!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Come on, I have a world to save, and more
redefinequote 1026 movies to star in!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 4
{
setvar MISCARRAYID 104 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP2 // AMI-FORM?
ifvare MISCARRAYID_AMOUNTTEMP2 0 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7939 } // dialouge-picnum
ifvare MISCARRAYID_AMOUNTTEMP2 1 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7963 } // dialouge-picnum
ifvare MISCARRAYID_AMOUNTTEMP2 2 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7966 } // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Ami
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Yeah, take all the time you need. It's not
redefinequote 1026 like I'm gonna go walk off on my own or
redefinequote 1027 anything like that. *Whistles innocently*
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 *Is reading a novel on her mini-computer*
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Don't get lost now. See you in a bit! *Smile*
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 *Is eating a small bolonga sandwich*
redefinequote 1026 Oh, I'm sorry. Did you want one of my
redefinequote 1027 sandwiches? Oh... yeah, you're the player
redefinequote 1028 so I can't actually give you one. *Chuckles*
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You do understand even someone like me has
redefinequote 1026 a limit to her patience, right?
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 5
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7940 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Higa
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 I am sitting here, getting really stiff!
redefinequote 1026 as in "Lo Wang want kick your ass" stiff!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 It not the same without Mr. Fly to entertain
redefinequote 1026 Lo Wang while he sit around!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Lo Wang just eat some sushi while wait for
redefinequote 1026 you to come back from your happy time!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 How about Lo Wang take a break and you wait
redefinequote 1026 on him instead?!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Lo Wang be 95-years-old by time you get back
redefinequote 1026 at this rate!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 6
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7941 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 ESSence
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 If you don't come back quickly, I'll burst
redefinequote 1026 out into song right here and humiliate your
redefinequote 1027 sorry ass!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You should thank your god or whoever you
redefinequote 1026 believe in that I'm not an Anfaciar, or you'd
redefinequote 1027 be in for a world of hurt!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You know, if I were you, I wouldn't leave a
redefinequote 1026 Medatarion waiting around for too long.
redefinequote 1027 could be very unhealthy for everyone else.
redefinequote 1028 *Glares*
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 I wonder, can I drive Duke insane if I sing
redefinequote 1026 "Stayin' Alive" while waiting on you to come
redefinequote 1027 back?
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 *In the middle of singing "What Is Love" by
redefinequote 1026 Hadaway*
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 7
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7942 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Ted
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Don't mind me, I'll just play some "Pong
redefinequote 1026 Solo" with Tori and the others while your
redefinequote 1027 off doing whatever you're doing...
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Wow, this is taking a bit long for you to get
redefinequote 1026 back. What exactly are you doing?
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Don't be gone too long! Don't wanna find an
redefinequote 1026 explosive under your seat when you come
redefinequote 1027 back, do you?
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Wait a second, am I actually breaking the
redefinequote 1026 fourth wall by talking to you right now?
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Come back soon, because I don't like to just
redefinequote 1026 sit around frozen in place!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 8
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7943 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Lisa
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Hey, you take all the time you need. In the
redefinequote 1026 meantime I'm going to conceive some new tech
redefinequote 1027 for us... and I don't mean ^20you^0, to use.
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 *sigh* You know, maybe if I offer you a few
redefinequote 1026 thousand dollars you'd get off your lazy
redefinequote 1027 ass and continue this.
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Things to do, places to go? Do us a favor
redefinequote 1026 then: Shut the game off instead of pausing
redefinequote 1027 it like this. I speak for most of us when I say
redefinequote 1028 we don't like to just stand here for hours at
redefinequote 1029 a time!
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You know, everyone tells me the world is in
redefinequote 1026 the balance, but yet you're here taking a
redefinequote 1027 coffee break in the middle of important
redefinequote 1028 affairs! Do you really care about your world
redefinequote 1029 or not?!
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Ted's right! I think we are breaking the
redefinequote 1026 fourth wall when we talk to you. But it's
redefinequote 1027 just so fun! *smirks*
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 9
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7944 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Cybanis
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Just for your information, we Cycloidians
redefinequote 1026 aren't the most patient species in the
redefinequote 1027 universe. You would do well to come back as
redefinequote 1028 soon as you can...
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Hurry up before that clown ESSence drives
redefinequote 1026 me bat-shit insane with his damn singing!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 I crave battle! Hurry up and get back here!
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Cycloidians are warriors graced in combat,
redefinequote 1026 not philosophers with their noses in books!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Well, this is what I save roasted Gamarah
redefinequote 1026 for! and no, you can't have any. Even if I
redefinequote 1027 wanted you to have some, you're just the
redefinequote 1028 player, and I couldn't send any to you
redefinequote 1029 anyways. *razz*
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 10
{
setvar MISCARRAYID 110 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP2 // NETHRA-FORM?
ifvare MISCARRAYID_AMOUNTTEMP2 0
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7945 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Nethra
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Blah, having to sit here is very depressing.
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Please hurry back. We have a crisis to solve
redefinequote 1026 before we sleep.
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Stop holding me up, before I decide to become
redefinequote 1026 a "Royal Pain" in your ass!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 My claws starting to dull. You're gonna
redefinequote 1026 have to help me sharpen them when you get
redefinequote 1027 back.
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 My kind are terrorizing your planet, so why
redefinequote 1026 in the nine hells are you just waiting there
redefinequote 1027 like a fool?!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare MISCARRAYID_AMOUNTTEMP2 1
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7964 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Christina
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 But I don't wanna stand around like a fool!
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Yeah, some first date this is... *glares*
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 This is even more boring than Algebra class!
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 I wish I could at least eat something while
redefinequote 1026 I wait on you to get back. *frown*
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You know what, no cheers for you, Mister
redefinequote 1026 Snorefest! *grumbles*
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
}
ifvare CHARACTERSELECTED? 11
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7946 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Paula
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Come back soon! I don't want to have to wait
redefinequote 1026 forever!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 You know, we hero-types do have lives of our
redefinequote 1026 own... we can't always wait hand on foot for
redefinequote 1027 you when you go off and forget about us.
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 I'm breaking the fourth wall? What fourth
redefinequote 1026 wall? *razz*
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Althought many consider me a very patient
redefinequote 1026 girl, I do have limits to how long I can wait
redefinequote 1027 for something to happen...
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 So, having fun out there, leaving us frozen
redefinequote 1026 in time? *glares*
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 12
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7947 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Lori
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Hey, can you bring me back some fish? *smiles*
redefinequote 1026
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 If you're gonna head out, go get us some food.
redefinequote 1026 Maybe the others won't be so mad at you then.
redefinequote 1027 *shifty eyes*
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 If you're gonna head out for a while, you
redefinequote 1026 should just shut the game off then. I can't
redefinequote 1027 say I wanna just stand here all frozen.
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Justice might be blind, but player is not
redefinequote 1026 active.
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Hey, I want to take a break too, but you don't
redefinequote 1026 see me slacking off at my job, do you?!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 13
{
setvar MISCARRAYID 113 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP2 // MINAKO-FORM?
ifvare MISCARRAYID_AMOUNTTEMP2 0 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7948 } // dialouge-picnum
ifvare MISCARRAYID_AMOUNTTEMP2 1 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7965 } // dialouge-picnum
ifvare MISCARRAYID_AMOUNTTEMP2 2 { setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7968 } // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Minako
setvar MISCARRAYID 54 getactorvar[MISCARRAYID].MISCARRAYID_AMOUNT MISCARRAYID_AMOUNTTEMP // pause-quote
ifvare MISCARRAYID_AMOUNTTEMP 0
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Maybe I should swallow my pride and sing
redefinequote 1026 songs just to annoy you. *smirks*
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 1
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 The soldier of Love and Justice does not
redefinequote 1026 wait on a foolish player, so make it quick!
redefinequote 1027
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 2
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 Make haste with what you're doing! Justice is
redefinequote 1026 waiting to be served to the alien scum who
redefinequote 1027 are attacking the Earth!
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 3
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 At the rate it's taking for you to come back
redefinequote 1026 I should just ask one of the aliens to shoot
redefinequote 1027 me and get it over with. *grumbles*
redefinequote 1028
redefinequote 1029
redefinequote 1030
}
else
ifvare MISCARRAYID_AMOUNTTEMP 4
{
// Quotes 1025-1030 are the six lines that can fit in the dialouge box
// 123456789012345678901234567890123456789 | 39 Characters per line
redefinequote 1025 If you bring me back some sausage patties,
redefinequote 1026 then you might be able to appease me from
redefinequote 1027 kicking your sorry butt halfway across
redefinequote 1028 Earth!
redefinequote 1029
redefinequote 1030
}
}
ifvare CHARACTERSELECTED? 14
{
ifvare PUBLICBETA? 0
{
setvar MISCARRAYID 61 setactorvar[MISCARRAYID].MISCARRAYID_AMOUNT 7957 // dialouge-picnum
// Quote 1031 = Name of the Speaker
redefinequote 1031 Naferia