Subversion Repository Public Repository

Nextrek

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
1001
1002
1003
1004
[_tb_system_call storage=system/_002_ConvocaGwendoline_001_Ricatto.ks]

[cm  ]
[tb_ptext_hide  time="0"  ]
[chara_hide_all  time="0"  wait="true"  ]
[tb_hide_message_window  ]
[tb_image_hide  time="0"  ]
[bg  time="0"  method="crossfade"  storage="_StanzeBG/UfficioPresideBack01.png"  ]
[chara_show  name="Gwendoline"  time="1000"  wait="true"  storage="chara/5/Imbarazzo.png"  width="1323"  height="1986"  left="330"  top="13"  reflect="false"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
Professoress Dove, we need to talk about Francine's injury![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Sorpresa.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Oh... Sure... It's been something terrible, poor Francine...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Sorriso.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
But fortunately now she's ok...[p]
Professoress Drala gave her an healing potion and...[p]
I was very happy when I saw...[p]
#&[f.Nome]
SHUT UP IMMEDIATELY!!![p]
What the fuck are you smiling???[p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Sorpresa02.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Uh... What...?[p]
I don't understand...[p]
#&[f.Nome]
What??? What don't you understand???[p]
Maybe the fact you were killing an innocent student in this academy??[p]
Maybe the fact a teacher... A person who should protect and keep student safe...[p]
Has gone so near to kill one of them???[p]
Maybe the most vulnerable one????[p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Imbarazzo.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Oh my god... I'm so sorry...[p]
But I really couldn't...[p]
#&[f.Nome]
WHAT YOU'VE DONE IS TERRIBLE!!![p]
HOW CAN I PROTECT YOU FROM THE MAGE'S WORLD COUNCIL???[p]
...[p]
......[p]
.........[p]
THEY WANT TO FIRE YOU!!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/RabbiaMax.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
WHAAAAAT???[p]
I never failed before in teaching and assisting student in my whole life!!![p]
And it wasn't my fault...[p]
#&[f.Nome]
I know... I know...[p]
Something strange happened...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Rabbia02.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
SURE!!!![p]
That explosion...[p]
Was really... Impossible!!![p]
#&[f.Nome]
I supposed so...[p]
I fear someone is trying to sabotage our school![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Imbarazzo.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
OH MY!!![p]
I can't even believe it!!![p]
#&[f.Nome]
Please, don't tell to anyone!!![p]
We must cooperate to find out the truth and protect our students!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Rabbia.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
SURE! You can count on me, Sir!!![p]
Ask me for every need!!![p]
I would do EVERYTHING to protect this school and its students!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline<1"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.RicattoGwendoline=1"  name="RicattoGwendoline"  cmd="="  op="t"  val="1"  val_2="undefined"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*FIneDiscorso"  text="ENOUGH&nbsp;FOR&nbsp;THE&nbsp;MOMENT..."  x="610"  y="20"  width="600"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*Ricatto01"  text="BLACKMAIL&nbsp;HER!"  x="610"  y="80"  width="600"  ]
[s  ]
*FIneDiscorso

[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
You can go now!![p]
I will call you when I'll need![p]
[_tb_end_text]

[tb_hide_message_window  ]
[jump  storage="002_StanzaPreside_Pomeriggio.ks"  target=""  ]
[s  ]
*Ricatto01

[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
Unfortunately You can't help me...[p]
Because you must leave the academy right now![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Imbarazzo.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
WHAAAAT?[p]
Oh no, please!!![p]
This Academy is the most important thing in my whole life!!![p]
#&[f.Nome]
I guess... But they want you out from here as soon as possible!![p]
#GWENDOLINE
OH NO NO NO!!![p]
That's really terrible!!![p]
Can You... Can You help me in any way???[p]
#&[f.Nome]
Mmmm....[p]
I could...[p]
But this could be really dangerous for me...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Sorpresa02.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Oh please, Sir... I live just for my students!!![p]
I'm ready to do anything for them!!![p]
#&[f.Nome]
Mmm...[p]
I will protect you...[p]
Just for the moment![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[if exp="f.Trust<27"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.Trust+=1"  name="Trust"  cmd="+="  op="t"  val="1"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
YOUR TRUST LEVEL INCREASED BY 1![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Sorriso.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Oh thank you, Sir!!![p]
#&[f.Nome]
But it's terribly risky for me...[p]
I will do it, but I need something from you![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Flirt.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Oh, sure!!![p]
You have just to ask and I...[p]
#&[f.Nome]
SHOW ME YOUR SUPER BOOBS!!![p]
NOW!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/RabbiaMax.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
WHAT??? ARE YOU CRAZY???[p]
#&[f.Nome]
Mmm... In this case I suppose You will face the Mage's World Council all alone![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Rabbia02.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Are you blackmailing me???[p]
#&[f.Nome]
Uh... Blackmailing...[p]
That's the right word!!![p]
Thank you!!![p]
...[p]
Come on... It's BOOBS time!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Imbarazzo.png"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWEDOLINE
Uh...[p]
I suppose I must accept...[p]
For the goods of my students...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[if exp="f.CorruptionGwendoline<27"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.CorruptionGwendoline+=1"  name="CorruptionGwendoline"  cmd="+="  op="t"  val="1"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
GWENDOLINE'S CORRUPTION LEVEL INCREASED BY 1![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*Ricatto02"  text="SHOW&nbsp;ME&nbsp;YOUR&nbsp;GIANT&nbsp;BOOBS!"  x="610"  y="20"  width="600"  ]
[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline>1"]
[_tb_end_tyrano_code]

[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*Ricatto03"  text="REMOVE&nbsp;YOUR&nbsp;CLOTHES!"  x="610"  y="80"  width="600"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline>2"]
[_tb_end_tyrano_code]

[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*RicattoToccaTette"  text="LET&nbsp;ME&nbsp;TOUCH&nbsp;THOSE&nbsp;BOMBS!"  x="610"  y="140"  width="600"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline>3"]
[_tb_end_tyrano_code]

[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*RicattoTitjob"  text="I&nbsp;WANT&nbsp;A&nbsp;TITJOB!!!"  x="610"  y="200"  width="600"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[s  ]
*Ricatto02

[tb_replay_start  ]
[cm  ]
[chara_hide_all  time="0"  wait="true"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G01.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G02.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G03.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G05.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Please be delicate, Sir...[p]
They are very sensitive these days...[p]
I'm on my period!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#STUDENTS IN THE HALL
Professoress Dove, are you there???[p]
Please come immediately!!![p]
MBANGA IS EATING LIZARD'S EGGS AGAIN!!!![p]
#&[f.Nome]
SHIT!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G09.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
GO NOW!!![p]
But I'll call you again!!![p]
And we'll go further with those giant boobs!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G07.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G10.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Sigh...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_replay  id="RicattoGwendoline01"  ]
[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline<2"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.RicattoGwendoline=2"  name="RicattoGwendoline"  cmd="="  op="t"  val="2"  val_2="undefined"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[jump  storage="002_StanzaPreside_Pomeriggio.ks"  target=""  ]
[s  ]
*Ricatto03

[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
It's time to show me those giant boobs with no clothes on![p]
[_tb_end_text]

[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/RabbiaMax.png"  ]
[tb_start_text mode=1 ]
#GWENDOLINE
WHAAAAT?[p]
Are you crazy?[p]
[_tb_end_text]

[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Rabbia02.png"  ]
[tb_start_text mode=1 ]
#GWENDOLINE
I won't allow you to rape me![p]
I've always been a...[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
OH SHIT!!![p]
SHUT UP STUPID BITCH!!![p]
How can you not understand your position??[p]
[_tb_end_text]

[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Sorpresa02.png"  ]
[tb_start_text mode=1 ]
#&[f.Nome]
You are still here in this university just for the fact I covered you!!![p]
Just a word from me and World Mage Council will fire you so quick that your giant boobs will explode![p]
[_tb_end_text]

[chara_mod  name="Gwendoline"  time="600"  cross="true"  storage="chara/5/Rabbia.png"  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Sigh...[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
And now close that fucking stupid mouth and show me those fucking hot boobs![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
Fuck...[p]
OK...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[chara_hide_all  time="1000"  wait="true"  ]
[tb_start_tyrano_code]
[if exp="f.Trust>5"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.Trust-=5"  name="Trust"  cmd="-="  op="t"  val="5"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
YOUR TRUST LEVEL DECREASED BY 5![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

*ReplayTettoneGwen

[tb_replay_start  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G10.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G11.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
YEAH!!![p]
I wanted this since my arrival!!![p]
(And you players too, right?)[p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G13b.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Oh what a shame...[p]
Oh, so sad...[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
AH AH AH!!![p]
And this is just the beginning!![p]
You can consider it... "OUR GAME"![p]
"OUR HOT GAME"! AH AH AH AH!!![p]
See you next time, Professoress Dove![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_replay  id="ReplayTettoneGwen"  ]
[tb_start_tyrano_code]
[if exp="f.CorruptionGwendoline<38"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.CorruptionGwendoline+=2"  name="CorruptionGwendoline"  cmd="+="  op="t"  val="2"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
GWENDOLINE'S CORRUPTION LEVEL INCREASED BY 2![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[l  ]
[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline<3"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.RicattoGwendoline=3"  name="RicattoGwendoline"  cmd="="  op="t"  val="3"  val_2="undefined"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[jump  storage="002_StanzaPreside_Pomeriggio.ks"  target=""  ]
[s  ]
*RicattoToccaTette

[tb_replay_start  ]
[cm  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G13b.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Sigh...[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
WOW!!! Those giant boobs!!![p]
I love them!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G16.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Please... Stop blackmailing me...[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
Oh don't worry... I will stop...[p]
One day...[p]
But for the moment... You must obey YOUR MASTER!!! AH AH AH!!![p]
And your master wants more!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G14.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G15.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G16.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G14.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G15.jpg"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*Toccale"  text="TIME&nbsp;TO&nbsp;TOUCH&nbsp;THEM"  x="610"  y="20"  width="600"  ]
[s  ]
*Toccale

[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G19b.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
I've been waiting for this moment since my first day here!!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
Uh...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G17.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G18.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G17.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G18.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G17.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G18.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
They are so... HARD!!!![p]
This should be A KIND OF MAGIC!!! AH AH AH AH!!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
Sigh...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
*TopToccaTette

[cm  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G21.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G22.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G21.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G22.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G21.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G22.jpg"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*TopToccaTette"  text="AGAIN!!"  x="610"  y="20"  width="600"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*FineToccaTette"  text="ENOUGH..."  x="610"  y="80"  width="600"  ]
[s  ]
*FineToccaTette

[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G19b.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Why...? WHY???[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
Oh, you know why, Gwendoline...[p]
Because I'm you MASTER now!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
No... I mean...[p]
If you are using me all this violence...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G20.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Why I like it so much???[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
WHAAAAAT????[p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_replay  id="RicattoToccaTette"  ]
[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline<4"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.RicattoGwendoline=4"  name="RicattoGwendoline"  cmd="="  op="t"  val="4"  val_2="undefined"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[tb_start_tyrano_code]
[if exp="f.CorruptionGwendoline<42"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.CorruptionGwendoline+=3"  name="CorruptionGwendoline"  cmd="+="  op="t"  val="3"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
GWENDOLINE'S CORRUPTION LEVEL INCREASED BY 3![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[jump  storage="002_StanzaPreside_Pomeriggio.ks"  target=""  ]
[s  ]
*RicattoTitjob

[cm  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G13b.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Oh, Sir... I really don't know...[p]
You just forced me to show you my body 'till now...[p]
But... Touching your penis with my breasts... Maybe it's too much![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
SHIT![p]
(How can I force her to do it! I really want those boobs around my cock!!!)[p]
[_tb_end_text]

[tb_hide_message_window  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*Convincila"  text="TRY&nbsp;TO&nbsp;CONVINCE&nbsp;HER..."  x="610"  y="20"  width="600"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*Ricattala"  text="TRY&nbsp;TO&nbsp;BLACKMAIL&nbsp;HER..."  x="610"  y="80"  width="600"  ]
[s  ]
*Convincila

[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G18.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
Oh, come on, Gwendoline...[p]
You know that every time I asked for such a hot favour, You finally liked it...[p]

[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
What???[p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G17.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
You must admit it![p]
At the beginning you felt like raped... But then you loved it![p]
Because every woman wants to be a whore!!![p]
ADMIT IT!!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
Oh my!!![p]
... I must admit it!! [p]
I'm a whore![p]
YOUR WHORE!!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
It's time for my titjob then!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[if exp="f.CorruptionGwendoline<42"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.CorruptionGwendoline+=10"  name="CorruptionGwendoline"  cmd="+="  op="t"  val="10"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
GWENDOLINE'S CORRUPTION LEVEL INCREASED BY 10![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[jump  storage="002_ConvocaGwendoline_001_Ricatto.ks"  target="*Titjob"  ]
[s  ]
*Ricattala

[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G18.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
WHY??? Why are you forcing me to tell everything to the World Council??[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
What???[p]
Oh no, please!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/G19b.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
How can i stop myself in doing the right thing, and reporting your role in Francine's injury...?[p]
If you don't want to cooperate with me!!??[p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
Oh, asshole... You got me under your thumb![p]
OK, I will stroke your fucking cock with my breast![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
AH AH AH AH AH!!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[if exp="f.CorruptionGwendoline<42"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.CorruptionGwendoline+=1"  name="CorruptionGwendoline"  cmd="+="  op="t"  val="1"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
GWENDOLINE'S CORRUPTION LEVEL INCREASED BY 1![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

*Titjob

[cm  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob01.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob02.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
YEAH!!! They're... Splendid... Fantastic... Super!!![p]
I have no words for your magic boobs![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
Sigh...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob03.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
That's the way!!![p]
Embrace it in that warm nest!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
I don't know how to do it...[p]
I've never done it before![p]
[_tb_end_text]

[tb_hide_message_window  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*TopTitjob"  text="TAKE&nbsp;THEM&nbsp;SOFTLY&nbsp;IN&nbsp;YOUR&nbsp;HANDS..."  x="610"  y="20"  width="600"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*TopTitjob"  text="SLAM&nbsp;IT&nbsp;AMONG&nbsp;THOSE&nbsp;BOMBS!"  x="610"  y="80"  width="600"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*TopTitjob"  text="DON'T&nbsp;WORRY,&nbsp;EVERY&nbsp;WOMAN&nbsp;CAN&nbsp;DO&nbsp;IT..."  x="610"  y="140"  width="600"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*TopTitjob"  text="NO&nbsp;BULLSHIT,&nbsp;I&nbsp;KNOW&nbsp;YOU'VE&nbsp;DONE&nbsp;IT&nbsp;YET!"  x="610"  y="200"  width="600"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*TopTitjob"  text="SHUT&nbsp;UP,&nbsp;JUST&nbsp;DO&nbsp;IT!"  x="610"  y="260"  width="600"  ]
[s  ]
*TopTitjob

[tb_replay_start  ]
[cm  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob04.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob04.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob04.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob04.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob04.jpg"  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
OH SHIT!!! It's not easy to resist!!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#GWENDOLINE
Sigh![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_replay  id="TitjobGwendoline"  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*TopTitjob"  text="SLOW&nbsp;DOWN&nbsp;A&nbsp;BIT,&nbsp;PLEASE!!!"  x="1500"  y="20"  width="400"  height=""  _clickable_img=""  ]
[glink  color="black"  storage="002_ConvocaGwendoline_001_Ricatto.ks"  size="20"  target="*SborraTitjob"  text="CUM&nbsp;ON&nbsp;HER&nbsp;FACE!"  x="1500"  y="80"  width="400"  height=""  _clickable_img=""  ]
[s  ]
*SborraTitjob

[tb_replay_start  ]
[cm  ]
[bg  time="0"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[l  ]
[bg  time="0"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob06.jpg"  ]
[quake  time="300"  count="3"  hmax="10"  wait="true"  ]
[bg  time="500"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[l  ]
[bg  time="0"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob06.jpg"  ]
[quake  time="300"  count="3"  hmax="10"  wait="true"  ]
[bg  time="500"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[l  ]
[bg  time="0"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob06.jpg"  ]
[quake  time="300"  count="3"  hmax="10"  wait="true"  ]
[bg  time="500"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob05.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob07.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob08.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
Puff... Pant...[p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob09.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
NOW SWALLOW IT!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob07.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
WHAAAAAT???[p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_replay  id="RicattoTitjobSborro"  ]
[l  ]
[tb_start_tyrano_code]
[if exp="f.CorruptionGwendoline>41"]
[_tb_end_tyrano_code]

*GwendolineIngoia

[tb_replay_start  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob10.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
OK, SIR! I OBEY![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
YEAH!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob11.jpg"  ]
[l  ]
[bg  time="2000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob13.jpg"  ]
[l  ]
[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob14.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#&[f.Nome]
OH SHIT!!! THIS IS FUCKING AWESOME!!![p]
[_tb_end_text]

[tb_hide_message_window  ]
[tb_replay  id="GwendolineIngoia"  ]
[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline<6"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.RicattoGwendoline=6"  name="RicattoGwendoline"  cmd="="  op="t"  val="6"  val_2="undefined"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[tb_eval  exp="f.CorruptionGwendoline+=1"  name="CorruptionGwendoline"  cmd="+="  op="t"  val="1"  val_2="undefined"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#
GWENDOLINE'S CORRUPTION LEVEL INCREASED BY 1![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[jump  storage="002_StanzaPreside_Pomeriggio.ks"  target=""  ]
[s  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[bg  time="1000"  method="crossfade"  storage="RicattoGwendoline/GwenTitjob08.jpg"  ]
[tb_show_message_window  ]
[tb_start_text mode=1 ]
#GWENDOLINE
I feel not ready for this... Really...[p]
I'm so near to vomit!!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#&[f.Nome]
SHIT!!!![p]
[_tb_end_text]

[tb_start_text mode=1 ]
#
YOU NEED AT LEAST 42 IN GWENDOLINE'S CORRUPTION LEVEL TO FORCE HER TO SWALLOW![p]
[_tb_end_text]

[tb_hide_message_window  ]
[l  ]
[tb_start_tyrano_code]
[if exp="f.RicattoGwendoline<5"]
[_tb_end_tyrano_code]

[tb_eval  exp="f.RicattoGwendoline=5"  name="RicattoGwendoline"  cmd="="  op="t"  val="5"  val_2="undefined"  ]
[tb_start_tyrano_code]
[endif]
[_tb_end_tyrano_code]

[jump  storage="002_StanzaPreside_Pomeriggio.ks"  target=""  ]
[s  ]

Commits for Nextrek/Teen_Witches_Academy/Teen_Witches_Academy_v0.0_ITA/data/scenario/002_ConvocaGwendoline_001_Ricatto.ks

Diff revisions: vs.
Revision Author Commited Message
1466 Diff Diff FMMortaroli picture FMMortaroli Fri 23 Oct, 2020 13:21:11 +0000
1465 Diff Diff FMMortaroli picture FMMortaroli Wed 21 Oct, 2020 16:00:19 +0000
1460 Diff Diff FMMortaroli picture FMMortaroli Sat 05 Sep, 2020 01:04:38 +0000
1421 Diff Diff FMMortaroli picture FMMortaroli Sat 23 May, 2020 23:57:55 +0000
1420 FMMortaroli picture FMMortaroli Sat 23 May, 2020 00:04:10 +0000