summaryrefslogtreecommitdiff
path: root/npc/pre-re/quests/skills/sage_skills.txt
blob: 1058bb6a823c24eda03305cba3d5e2d83ab2ef9b (plain) (blame)
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
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
//===== rAthena Script ======================================= 
//= Sage Skills Quests
//===== By: ================================================== 
//= Lupus, Reddozen
//===== Current Version: ===================================== 
//= 1.4
//===== Compatible With: ===================================== 
//= rAthena SVN
//===== Description: ========================================= 
//= [Aegis Conversion]
//= Quests for skills: Create Converter, Elemental Change
//===== Additional Comments: ================================= 
//= 1.4 Rescripted to Aegis 10.3 standards. [5511]
//============================================================

yuno_in03,176,24,3	script	Mischna	755,{
	if(BaseJob == Job_Sage) {
		if(SAG_SK == 100) {
			if(getskilllv("SA_ELEMENTFIRE") == 0 && getskilllv("SA_ELEMENTGROUND") == 0 && getskilllv("SA_ELEMENTWIND") == 0 && getskilllv("SA_ELEMENTWATER") == 0 && getskilllv("SA_CREATECON") == 0) {
				mes "[Mishuna]";
				mes "Ah, you must have";
				mes "forgotten what I taught";
				mes "you somehow. Perhaps";
				mes "you lost your copy of the";
				mes "skill scroll I gave you? No";
				mes "matter, I'll help you remember.";
				next;
				mes "[Mishuna]";
				mes "You'll be given the chance to";
				mes "choose which kind of ^FF0000Elemental";
				mes "Change^000000 skill that you want, even one that you didn't previously";
				mes "learn, so long as you fulfill";
				mes "the skill's requirements.";
				next;
				mes "[Mishuna]";
				mes "Keep in mind that once";
				mes "you learn your Elemental";
				mes "Change skill, you won't be";
				mes "able to change it. Now, which";
				mes "skill would you like to learn?";
				next;
				while(1) {
					switch(select("Fire Elemental Change:Earth Elemental Change:Wind Elemental Change:Water Elemental Change")) {
					case 1:
						if (getskilllv("SA_FLAMELAUNCHER") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Blaze^000000, the skill";
							mes "required for ^FF0000Fire Elemental";
							mes "Change^000000. You'll need to learn";
							mes "Endow Blaze or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Fire";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Fire Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTFIRE",1,0;
							skill "SA_CREATECON",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					case 2:
						if (getskilllv("SA_SEISMICWEAPON") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Quake^000000, the skill";
							mes "required for ^FF0000Earth Elemental";
							mes "Change^000000. You'll need to learn";
							mes "Endow Quake or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Earth";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Earth Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTGROUND",1,0;
							skill "SA_CREATECON",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					case 3:
						if (getskilllv("SA_LIGHTNINGLOADER") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Tornado^000000, the";
							mes "skill required for ^FF0000Wind Elemental Change^000000. You must learn Endow";
							mes "Tornado or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Wind";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Wind Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTWIND",1,0;
							skill "SA_CREATECON",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					case 4:
						if (getskilllv("SA_FROSTWEAPON") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Tsunami^000000, the";
							mes "skill required for ^FF0000Water Elemental Change^000000. You must learn Endow";
							mes "Tsunami or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Water";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Water Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTWATER",1,0;
							skill "SA_CREATECON",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					}
				}
			}
			else if(getskilllv("SA_ELEMENTFIRE") == 0 && getskilllv("SA_ELEMENTGROUND") == 0 && getskilllv("SA_ELEMENTWIND") == 0 && getskilllv("SA_ELEMENTWATER") == 0) {
				mes "[Mishuna]";
				mes "Ah, you must have";
				mes "forgotten what I taught";
				mes "you somehow. Perhaps";
				mes "you lost your copy of the";
				mes "skill scroll I gave you? No";
				mes "matter, I'll help you remember.";
				next;
				mes "[Mishuna]";
				mes "You'll be given the chance to";
				mes "choose which kind of ^FF0000Elemental";
				mes "Change^000000 skill that you want, even one that you didn't previously";
				mes "learn, so long as you fulfill";
				mes "the skill's requirements.";
				next;
				mes "[Mishuna]";
				mes "Keep in mind that once";
				mes "you learn your Elemental";
				mes "Change skill, you won't be";
				mes "able to change it. Now, which";
				mes "skill would you like to learn?";
				next;
				while(1) {
					switch(select("Fire Elemental Change:Earth Elemental Change:Wind Elemental Change:Water Elemental Change")) {
					case 1:
						if (getskilllv("SA_FLAMELAUNCHER") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Blaze^000000, the skill";
							mes "required for ^FF0000Fire Elemental";
							mes "Change^000000. You'll need to learn";
							mes "Endow Blaze or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Fire";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Fire Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTFIRE",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					case 2:
						if (getskilllv("SA_SEISMICWEAPON") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Quake^000000, the skill";
							mes "required for ^FF0000Earth Elemental";
							mes "Change^000000. You'll need to learn";
							mes "Endow Quake or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Earth";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Earth Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTGROUND",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					case 3:
						if (getskilllv("SA_LIGHTNINGLOADER") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Tornado^000000, the";
							mes "skill required for ^FF0000Wind Elemental Change^000000. You must learn Endow";
							mes "Tornado or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Wind";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Wind Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTWIND",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					case 4:
						if (getskilllv("SA_FROSTWEAPON") == 0) {
							mes "[Mishuna]";
							mes "I'm sorry, but you haven't";
							mes "learned ^FF0000Endow Tsunami^000000, the";
							mes "skill required for ^FF0000Water Elemental Change^000000. You must learn Endow";
							mes "Tsunami or select another";
							mes "Elemental Change skill.";
							next;
						}
						else {
							mes "[Mishuna]";
							mes "Very well, I shall";
							mes "teach you the ^FF0000Water";
							mes "Elemental Change^000000 skill";
							mes "and the ^FF0000Elemental Converter";
							mes "Creation skill^000000. Please remain";
							mes "still while I chant this spell.";
							next;
							mes "[Mishuna]";
							mes "%$#@!#$% Yap~~";
							specialeffect2 EF_RUWACH;
							next;
							mes "[Mishuna]";
							mes "Yap!";
							specialeffect2 EF_BRANDISHSPEAR;
							next;
							mes "^3355FFYou've successfully";
							mes "learned the Water Elemental";
							mes "Change skill and the Elemental";
							mes "Converter Creation skill.^000000";
							skill "SA_ELEMENTWATER",1,0;
							next;
							mes "[Mishuna]";
							mes "Ah, you've learned these";
							mes "skills as quickly as I thought";
							mes "you would. Very well then, ";
							mes "I hope you adeptly use these";
							mes "talents for the right purposes.";
							mes "Farewell for now, "+strcharinfo(0)+".";
							close;
						}
						break;
					}
				}
			}
			else if(getskilllv("SA_CREATECON") == 0) {
				mes "[Mishuna]";
				mes "Ah, you must have";
				mes "forgotten what I taught";
				mes "you somehow. Perhaps";
				mes "you lost your copy of the";
				mes "skill scroll I gave you? No";
				mes "matter, I'll help you remember.";
				next;
				mes "[Mishuna]";
				mes "Alright, I'm going";
				mes "to cast a spell that";
				mes "will help you remember";
				mes "the skills you forgot.";
				mes "Don't move, and try to";
				mes "stay as still as possible...";
				next;
				mes "[Mishuna]";
				mes "%$#@!#$% Yap~~";
				specialeffect2 EF_RUWACH;
				next;
				mes "[Mishuna]";
				mes "Yap!";
				specialeffect2 EF_BRANDISHSPEAR;
				next;
				mes "^3355FFYou successfully recalled";
				mes "the Elemental Coverter";
				mes "Creation skill and are";
				mes "able to use it again.^000000";
				skill "SA_CREATECON",1,0;
				next;
				mes "[Mishuna]";
				mes "Ah, you've learned these";
				mes "skills as quickly as I thought";
				mes "you would. Very well then, ";
				mes "I hope you adeptly use these";
				mes "talents for the right purposes.";
				mes "Farewell for now, "+strcharinfo(0)+".";
				close;
			}
			else {
				mes "[Mishuna]";
				mes "If you have any Sage or";
				mes "Scholar friends who haven't";
				mes "learned the skills from Sir";
				mes "Barmundt's scrolls, then";
				mes "please refer them to me.";
				next;
				mes "[Mishuna]";
				mes "I trust that you are";
				mes "finding that these";
				mes "element based skills";
				mes "are very useful in battle.";
				mes "Knowledge truly equates";
				mes "to power in the long run...";
				close;
			}
		}
		else if(SAG_SK == 0) {
			mes "[Mishuna]";
			mes "Good day, I'm Mishuna, one";
			mes "of the instructors here in the";
			mes "Schweicherbil Magic Academy.";
			mes "How may I be of service?";
			next;
			select("I seek new knowledge.");
			mes "[Mishuna]";
			mes "Ah, you must be "+strcharinfo(0)+".";
			mes "I've looked forward to meeting";
			mes "you. In the noble pursuit of";
			mes "knowledge, might I suggest";
			mes "reading the recently restored";
			mes "scrolls of Sir Barmundt?";
			next;
			mes "[Mishuna]";
			mes "Sir Barmundt's scrolls contain";
			mes "knowledge about the 4 elements,";
			mes "which are Fire, Water, Earth, and Wind. The knowledge of these";
			mes "scrolls can be applied in the";
			mes "use of 2 new Sage skills.";
			next;
			mes "[Mishuna]";
			mes "The first is called ^FF0000Elemental";
			mes "Change^000000, which enables you";
			mes "to change a monster's attribute";
			mes "according to the specific element^FFFFFF ^000000 of the Elemental Change skill";
			mes "that you have learned.";
			next;
			mes "[Mishuna]";
			mes "The second is called";
			mes "Elemental Converter Creation,";
			mes "which enables you to create";
			mes "converter items that are required^FFFFFF ^000000 to use the Elemental Change skill.";
			next;
			mes "[Mishuna]";
			mes "Although the knowledge of";
			mes "these two skills has been";
			mes "lost for years, we've finally";
			mes "been able to recover most";
			mes "of it. So, do you think you're";
			mes "ready to learn these skills?";
			next;
			if(select("Maybe later.:Yes, I am.") == 1) {
				mes "[Mishuna]";
				mes "Ah, you must be busy right";
				mes "now. No problem, just come";
				mes "back when you think you're";
				mes "ready to learn. Well then,";
				mes "farewell and have a good day~";
				close;
			}
			mes "[Mishuna]";
			mes "Very well, then. First, you";
			mes "must learn the Elemental";
			mes "Coverter Creation skill, which";
			mes "is essential to learning the";
			mes "Elemental Change skill.";
			next;
			mes "[Mishuna]";
			mes "Please bring the required";
			mes "materials so that we can";
			mes "construct a basic elemental";
			mes "converter in order for you to";
			mes "learn the skill. Let's see,";
			mes "you will need to bring...";
			next;
			mes "[Mishuna]";
			mes "^ff00007 Horns^000000,";
			mes "^ff000012 Rainbow Shells^000000,";
			mes "^ff000010 Snail's Shells^000000,";
			mes "^ff00004 Blank Scrolls^000000 and";
			mes "^ff000010 Scorpion Tails^000000.^000000";
			next;
			mes "[Mishuna]";
			mes "Alright, I shall be";
			mes "nexting here for your";
			mes "return. Remember that we";
			mes "need these items to create";
			mes "a converter so that you can^FFFFFF ^000000 learn the skill from my example...";
			set SAG_SK,1;
			close;
		}
		else if(SAG_SK == 1) {
			if (countitem(904) < 10 || countitem(947) < 7 || countitem(1013) < 12 || countitem(946) < 10 || countitem(7433) < 4) {
				mes "[Mishuna]";
				mes "Hm, you still haven't";
				mes "gathered all of the materials";
				mes "required to create an elemental";
				mes "coverter. Let me remind you";
				mes "what to bring so that you";
				mes "don't forget next time...";
				next;
				mes "[Mishuna]";
				mes "^ff00007 Horns^000000,";
				mes "^ff000012 Rainbow Shells^000000,";
				mes "^ff000010 Snail's Shells^000000,";
				mes "^ff00004 Blank Scrolls^000000 and";
				mes "^ff000010 Scorpion Tails^000000.^000000";
				next;
				mes "[Mishuna]";
				mes "Don't forget that we need";
				mes "all of these items to create";
				mes "a converter so that you can";
				mes "learn the Elemental Converter";
				mes "Creation skill by watching";
				mes "me demonstrate it for you.";
				close;
			}
			else {
				mes "[Mishuna]";
				mes "Great, you brought everything.";
				mes "Now, let me explain the skill.";
				mes "The skills you learn as a Sage";
				mes "determine what kind of elemental converters that you can craft.";
				next;
				mes "[Mishuna]";
				mes "The ^FF0000Endow Blaze^000000 skill enables";
				mes "you to create Fire elemental";
				mes "converters. The ^FF0000Endow Quake^000000";
				mes "skill enables the creation";
				mes "of Earth elemental converters.";
				next;
				mes "[Mishuna]";
				mes "^FF0000Endow Tornado^000000 enables";
				mes "the creation of Wind elemental";
				mes "converters, and ^FF0000Endow Tsunami^000000";
				mes "enables the creation of Water";
				mes "elemental converters. That";
				mes "all makes sense, right?";
				next;
				mes "[Mishuna]";
				mes "Now, your elemental coverter";
				mes "creation success rate depends";
				mes "on the level of the Endow Blaze, Endow Quake, Endow Tornado,";
				mes "or Endow Tsunami skills, and";
				mes "your abilities.";
				next;
				mes "[Mishuna]";
				mes "Now, please take this copy";
				mes "of Barmundt's scroll, and use";
				mes "it as a reference when you try";
				mes "to craft elemental converters";
				mes "when you use the Elemental";
				mes "Converter Creation skill.";
				next;
				mes "^3355FFYou have learned the";
				mes "Elemental Converter";
				mes "Creation skill by reviewing";
				mes "your copy of Barmundt's scroll.^000000";
				specialeffect2 EF_ABSORBSPIRITS;
				delitem 904,10; // Scorpion_Tail
				delitem 947,7; // Horn
				delitem 1013,12; // Rainbow_Shell
				delitem 946,10; // Snail's_Shell
				delitem 7433,4; // Blank_Scroll
				set SAG_SK,2;
				skill "SA_CREATECON",1,0;
				next;
				mes "[Mishuna]";
				mes "Wow, "+strcharinfo(0)+"!";
				mes "You learned that skill";
				mes "really quickly! No wonder";
				mes "people say that you're one";
				mes "of the best Sages around!";
				next;
				mes "[Mishuna]";
				mes "Now you're ready to";
				mes "learn the other skill,";
				mes "Elemental Change. Alright,";
				mes "I need to prepare a few things";
				mes "for this lesson, so we'll meet";
				mes "and discuss this later, okay?";
				close;
			}
		}
		else if(SAG_SK == 2) {
			if(getskilllv("SA_CREATECON") == 0) {
				skill "SA_CREATECON",1,0;
				mes "- I recalled ^ff0000Elemental Converter Creation skill^000000 While I talk to Mishuna! -";
				next;
			}
			mes "[Mishuna]";
			mes "You'll be given the chance to";
			mes "choose which kind of ^FF0000Elemental";
			mes "Change^000000 skill that you want, even one that you didn't previously";
			mes "learn, so long as you fulfill";
			mes "the skill's requirements.";
			next;
			mes "[Mishuna]";
			mes "Keep in mind that once";
			mes "you learn your Elemental";
			mes "Change skill, you won't be";
			mes "able to change it. Now, which";
			mes "skill would you like to learn?";
			next;
			while(1) {
				switch(select("Fire Elemental Change:Earth Elemental Change:Wind Elemental Change:Water Elemental Change")) {
				case 1:
					if(getskilllv("SA_FLAMELAUNCHER") == 0) {
						mes "[Mishuna]";
						mes "I'm sorry, but you have not";
						mes "learned ^FF0000Endow Blaze^000000, the skill";
						mes "required for the Fire Elemental Change skill. Please learn Endow";
						mes "Blaze or select another Elemental Change skill for me to teach you.";
						next;
					}
					else {
						mes "[Mishuna]";
						mes "Very well, then. Please";
						mes "bring the following items";
						mes "so that you can learn the";
						mes "Fire Elemental Change skill.";
						next;
						mes "[Mishuna]";
						mes "^FF000020 Red Bloods^000000,";
						mes "^FF00001 Payon Solution^000000 and";
						mes "^FF00001 Morroc Solution^000000. Please";
						mes "return to me once you have";
						mes "all the materials ready.";
						set SAG_SK,10;
						close;
					}
					break;
				case 2:
					if(getskilllv("SA_SEISMICWEAPON") == 0) {
						mes "[Mishuna]";
						mes "I'm sorry, but you have not";
						mes "learned ^FF0000Endow Quake^000000, the skill";
						mes "required for the Earth Elemental Change skill. Please learn Endow";
						mes "Quake or select another Elemental Change skill for me to teach you.";
						next;
					}
					else {
						mes "[Mishuna]";
						mes "Very well, then. Please";
						mes "bring the following items";
						mes "so that you can learn the";
						mes "Earth Elemental Change skill.";
						next;
						mes "[Mishuna]";
						mes "^ff000020 Green Lives^000000,";
						mes "^ff00001 Payon Solution^000000 and";
						mes "^ff00001 Morroc Solution^000000. Please";
						mes "return to me once you have";
						mes "all the materials ready.";
						set SAG_SK,20;
						close;
					}
					break;
				case 3:
					if(getskilllv("SA_LIGHTNINGLOADER") == 0) {
						mes "[Mishuna]";
						mes "I'm sorry, but you have not learned ^FF0000Endow Tornado^000000, the skill";
						mes "required for the Wind Elemental Change skill. Please learn Endow";
						mes "Tornado or pick another Elemental Change skill for me to teach you.";
						next;
					}
					else {
						mes "[Mishuna]";
						mes "Very well, then. Please";
						mes "bring the following items";
						mes "so that you can learn the";
						mes "Wind Elemental Change skill.";
						next;
						mes "[Mishuna]";
						mes "^ff000020 Winds of Verdure^000000,";
						mes "^ff00001 Payon Solution^000000 and";
						mes "^ff00001 Morroc Solution^000000. Please";
						mes "return to me once you have";
						mes "all the materials ready.";
						set SAG_SK,30;
						close;
					}
					break;
				case 4:
					if(getskilllv("SA_FROSTWEAPON") == 0) {
						mes "[Mishuna]";
						mes "I'm sorry, but you have not learned ^FF0000Endow Tsunami^000000, the skill";
						mes "required for the Water Elemental Change skill. Please learn Endow";
						mes "Tsunami or pick another Elemental Change skill for me to teach you.";
						next;
					}
					else {
						mes "[Mishuna]";
						mes "Very well, then. Please";
						mes "bring the following items";
						mes "so that you can learn the";
						mes "Water Elemental Change skill.";
						next;
						mes "[Mishuna]";
						mes "^ff000020 Crystal Blues^000000,";
						mes "^ff00001 Payon Solution^000000 and";
						mes "^ff00001 Morroc Solution^000000. Please";
						mes "return to me once you have";
						mes "all the materials ready.";
						set SAG_SK,40;
						close;
					}
					break;
				}
			}
		}
		else if(SAG_SK == 10) {
			if(getskilllv("SA_CREATECON") == 0) {
				skill "SA_CREATECON",1,0;
				mes "- I recalled ^ff0000Elemental Converter Creation skill^000000 While I talk to Mishuna! -";
				next;
			}
			if (countitem(990) < 20 || countitem(1089) < 1 || countitem(1088) < 1) {
				mes "[Mishuna]";
				mes "Are you having trouble";
				mes "gathering all the required";
				mes "items? Just in case, let me";
				mes "remind you of what you need";
				mes "to bring me to learn the Fire";
				mes "Elemental Change skill.";
				next;
				mes "[Mishuna]";
				mes "^ff000020 Red Bloods^000000,";
				mes "^ff00001 Payon Solution^000000 and";
				mes "^ff00001 Morroc Solution^000000. Please";
				mes "don't forget and have the";
				mes "materials ready for the next";
				mes "time you see me, alright?";
				close;
			}
			mes "[Mishuna]";
			mes "Ah, you're back. I can now";
			mes "finally teach you about the";
			mes "Fire Elemental Change skill.";
			mes "This skill has the chance to";
			mes "permanently change a targeted";
			mes "monster's attribute to ^FF0000Fire^000000.";
			next;
			mes "[Mishuna]";
			mes "Remember that you must";
			mes "use an elemental converter to";
			mes "cast this skill, and that it has^FFFFFF ^000000a success rate, similarly to the";
			mes "Elemental Converter Creation";
			mes "skill. So be aware of that.";
			next;
			mes "[Mishuna]";
			mes "Now, "+strcharinfo(0)+",";
			mes "I'm going to cast a spell";
			mes "that will help you memorize";
			mes "the Fire Elemental Change";
			mes "skill. Try to stay still...";
			next;
			mes "^3355FFMishuna begins to chant";
			mes "a strange incantation as";
			mes "a soft blue glow surrounds";
			mes "his body and slowly grows";
			mes "brighter and more intense.^000000";
			specialeffect2 EF_RUWACH;
			next;
			mes "[Mishuna]";
			mes "@#$%^~ Yap!";
			specialeffect2 EF_BRANDISHSPEAR;
			delitem 990,20; // Boody Red
			delitem 1089,1; // Payon Potion
			delitem 1088,1; // Morocc Potion
			set SAG_SK,100;
			skill "SA_ELEMENTFIRE",1,0;
			next;
			mes "[Mishuna]";
			mes ""+strcharinfo(0)+"...";
			mes "I'm happy to say that you've";
			mes "successfully memorized the";
			mes "Fire Elemental Change skill.";
			mes "I hope that it serves you well";
			mes "in battle. Farewell for now~";
			close;
		}
		else if(SAG_SK == 20) {
			if(getskilllv("SA_CREATECON") == 0) {
				skill "SA_CREATECON",1,0;
				mes "- I recalled ^ff0000Elemental Converter Creation skill^000000 While I talk to Mishuna! -";
				next;
			}
			if (countitem(993) < 20 || countitem(1089) < 1 || countitem(1088) < 1) {
				mes "[Mishuna]";
				mes "Are you having trouble";
				mes "gathering all the required";
				mes "items? Just in case, let me";
				mes "remind you of what you need";
				mes "to bring me to learn the Earth";
				mes "Elemental Change skill.";
				next;
				mes "[Mishuna]";
				mes "^ff000020 Green Lives^000000,";
				mes "^ff00001 Payon Solution^000000 and";
				mes "^ff00001 Morroc Solution^000000. Please";
				mes "don't forget and have the";
				mes "materials ready for the next";
				mes "time you see me, alright?";
				close;
			}
			mes "[Mishuna]";
			mes "Ah, you're back. I can now";
			mes "finally teach you about the";
			mes "Earth Elemental Change skill.";
			mes "This skill has the chance to";
			mes "permanently change a targeted";
			mes "monster's attribute to Earth.";
			next;
			mes "[Mishuna]";
			mes "Remember that you must";
			mes "use an elemental converter to";
			mes "cast this skill, and that it has^FFFFFF ^000000 a success rate, similarly to the";
			mes "Elemental Converter Creation";
			mes "skill. So be aware of that.";
			next;
			mes "[Mishuna]";
			mes "Now, "+strcharinfo(0)+",";
			mes "I'm going to cast a spell";
			mes "that will help you memorize";
			mes "the Earth Elemental Change";
			mes "skill. Try to stay still...";
			next;
			mes "^3355FFMishuna begins to chant";
			mes "a strange incantation as";
			mes "a soft blue glow surrounds";
			mes "his body and slowly grows";
			mes "brighter and more intense.^000000";
			specialeffect2 EF_RUWACH;
			next;
			mes "[Mishuna]";
			mes "@#$%^~ Yap!";
			specialeffect2 EF_BRANDISHSPEAR;
			delitem 993,20; // Yellow Live
			delitem 1089,1; // Payon Potion
			delitem 1088,1; // Morocc Potion
			set SAG_SK,100;
			skill "SA_ELEMENTGROUND",1,0;
			next;
			mes "[Mishuna]";
			mes ""+strcharinfo(0)+"...";
			mes "I'm happy to say that you've";
			mes "successfully memorized the";
			mes "Earth Elemental Change skill.";
			mes "I hope that it serves you well";
			mes "in battle. Farewell for now~";
			close;
		}
		else if(SAG_SK == 30) {
			if(getskilllv("SA_CREATECON") == 0) {
				skill "SA_CREATECON",1,0;
				mes "- I recalled ^ff0000Elemental Converter Creation skill^000000 While I talk to Mishuna! -";
				next;
			}
			if (countitem(992) < 20 || countitem(1089) < 1 || countitem(1088) < 1) {
				mes "[Mishuna]";
				mes "Are you having trouble";
				mes "gathering all the required";
				mes "items? Just in case, let me";
				mes "remind you of what you need";
				mes "to bring me to learn the Wind";
				mes "Elemental Change skill.";
				next;
				mes "[Mishuna]";
				mes "^ff000020 Winds of Verdure^000000,";
				mes "^ff00001 Payon Solution^000000 and";
				mes "^ff00001 Morroc Solution^000000. Please";
				mes "don't forget and have the";
				mes "materials ready for the next";
				mes "time you see me, alright?";
				close;
			}
			mes "[Mishuna]";
			mes "Ah, you're back. I can now";
			mes "finally teach you about the";
			mes "Wind Elemental Change skill.";
			mes "This skill has the chance to";
			mes "permanently change a targeted";
			mes "monster's attribute to Wind.";
			next;
			mes "[Mishuna]";
			mes "Remember that you must";
			mes "use an elemental converter to";
			mes "cast this skill, and that it has^FFFFFF ^000000 a success rate, similarly to the";
			mes "Elemental Converter Creation";
			mes "skill. So be aware of that.";
			next;
			mes "[Mishuna]";
			mes "Now, "+strcharinfo(0)+",";
			mes "I'm going to cast a spell";
			mes "that will help you memorize";
			mes "the Wind Elemental Change";
			mes "skill. Try to stay still...";
			next;
			mes "^3355FFMishuna begins to chant";
			mes "a strange incantation as";
			mes "a soft blue glow surrounds";
			mes "his body and slowly grows";
			mes "brighter and more intense.^000000";
			specialeffect2 EF_RUWACH;
			next;
			mes "[Mishuna]";
			mes "@#$%^~ Yap!";
			specialeffect2 EF_BRANDISHSPEAR;
			delitem 992,20; // Wind Of Verdure
			delitem 1089,1; // Payon Potion
			delitem 1088,1; // Morocc Potion
			set SAG_SK,100;
			skill "SA_ELEMENTWIND",1,0;
			next;
			mes "[Mishuna]";
			mes ""+strcharinfo(0)+"...";
			mes "I'm happy to say that you've";
			mes "successfully memorized the";
			mes "Wind Elemental Change skill.";
			mes "I hope that it serves you well";
			mes "in battle. Farewell for now~";
			close;
		}
		else if(SAG_SK == 40) {
			if(getskilllv("SA_CREATECON") == 0) {
				skill "SA_CREATECON",1,0;
				mes "- I recalled ^ff0000Elemental Converter Creation skill^000000 While I talk to Mishuna! -";
				next;
			}
			if (countitem(991) < 20 || countitem(1089) < 1 || countitem(1088) < 1) {
				mes "[Mishuna]";
				mes "Are you having trouble";
				mes "gathering all the required";
				mes "items? Just in case, let me";
				mes "remind you of what you need";
				mes "to bring me to learn the Water";
				mes "Elemental Change skill.";
				next;
				mes "[Mishuna]";
				mes "^ff000020 Crystal Blues^000000,";
				mes "^ff00001 Payon Solution^000000 and";
				mes "^ff00001 Morroc Solution^000000. Please";
				mes "don't forget and have the";
				mes "materials ready for the next";
				mes "time you see me, alright?";
				close;
			}
			mes "[Mishuna]";
			mes "Ah, you're back. I can now";
			mes "finally teach you about the";
			mes "Water Elemental Change skill.";
			mes "This skill has the chance to";
			mes "permanently change a targeted";
			mes "monster's attribute to Water.";
			next;
			mes "[Mishuna]";
			mes "Remember that you must";
			mes "use an elemental converter to";
			mes "cast this skill, and that it has^FFFFFF ^000000 a success rate, similarly to the";
			mes "Elemental Converter Creation";
			mes "skill. So be aware of that.";
			next;
			mes "[Mishuna]";
			mes "Now, "+strcharinfo(0)+",";
			mes "I'm going to cast a spell";
			mes "that will help you memorize";
			mes "the Water Elemental Change";
			mes "skill. Try to stay still...";
			next;
			mes "^3355FFMishuna begins to chant";
			mes "a strange incantation as";
			mes "a soft blue glow surrounds";
			mes "his body and slowly grows";
			mes "brighter and more intense.^000000";
			specialeffect2 EF_RUWACH;
			next;
			mes "[Mishuna]";
			mes "@#$%^~ Yap!";
			specialeffect2 EF_BRANDISHSPEAR;
			delitem 991,20; // Crystal Blue
			delitem 1089,1; // Payon Potion
			delitem 1088,1; // Morocc Potion
			set SAG_SK,100;
			skill "SA_ELEMENTWATER",1,0;
			next;
			mes "[Mishuna]";
			mes ""+strcharinfo(0)+"...";
			mes "I'm happy to say that you've";
			mes "successfully memorized the";
			mes "Water Elemental Change skill.";
			mes "I hope that it serves you well";
			mes "in battle. Farewell for now~";
			close;
		}
		else {
			mes "[Mishuna]";
			mes "If you have any Sage or";
			mes "Scholar friends who haven't";
			mes "learned the skills from Sir";
			mes "Barmundt's scrolls, then";
			mes "please refer them to me.";
			next;
			mes "[Mishuna]";
			mes "I trust that you are";
			mes "finding that these";
			mes "element based skills";
			mes "are very useful in battle.";
			mes "Knowledge truly equates";
			mes "to power in the long run...";
			close;
		}
	}
	else {
		mes "[Mishuna]";
		mes "Good day, I'm Mishuna, one";
		mes "of the instructors here in the";
		mes "Schweicherbil Magic Academy.";
		mes "By any chance, are you a Sage";
		mes "or Scholar? Oh... You're not?";
		next;
		mes "[Mishuna]";
		mes "Oh, that's too bad.";
		mes "My apologies. But if you";
		mes "happen to know any, or meet";
		mes "any in your journeys, please";
		mes "direct them to me if they haven't heard of the lessons I provide.";
		next;
		mes "[Mishuna]";
		mes "I'm sorry to bother";
		mes "you, and I thank you";
		mes "for your time. Good";
		mes "day to you, adventurer.";
		close;
	}
}

//============================================================ 
// Old changelog
//===== Additional Comments: ================================= 
//= 1.0 for fully working skills only [Lupus]
//= 1.1 Added more new skill quests for more classes [Lupus]
//= Somehow eA engine doesn't let you keep learn't skill V_V'
//= 1.2 Added to correct locations, correct NPC's, fixed
//= some of the items required and made them into real
//= quests. [Reddozen] 
//= 1.3 Fixed bugs and minor typos. Optimized [Lupus]
//= 1.3a fixed an item ID typo, thx 2Spiritual Kid
//= 1.3b Splitted into different files [DracoRPG]
//= 1.3c Fixed some typos [IVBela]
//============================================================