-
Notifications
You must be signed in to change notification settings - Fork 0
/
SOFUVUTU.8xp
1278 lines (1278 loc) · 23 KB
/
SOFUVUTU.8xp
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
:DCS
"B8086677EEEE77B08B806677EEEE770B906677EE3333EE77096677EE3333EE779066EE3300330BEE0966EE33003300EE9077EE33333333EE0077EE33333333EE000077EE3333EE77000077EE3333EE7700667777EEEE770000667777EEEE7700006677EE77770000006677EE777700006677EE33777733006677EE3377773300
If 80>det([[20
Then
Disp "GET Doors CSE TO RUN THIS:","HTTP://DCS.CEMETECH.NET
Return
End
SetUpEditor
real(0,3,5,0
real(0,3,4,255,1
real(0,3,4,255,1
real(0,1,1
"SOUVUTU0
real(5,0,0
"rowSwap(SAVUVUTU→Str0
det(4
det(8
DelVar R1→A
If expr(sub(Str9,1,1
det(5
Repeat W and W≠3
For(W,0,1
real(0,3,4,17,0
real(4,2,3,0,0,248,0,0,0,21,8,0,20,16,0,21
" SORCERY OF UVUTU
real(6,0,8,17,26,33,0
real(6,0,8,16,29,33,0
real(4,2,2,0,0,248,0,0,16,17,152,16,18
"NEW GAME!LOAD GAME!HELP!EXIT!!v1.4
real(6,0,24,32,30,33,1
End
1→B
1→W
Repeat K=54
Repeat K or B
real(2,0,0→K
End
DelVar Brand
If K
Then
real(7,9,16,24+8W,8,8,17,1
real(7,9,16,24+8W,8,8,17,1
End
min(4,max(1,W+sum(DeltaList(K={4,1→W
real(4,0,16,24+8W,1,1,0,0,248,1,0,16
real(4,0,16,24+8W,1,1,0,0,248,1,0,16
End
If W=4
4.1→W
If W=3
Then
"rowSwap(SOUVUTUN→Str0
21
det(0
real(0,3,4,17,1
real(0,3,4,17,1
Str9
real(6,0,0,0,30,33,1
real(6,0,0,0,30,33,1
Repeat real(2,0,0
End
"rowSwap(SAVUVUTU→Str0
End
0
det(0
If W=1 and θ>1
Then
real(0,3,4,17,1
real(0,3,4,17,1
"ERASE YOUR SAVE?!!YES!NO!
real(6,0,16,8,30,33,1
real(6,0,16,8,30,33,1
DelVar KgetKey
1→B
While not(K=21
Repeat K or B
getKey→K
End
DelVar Brand
If K or B
Then
real(7,9,8,16+8W,8,8,17,1
real(7,9,8,16+8W,8,8,17,1
End
min(2,max(1,W+sum(DeltaList(K={25,34→W
real(4,0,8,16+8W,1,1,0,0,248,1,0,16
real(4,0,8,16+8W,1,1,0,0,248,1,0,16
End
If W=2
DelVar W
End
End
0
det(0
If W=1 or (W=2 and θ=1
Then
For(Z,31,1,⁻1
Z
det(7
End
real(0,3,4,17,1
real(0,3,4,17,1
"NAME?
real(6,0,8,8,30,33,1
real(6,0,8,8,30,33,1
getKey
DelVar K" →Str9
Repeat K=21
Repeat Ans>40 and Ans<94 or max(Ans={21,23
getKey→K
End
Ans-20-5int(.1Ans
If 7>length(Str9) and 0<Ans and Ans<29
Then
Str9+sub("ABC DEFGHIJKLMNOPQRSTUVWXYZ",Ans,1→Str9
real(6,0,8,16,255,33,1
real(6,0,8,16,255,33,1
End
If K=23 and 1<length(Str9
Then
real(7,9,0+8length(Str9),16,8,8,17,1
real(7,9,0+8length(Str9),16,8,8,17,1
sub(Str9,1,length(Str9)-1→Str9
End
End
real(0,3,4,17,1
real(0,3,4,17,1
"CREATING FILE
real(6,0,28,52,30,33,1
real(6,0,28,52,30,33,1
If 1<length(Str9
sub(Str9,2,length(Str9)-1→Str9
If Str9="
"STEVO→Str9
DelVar Z
For(Z,1,32
If Z>1
sub(" 0010000500501.1032048040000000000001001000000000000000000000000000000000000000000000000{00000",3Z-2,3→Str9
Z
det(2
End
"rowSwap(SOUVUTUN→Str0
22
det(0
{17,40,73,106,138,204→L₁
real(9
For(Z,1,6
real(0,3,4,L₁(Z),1
real(0,3,4,L₁(Z),1
End
{171,139,106,74→L₁
For(Z,1,4
Str9
real(6,0,0,0,L₁(Z),47,1
real(6,0,0,0,L₁(Z),47,1
End
Repeat real(2,0,0
End
"rowSwap(SAVUVUTU→Str0
End
If W<3
Then
real(0,3,4,17,0
"LOADING
real(6,0,48,52,30,33,1
1
det(0
Str9→Str2
For(Z,1,14
Z+4(Z>8
det(0
expr(Str9
If Z=2
Ans→L
If Z=3
Ans→J
If Z=4
Ans→H
If Z=5
Ans→I
If Z=6
Ans→M
If Z=7
Ans→X
If Z=8
Ans→Y
If Z=9
Ans→A
If Z=10
A+.01Ans→A
If Z=11
Ans→C
If Z=12
Ans→D
If Z=13
Ans→Q
If Z=14
Ans→F
End
{0,0,0,0→L₄
For(Z,9,12
Z
det(0
expr(Str9→L₄(Z-8
End
31
det(0
expr(Str9→L₆
21→dim(L₆
{1→L₁
"rowSwap(SOUVUTUN→Str0
2
det(0
Str9→Str5
"rowSwap(SAVUVUTU→Str0
End
Lbl A
While not(W>2
If 1=L₁(1
Then
"SOUVUTUS
det(11,0,12
1→θ
prgmXTEMP012
det(11,1,12
End
real(3,0,0,0,20,1,0,0,19,14,1
real(3,0,0,0,20,1,0,0,19,14,1
If M=int(M
Then
For(θ,0,1
105-(D=32.048 and C=.1)+((M+C=1.22 and D=48.064) or (M+C=3.1 and D=104.056) or (M+C=4.22 and D=80.04) or (M+C=5.1 and D=80.096) or (M+C=6.32 and D=72.096) or (M+C=7.1 and D=104.056) or (M+C=8.1 and D=120.064))+2(M+C=3.1 and D=64.048)+3(M+C=4.1 and not(D=32.048))+4(M+C=7.12 or (M+C=7.1 and D=40.096))+5(M+C=7.1 and D=104.096
real(4,0,72,32,1,1,0,0,248,1,0,Ans
End
{.9→L₁
End
If max(M={1.33,2.33,3.22,4.31,5.32,6.31,7.13,8.33}) and F<int(M) or (M=7.23 and not(fPart(F
Then
2→S
If M=1.33
112.056→E
If M=2.33
88.056→E
If M=3.22
56.064→E
If M=4.31
80.048→E
If M=5.32
40.04→E
If M=6.31
96.056→E
If M=7.13 or M=7.23
112.056(M=7.13)+56.024(M=7.23→E
If M=8.33
88.056→E
real(4,0,int(E),1000fPart(E),1,1,0,0,248,1,0,71+3(M=7.23)+3int(M
real(4,0,int(E),1000fPart(E),1,1,0,0,248,1,0,71+3(M=7.23)+3int(M
End
If max(M={1.2,1.21,2.11,2.23,3.2,3.32,4.11,4.12,5.1,5.2,5.12,6.2,6.22,6.32,7.1,7.12,7.2,7.21,7.24,8.11,8.2,8.32}) and not(L₆(1+(M=1.21)+2(M=2.11)+3(M=2.23)+4(M=3.2)+5(M=3.32)+6(M=4.11)+7(M=4.12)+8(M=5.1)+9(M=5.2)+10(M=5.12)+11(M=6.2)+12(M=6.32)+13(M=7.1)+14(M=7.12)+15(M=7.2)+16(M=7.21)+17(M=7.24)+18(M=8.11)+19(M=8.2)+20(M=8.32
Then
1→S
If M=1.2
72.056→E
If M=1.21
136.088→E
If M=2.11
128.088→E
If M=2.23
64.088→E
If M=3.2
72.088→E
If M=3.32
24.088→E
If M=4.11
104.016→E
If M=4.12
24.04→E
If M=5.2
80.064→E
If M=5.1
112.016→E
If M=5.12
48.072→E
If M=6.2
16.04→E
If M=6.32
8.096→E
If M=7.1
40.032→E
If M=7.12
48.04→E
If M=7.2
32.08→E
If M=7.21
128.04→E
If M=7.24
40.056→E
If M=8.11
144.056→E
If M=8.2
24.08→E
If M=8.32
24.08→E
real(4,0,int(E),1000fPart(E),1,1,0,0,248,1,0,19
real(4,0,int(E),1000fPart(E),1,1,0,0,248,1,0,19
End
If not(H
I→H
For(θ,0,1
sub("PLAIN PLAINSDRAGON'S DENWORRY QUARRYWEST POLE RIVER LAKE UNDER CITY UPPER CITY BATTLEFIELD ",12int(M)-11,12)+" /
real(6,0,0,0,255,33,0
real(6,1,128-8(1+int(log(H))),0,230-6((H/I)≤.4),H,0
real(6,1,136,0,230,I,1
End
X→Z
Y→θ
DelVar BDelVar K
If 8=int(F
{.9→L₁
Repeat B or 1<L₁(1) or max(DeltaList(K={0,55,6,7,8
Repeat max(DeltaList(K={0,54,55,31,4,3,2,1
real(2,0,0→K
real(4,0,X,Y,1,1,0,0,248,1,0,17
real(4,0,Z,θ,1,1,0,0,248,0,0,real(3,2,Z,θ,20,1,0,0
X→Z
Y→θ
If K>1 and K<4
min(160,max(0,X+8sum(DeltaList(K={2,3→X
If K=1 or K=4
min(120,max(8,Y+8sum(DeltaList(K={4,1→Y
End
If K and K<5
P+1→P
If Str2="TEST" and K=31
{.9→L₁
real(3,2,X,Y,20,1,0,0→T
If max(Ans={8,9,10,11,12,13,14,15,16,23,24,27,28,29,127
Then
Z→X
θ→Y
End
If (X+.001Y=E and S=2 and int(F)<int(M)) or 10<P and fPart(M)>.1 and not(.9=L₁(1
Then
If (X+.001Y=E and S=2) or 1=real(8,3,11+5(U<int(F-1
DelVar P6→K
End
If X=152 or Y=112 or Y=8 or T=22 or not(X
8→K
If X+.001Y=E and S=1
Then
If not(L₆(1+(M=1.21)+2(M=2.11)+3(M=2.23)+4(M=3.2)+5(M=3.32)+6(M=4.11)+7(M=4.12)+8(M=5.1)+9(M=5.2)+10(M=5.12)+11(M=6.2)+12(M=6.32)+13(M=7.1)+14(M=7.12)+15(M=7.2)+16(M=7.21)+17(M=7.24)+18(M=8.11)+19(M=8.2)+20(M=8.32
Then
"rowSwap(SAVUVUTU→Str0
real(4,0,X,Y,1,1,0,0,248,1,0,int(M)-1
real(4,0,X,Y,1,1,0,0,248,1,0,int(M)-1
sub("99.198.197.196.197.299.297.396.296.397.496.499.397.596.597.699.496.696.899.497.797.8",4(1+(M=1.21)+2(M=2.11)+3(M=2.23)+4(M=3.2)+5(M=3.32)+6(M=4.11)+7(M=4.12)+8(M=5.1)+9(M=5.2)+10(M=5.12)+11(M=6.2)+12(M=6.32)+13(M=7.1)+14(M=7.12)+15(M=7.2)+16(M=7.21)+17(M=7.24)+18(M=8.11)+19(M=8.2)+20(M=8.32))-3,4→Str6
expr(Str6→L₁(1
For(W,0,1
real(7,9,0,68,160,52,181,0
real(7,8,0,68,160,52,1
End
"FOUND NEW "+sub("SwordStaffArmorDrink",5int(L₁(1)-95)-4,5)+" IN/THE CHEST!
real(6,0,2,70,0,47,1
real(6,0,2,70,0,47,1
For(W,30,19,⁻1
W
det(0
If inString("0",sub(Str9,1,1
W→B
End
If B
Then
1→L₆(1+(M=1.21)+2(M=2.11)+3(M=2.23)+4(M=3.2)+5(M=3.32)+6(M=4.11)+7(M=4.12)+8(M=5.1)+9(M=5.2)+10(M=5.12)+11(M=6.2)+12(M=6.32)+13(M=7.1)+14(M=7.12)+15(M=7.2)+16(M=7.21)+17(M=7.24)+18(M=8.11)+19(M=8.2)+20(M=8.32
Str6→Str9
B
det(1
" →Str6
{0,1→L₂
For(W,1,dim(L₆
{0,L₆(W→L₃
LinReg(ax+b) L₂,L₃,Y₁
Equ►String(Y₁,Str9
sub(Str9,1,length(Str9)-3→Str9
Str6+sub("{,",1+(W>1),1)+Str9→Str6
End
sub(Str6,2,length(Str6)-1→Str9
31
det(1
Repeat getKey
End
DelVar WDelVar Str6
Else
For(W,0,1
real(7,9,0,68,160,52,181,0
real(7,8,0,68,160,52,1
End
"MY INVENTORY IS TOO/FULL!
real(6,0,2,70,0,47,1
real(6,0,2,70,0,47,1
Repeat getKey
End
End
End
1→L₁(1
End
If K=54 and X=72 and Y=48 and M=int(M
7→K
End
If K=6
Then
"Up : →Str3
For(W,1,4
If not(L₄(W))
Str3+"
If L₄(W)
Str3+sub(Str5,5(L₄(W)-39)-4,5)
Ans+sub("!Left : !Down : !Right: !Clear: ",8W-7,8→Str3
End
Str3+"BACK→Str3
randInt(1+3int(M-1),2+3int(M-1→U
If X+.001Y=E and F<int(M) and max(M={1.33,2.33,3.22,4.31,5.32,6.31,7.13,7.23,8.33
3(M=7.23)+3int(M→U
14+int(U^1.22)+40(M=8.33 and U/3=int(U/3))+(5+1^int(M))(U/3=int(U/3→G
124(int(M)=1)+195(int(M)=2)+131(int(M)=3)+23(int(M)=4)+19(int(M)=5)+13(int(M)=6)+228(int(M)=7)+67(int(M)=8→T
real(8,1
real(0,3,4,0,1
For(W,0,160,2
real(8,2,W
End
For(W,0,1
real(0,3,4,T,0
real(4,2,20,0,0,248,0,0,60,7+int(M),8,60,int(M)-1,16,60,int(M)-1,24,60,int(M)-1,32,60,int(M)-1,40,60,int(M)-1,48,60,int(M)-1,56,60,int(M)-1,64,60,int(M)-1,72,60,int(M)-1,80,60,int(M)-1,88,60,int(M)-1,96,60,int(M)-1,104,60,int(M)-1,112,60,int(M)-1,120,60,int(M)-1,128,60,int(M)-1,136,60,int(M)-1,144,60,int(M)-1,152,60,7+int(M)
real(4,2,2,0,0,248,0,32,52,17,120,52,U+71
real(7,9,0,68,160,52,181,0
real(7,8,0,68,160,52,0
For(S,0,1
real(7,9,14+88S,18,52,27,181,0
real(7,8,14+88S,18,52,27,0
End
"HP HP
real(6,0,16,36,0,33,1
End
For(W,0,1
For(S,0,6
real(7,9,0,S,160,2,T+int(S/2)-3,0
End
real(9
End
For(W,0,1
Str2
If W
Then
"rowSwap(SOUVUTUN→Str0
1
det(0
sub(Str9,6U-5,6→Str4
End
real(6,0,16+88W,20,0,33,1
real(6,0,16+88W,20,0,33,1
"LV
real(6,0,16,28,0,33,1
real(6,0,16,28,0,33,1
real(6,1,32,28,0,L,1
real(6,1,32,28,0,L,1
real(6,1,32+88W,36,0,Hnot(W)+GW,1
real(6,1,32+88W,36,0,Hnot(W)+GW,1
End
DelVar Str9
If int(U/3)=U/3
Then
23+int(M
det(0
Str9
real(6,0,2,70,0,47,1
real(6,0,2,70,0,47,1
Repeat real(2,0,0
End
real(7,9,1,69,158,50,181,1
real(7,9,1,69,158,50,181,1
"rowSwap(SAVUVUTU→Str0
End
"Up TO ATTACK!Down TO BLOCK!Clear TO RUN
real(6,0,2,70,0,33,1
real(6,0,2,70,0,33,1
DelVar B
Repeat B or G<1 or H<1
Repeat K
real(2,0,0→K
End
If K=15
Then
DelVar Z38→V
If not(int(U/3)=U/3) and 3>randInt(1,U-100fPart(A
1→B
End
If K=4
Then
For(W,0,1
real(7,9,0,68,160,52,181,0
real(7,8,0,68,160,52,0
Str3
real(6,0,2,70,0,33,1
End
DelVar KDelVar Z
Repeat K=15 or (K<5 and K
real(2,0,0→K
If K=4 and L₄(1
L₄(1→V
If K=2 and L₄(2
L₄(2→V
If K=1 and L₄(3
L₄(3→V
If K=3 and L₄(4
L₄(4→V
End
real(7,9,1,69,158,50,181,1
real(7,9,1,69,158,50,181,1
If K=15 or not(V
Then
"Up TO ATTACK!Down TO BLOCK!Clear TO RUN
real(6,0,2,70,0,33,1
real(6,0,2,70,0,33,1
End
DelVar K
End
If K=1
DelVar Z55→V
If V or not(W
Then
.01int(6+(U^(1.13+.05(U/3=int(U/3→N
If not(V=38 or V=55
Then
DelVar Z0<randInt(⁻9,1+2(V>55)+5(V=54 or V=70→Z
If max(U={4,5})max(V={48,49,64,65}) or max(U={7,8,9})max(V={56,57}) or max(U={10,11,12})max(V={42,43,58,59}) or max(U={13,14,15})max(V={56,57}) or max(U={16,17,18})max(V={48,49,64,65}) or max(U={19,20,21})max(V={50,51,66,67}) or not(U=21)max(V={54,70
Z+.1→Z
If V<55
int(7+((A-1)1.2)^(1.3
If V>55
int(6+((A-1)1.2)^1.25
If int(V+1/2)=(V+1)/2
Then
If V<54
Ans+int(A^1.45
If V>56
Ans+int(A^1.5
End
If int(Z
int(1.5Ans
If fPart(Z
int(1.35Ans
If R
int(.8Ans
Ans+N→N
End
randInt(1,100fPart(A)-U→K
For(S,1,2)
If (S=1 and K≥0) or (S=2 and K<0) and H
Then
If V=55
3→R
For(W,0,1
real(7,9,1,69,158,50,181,1
End
If int((V+1)/2)=(V+1)/2 and not(V=55
Then
For(W,0,1
real(4,0,120,52,1,1,0,0,248,1,0,V-1
End
End
rand(10
For(W,0,1
real(4,0,120-88max(V={38,55}),52,1,1,0,0,248,1,0,V
End
If max(V={54,58,59,65,66,67,70
Then
real(0,3,2
rand(18
real(0,3,3
0
End
rand(24
0
If int(Z
Then
real(4,0,120,52,1,1,0,0,248,1,0,39
real(4,0,120,52,1,1,0,0,248,1,0,39
End
If fPart(Z
Then
real(4,0,120,52,1,1,0,0,248,1,0,37
real(4,0,120,52,1,1,0,0,248,1,0,37
End
For(W,0,1)
real(7,9,120-88(V=38 or V=55),52,8,8,T,0
real(4,0,120-88(V=38 or V=55),52,1,1,0,0,248,0,0,(U+71)not(V=38 or V=55)+17(V=38 or V=55)
If not(V=38 or V=55
real(6,1,66,78,0,int(N),0
If R
real(6,1,104,86-8(V=38 or V=55),0,R,0
Str2+" USED "+sub(Str3+"BLOCKRUN ",8+13(V=L₄(2))+26(V=L₄(3))+39(V=L₄(4) and not(V=55 or V=81))+56(V=55 or V=81)+61(V=38),5)+"!
If not(V=38 or V=55
Ans+"/DAMAGE:
If R
Ans+"/BLOCK TURNS:
real(6,0,2,70,0,47,1
End
G-int(N→G
If G<0
DelVar G
For(W,0,1
real(7,9,120,36,24,8,181,0
real(6,1,120,36,0,G,1
End
Repeat real(2,0,0
End
End
If (S=1 and K<0) or (S=2 and K≥0) and Gnot(B
Then
If R
Then
R-1→R
int(N)+.01int(50fPart(N→N
End
For(W,0,1
real(7,9,1,69,158,50,181,0
real(4,0,32,52,1,1,0,0,248,1,0,39+U-int(U/3)-(U>22)+17(U=22
End
rand(24
0
For(W,0,1
real(7,9,32,52,8,8,T,0
real(4,0,32,52,1,1,0,0,248,0,0,17
Str4+" USED "+sub(Str5,5(U-int(U/3)-(U>22)+17(U=22))-4,5)+"!/DAMAGE:
real(6,0,2,70,0,47,0
real(6,1,66,78,0,100fPart(N),1
End
H-100fPart(N→H
If H<0
DelVar H
For(W,0,1
real(7,9,32,36,24,8,181,0
real(6,1,32,36,0,H,1
End
Repeat real(2,0,0
End
End
End
DelVar K
If G and H and not(B
Then
For(W,0,1
real(7,9,1,69,158,50,181,0
"Up TO ATTACK!Down TO BLOCK!Clear TO RUN
real(6,0,2,70,0,33,1
End
DelVar V
End
DelVar ZDelVar N
End
If B or not(G and H
Then
For(W,0,1
real(7,9,1,69,158,50,181,0
"YOU "+sub("FLEDWON LOST",1+4not(G)+8not(H),4
If G
Ans+"
Ans+"THE BATTLE!
real(6,0,2,70,0,47,1
End
Repeat real(2,0,0
End
If not(H
Then
.1+int(M→M
32→X
48→Y
{1→L₁
End
If not(G
Then
J→S
23+3U+3int(M)(U/3=int(U/3))-4(L-U→B
J+Ans→J
If B<1
Then
S→J
0→B
End
fPart(J→S
int(J→J
If (L-U)<3
J+.004-.001(L-U→J
J+S→J
For(W,0,1
"EXP:
real(6,0,2,78,0,33,0
real(6,1,34,78,17,B,0
"GOLD:
real(6,0,2,86,0,33,0
real(6,1,42,86,17,1000fPart(J-S),0
"EXP TO LV UP:
real(6,0,2,94,0,33,0
real(6,1,114,94,17,50+(L-1)^1.75-int(J),0
"TOTAL GOLD:
real(6,0,2,102,0,33,0
real(6,1,98,102,17,1000fPart(J),1
End
Repeat real(2,0,0
End
If L<99 and 50+(L-1)^1.75≤int(J
Then
L+1→L
I+randInt(5+2not(fPart(U/3)=1/3),7+2not(fPart(U/3)=1/3)→I
If I>999
999→I
I→H
Q+1→Q
If not(randInt(0,4
Q+1→Q
fPart(J)+(int(int(J)-(50+(L-2)^1.75→J
For(W,0,1
real(7,9,1,69,158,50,181,0
"LEVEL UP!/LV.
real(6,0,2,70,0,47,0
real(6,1,34,78,0,L,1
End
Repeat real(2,0,0
End
1→B
Repeat K=8
For(W,0,1
real(7,9,1,69,158,50,181,0
"ATK:!SPD:!PTS=!DONE
real(6,0,10,70,0,33,1
End
For(W,1,3
real(6,1,50,62+8W,17,A(W=1)+100fPart(A)(W=2)+Q(W=3),1
real(6,1,50,62+8W,17,A(W=1)+100fPart(A)(W=2)+Q(W=3),1
End
1→W
Repeat K=54 and W=3
Repeat K or B
real(2,0,0→K
End
rand
If K or B
Then
real(7,9,2,62+8W+8(W=3),8,8,181,1
real(7,9,2,62+8W+8(W=3),8,8,181,1
If B
DelVar B
End
min(3,max(1,W+sum(DeltaList(K={4,1→W
real(4,0,2,62+8W+8(W=3),1,1,0,0,248,1,0,16
real(4,0,2,62+8W+8(W=3),1,1,0,0,248,1,0,16
If K=54 and W<3 and Q>0
Then
If (W=1 and int(A)<99) or (W=2 and 100fPart(A)<99
Then
If W=1
A+1→A
If W=2
A+.01→A
Q-1→Q
For(S,0,1
real(7,9,50,70+8(W=2),16,8,181,0
real(6,1,50,70+8(W=2),17,A(W=1)+100fPart(A)(W=2),1
End
End
real(7,9,50,86,16,16,181,1
real(7,9,50,86,16,16,181,1
real(6,1,50,86,17,Q,1
real(6,1,50,86,17,Q,1
End
End
If not(Q
Then
8→K
Else
real(7,9,1,69,158,50,181,1
real(7,9,1,69,158,50,181,1
"QUIT WITHOUT USING!ALL PTS?!2ND: YES!ANY KEY ELSE: NO
real(6,0,2,70,0,33,1
real(6,0,2,70,0,33,1
Repeat K
real(2,0,0→K
End
If K=54
8→K
End
End
1→W
End
real(7,9,1,69,158,50,181,1
real(7,9,1,69,158,50,181,1
End
If M=7.23 and not(G) and (U/3=int(U/3
F+.1→F
If M=8.33 and not(G) and (U/3=int(U/3
Then
fPart(F)+int(M→F
{35,4,46,22,30,29→L₁
real(9
For(Z,1,6
real(0,3,4,L₁(Z),1
real(0,3,4,L₁(Z),1
End
"rowSwap(SOUVUTUN→Str0
23
det(0
Str9
{27,25,17→L₁
For(Z,1,3
Str9
real(6,0,0,0,L₁(Z),47,1
real(6,0,0,0,L₁(Z),47,1
End
Repeat real(2,0,0
End
DelVar Str9"rowSwap(SAVUVUTU→Str0
DelVar B4→W
1→B
0
End
If int(U/3)=U/3 and not(M=7.23 or G or M=8.33
Then
"rowSwap(SAVUVUTU→Str0
fPart(F)+int(M→F
sub("LAVA STONEICE WATERBRICKGOLD MUD ",5int(F)-4,5)→Str6
For(W,5,4,⁻1
If " "=sub(Str6,W,1
sub(Str6,1,W-1→Str6
End
real(7,9,1,69,158,50,181,1
real(7,9,1,69,158,50,181,1
"THE "+Str4+" DROPPED/A "+Str6+" STONE!
real(6,0,2,70,0,47,1
real(6,0,2,70,0,47,1
If 1<int(M
Then
For(W,30,19,⁻1)
W
det(0
If inString("102",sub(Str9,1,3
W→B
End
End
If 1=int(M
Then
For(W,21,19,⁻1)
W
det(0
If inString("0",sub(Str9,1,1
W→B
End
End
"102."+sub("1234567",int(F),1→Str9
B
det(1
DelVar BDelVar W
End
DelVar V
End
End
DelVar RDelVar KDelVar Z
End
If K=8
Then
{1→L₁
real(4,0,X,Y,1,1,0,0,248,1,0,17
real(4,0,Z,θ,1,1,0,0,248,0,0,real(3,2,Z,θ,20,1,0,0
1→B
If X=152 or not(X
Then
M+.01-.02not(X or M=int(M→M
8+136(X=0→X
End
If Y=112 or Y=8
Then
M+.1-.2(Y=8 and not(M=int(M→M
16+88(Y=8→Y
End
If T=22
Then
If M=int(M
Then
M+C→M
DelVar Cint(D→X
1000fPart(D→Y
Else
fPart(M→C
int(M→M
X+.001(Y+8→D
72→X
96→Y
End
End
"rowSwap(SAVUVUTU→Str0
End
If K=7
Then
For(W,0,1
real(7,9,0,68,160,52,181,0
real(7,8,0,68,160,52,1
End
1→S
"???
If C=.1 and D=32.048 and M=int(M
Then
DelVar SI→H
"ARE YOU TIRED? REST/HERE./(HEALED)
End
If (M+C=1.22 and D=48.064) or (M+C=3.1 and D=104.056) or (M+C=4.22) or (M+C=5.1 and D=80.096) or M+C=6.32 or (M+C=7.1 and D=104.056) or (M+C=8.1 and D=120.064
Then
DelVar BDelVar S
For(W,4,1,⁻1
If L₄(W)=(38+2int(M-(M≥3)+(M+C>8.1
W→B
If L₄(W)=(54+2int(M-(M≥3)+(M+C>8.1
.1W→B
End
sub("SLICE or THORN.BURN or FLARE. CRACK or ROCK. CHILL or FROST.FLOW or STORM. WHACK or SMELL.STAB or DARK. ",12int(M-(M>2))-11,12
If B and .015≤fPart(J
"FOR 15 COINS I CAN/UPGRADE YOUR/"+Ans+"/2nd - YES/Any other key - NO
If not(B
"YOU DON'T SEEM TO/BE ABLE TO USE/"+Ans
If B and .015>fPart(J
"YOU NEED 15 COINS/TO UPGRADE YOUR/"+Ans
End
If S
Then
"rowSwap(SOUVUTUN→Str0
If M+C=1.1 and D=48.08
3
If M+C=1.1 and D=96.032
4
If M+C=1.1 and D=128.064
5
If M+C=1.32
6
If M+C=2.1 and D=96.056
7
If M+C=2.1 and D=96.088
8
If M+C=3.1 and D=64.048
9
If M+C=4.1 and D=112.056
10
If M+C=4.1 and D=120.032
11
If M+C=5.1 and D=88.056
12
If M+C=5.1 and D=136.056
13
If M+C=5.21 and D=32.056
14
If M+C=6.1 and D=88.064
15
If M+C=6.1 and D=48.088
16
If M+C=7.12
17
If M+C=7.1 and D=40.096
18
If M+C=7.1 and D=104.096
19
If M+C=8.1 and D=88.056
20
det(0
"rowSwap(SAVUVUTU→Str0
Str9
If M+C=8.1 and D=88.056
Ans+Str2+"!
End
real(6,0,2,70,0,47,1
real(6,0,2,70,0,47,1
DelVar Str9DelVar S
0→L₁(1
Repeat K
real(2,0,0→K
End
If K=54 and ((M+C=1.22 or (M+C=3.1 and D=104.056) or M+C=4.22 or (M+C=5.1 and D=80.096) or M+C=6.32 or (M+C=7.1 and D=104.056) or M+C=7.12 or (M+C=8.1 and D=120.064)) and B and .015≤fPart(J
Then
int(J)+(fPart(J)-.015-.015(int(B) and fPart(B→J
If int(B
1+L₄(int(B→L₄(int(B
If fPart(B
1+L₄(10fPart(B→L₄(10fPart(B
End
DelVar BDelVar W
End
If K=55
Then
1→O
Repeat O=1 and K=54 and (W>3 or W=1
Repeat (O<3 and W>3 or W=1) or (O=3 and W=15) or (O=4 and W=1
For(W,0,1
real(0,3,4,181,0
real(7,7,0,0,160,120,17,1
End