summaryrefslogtreecommitdiff
path: root/npc/jobs/custom/jobchange.txt
blob: 8bb88fc46db56eb1a3cc02c867eb5f67f77e6f6c (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
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
//===== eAthena Script =======================================
//= Jobchanger Script
//===== By: ==================================================
//= eAthena Scripting Team
//===== Current Version: =====================================
//= 2.0
//===== Compatible With: =====================================
//= Athena Version RC1+
//===== Description: =========================================
//= Changes to every class ingame.
//= Making sure they become the right class.
//===== Additional Comments: =================================
//Added missing param into resetlevel [Lupus]
//Remade Adv. Classes Menu. [shadowlady]
//============================================================

prontera.gat,160,186,6	script	Jobchanger	94,{
mes "[ ^0065DFJobra^000000 ]";
mes "Sup? I'm the insanely cool and supra-l337 jobchanger thingy for Athena! First of all, what class would you like to change into (must meet preliminary requirements for each class..)";
next;
menu "First Class",LFirstClass,"Second Class (2-1)",LSecondClass,"Alternate Second Class (2-2)",LSecondClass2,"Novice High",LNovice2,"Advance First Class",Ladvclasses,"Advance Second Class",Ladvclasses,"Super Novice",LSuperNovice;
LNovice2:
	if ((readparam(11) >= 99)  && (readparam(55) >= 50) || (readparam(19) > 20)) goto Lchange;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Ummmm, excuse me... o.O...";
	mes "You don't MEET the class requirements...";
	mes "Hey! You're not ready! Get away, punk! *rolls eyes*";
	mes "Only 2nd Classes and Alternate 2nd Classes can change into the Novice High... jeeze.";
	cutin "kafra_01",255;
	close;

Lchange:
	mes "[ ^0065DFJobra^000000 ]";
	mes "We shall start the ceremony....";
	next;
	if(oldclass > 0) goto Llevelcheck;
	set oldclass, readparam(19);
	jobchange 24;
	resetlvl(1);
	mes "[ ^0065DFJobra^000000 ]";
	mes "You have been reborn...";
	cutin "kafra_01",255;
	close;

Llevelcheck:
	if(readparam(55) >= 45 || readparam(19) == 4001 && readparam(55) >= 10) goto Ladvclasses;
	mes "[ ^0065DFJobra^000000 ]";
	mes "You need a higher level to change...";
	cutin "kafra_01",255;
	close;

Ladvclasses:
//Lord Knight & Paladin
	if(oldclass == 7 && readparam(19) == 4001 || oldclass == 14 && readparam(19) == 4001) goto Lswordsmanhigh;
	if(readparam(19) == 4002 && oldclass == 7) goto Llordknight;
	if(readparam(19) == 4002 && oldclass == 14) goto Lpaladin;
//Assassin Cross & Stalker
	if(oldclass == 12 && readparam(19) == 4001 || oldclass == 17 && readparam(19) == 4001) goto Ltheifhigh;
	if(readparam(19) == 4007 && oldclass == 12) goto Lassassincross;
	if(readparam(19) == 4007 && oldclass == 17) goto Lstalker;
//High Priest & Champion
	if(oldclass == 8 && readparam(19) == 4001 || oldclass == 15 && readparam(19) == 4001) goto Lacolytehigh;
	if(readparam(19) == 4005 && oldclass == 8) goto Lhighpriest;
	if(readparam(19) == 4005 && oldclass == 15) goto Lchampion;
//Sniper & Clown & Gypsy
	if(oldclass == 11 && readparam(19) == 4001 || oldclass == 19 && readparam(19) == 4001 || oldclass == 20 && readparam(19) == 4001) goto Larcherhigh;
	if(readparam(19) == 4004 && oldclass == 11) goto Lsniper;
	if(readparam(19) == 4004 && oldclass == 19) goto Lclown;
	if(readparam(19) == 4004 && oldclass == 20) goto Lgypsy;
//Whitesmith & Creator
	if(oldclass == 10 && readparam(19) == 4001 || oldclass == 18 && readparam(19) == 4001) goto Lmerchanthigh;
	if(readparam(19) == 4006 && oldclass == 10) goto Lwhitesmith;
	if(readparam(19) == 4006 && oldclass == 18) goto Lcreator;
//High Wizard & Professor
	if(oldclass == 9 && readparam(19) == 4001 || oldclass == 16 && readparam(19) == 4001) goto Lhighmage;
	if(readparam(19) == 4003 && oldclass == 9) goto Lhighwizard;
	if(readparam(19) == 4003 && oldclass == 16) goto Lprofessor;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Please... Remove your cart, leave your falcon and get off your peco before.";
	mes "[" + readparam(19) + "] [" + oldclass + "]";
	cutin "kafra_01",255;
	close;
//Lord Knight & Paladin
Lswordsmanhigh:
	mes "[ ^0065DFJobra^000000 ]";
 	mes "Wow, fantastic! Doesn't all that hard work feel like its paid off? *kekeke* I see the ^B70004BLOOD of Porings^000000 on your hands! You truly are fit for the ^0005CESwordsman^000000 job! ^_^";
	cutin "kafra_01",255;
	jobchange 4002;
	close;

Llordknight:
	mes "[ ^0065DFJobra^000000 ]";
	mes "w00t w00t! You are Job Level 40, you've been a Swordie High all your life...";
	mes "Alrite, you are ready to become the doer of Justice, the embodiment of Heroism, the very soul and life of Valor! ";
	mes "...";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yes! You are ready to become... a Lord Knight! ";
	mes "Go save a Damsel in Distress or something..";
     	cutin "kafra_01",255;
	jobchange 4008;
	close;

Lpaladin:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Mmmmm, I always liked Paladins.. their Broad Shoulders always turned me on....";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Go Forth On Your Mission To Serve God";
	mes "This Mission is Free of Charge";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "That means your not getting paid dumbass!";
	emotion 29;
	cutin "kafra_01",255;
	jobchange 38;
	close;
//Assassin Cross & Stalker
Ltheifhigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Those devious hand of yours really look like they need to grab something (no comment)..... go forth and steal!!";
	cutin "kafra_01",255;
	jobchange 4007;
	close;

Lassassincross:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Poof! Kekeke... ";
	cutin "kafra_01",255;
	jobchange 4013;
	close;

Lstalker:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Hmf.";
	mes "How goes the stalking lately?";
	mes "Found Any New Victims?";
	cutin "kafra_01",255;
	jobchange 41;
	close;
//High Priest & Champion
Lacolytehigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yay.. go read a Bible.. or whatever.. er..yeah";
	cutin "kafra_01",255;
	jobchange 4005;
	close;

Lhighpriest:
	mes "[ ^0065DFJobra^000000 ]";
	mes "I bet you are GODDAMNED TIRED of NOT having Sp Recovery, right? Well I am tired of hearing little Jesus-Hugging Acolytes scream this every time they're low on Sp... ";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yay! You've now reached Priesthood! It's sorta like Manhood.. but not really, see with Manhood, you get this little thingy between your legs.. WHOOPs, I am getting so off topic..";
	cutin "kafra_01",255;
	jobchange 4009;
	close;

Lchampion:
	mes "[ ^0065DFJobra^000000 ]";
	mes "You are the Champion of the Weak and Poor.";
	mes "Wow it must suck being you ^_^!!!";
	cutin "kafra_01",255;
	jobchange 39;
	close;

//Sniper & Clown & Gypsy
Larcherhigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "I used to poke things with a stick when I was a child..";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "I guess you're like me! You hurl pointed sticks at things! Kekeke...";
	cutin "kafra_01",255;
	jobchange 4004;
	close;

Lsniper:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oh goodie, you've met all the requirements... did you have fun hurling pointed sticks at monsters? Well guess what?";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Now you can hurl pointed sticks at monsters AND keep them in one place! w00t, yea! Traps are a great thing...";
	jobchange 35;// Job: Job_Sniper
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "You know what... since I'm just soooo nice... (as long as you dont piss me off *grumble grumble*)";
	mes "I'm gonna give you a complimentary falcon! Use it well! Oh.. and you might wanna wear a hat, this falcon sometimes, uh... poops..";
	cutin "kafra_01",255;
	setfalcon;
	jobchange 4012;
	close;
Lclown:
	mes "[ ^0065DFJobra^000000 ]";
	mes "What an amusing fellow.";
	mes "Yay! Go play some ballads for some Dancers or something, I just can't stand your clothes... ewww.";
	cutin "kafra_01",255;
	jobchange 43;
	next;
Lgypsy:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Uh-huh, swivel those hips girl! Gypsies are sooo sexy.. too bad I'm stuck in this ugly Kafra dress.. blah, if only I could strip down to a little thong too... *sigh*";
	cutin "kafra_01",255;
	jobchange 44;
	close;

//Whitesmith & Creator
Lmerchanthigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oh yeah, Mr. Moneybags, SOMEBODY here just loves the sound of coins jinglin'...";
	mes "Well its not me!.. >_>..... <_<... bah.. ";
	cutin "kafra_01",255;
	jobchange 4006;
	close;

Lwhitesmith:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oooo~~ Goodie goodie gumdrops! You meet all the requirements! Guess what I'm gonna do ^_^...";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "YUP! You guessed it! I turned you into a Whitesmith! Aren't you PROUD of yourself... Go and make a few weapons! Open up shops across the nation! Yea yea yea! Go go go! w00t! Ho yeah! ";
	cutin "kafra_01",255;
	jobchange 4011;
	close;
Lcreator:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Create potions for the swordmen of Rune-Midgart";
	cutin "kafra_01",255;
	jobchange 42;
	close;
//High Wizard & Professor
Lmagehigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Nice, now you can finally wield the power of ^2200DFM^7600F9A^AF00FBN^DA00DFA^000000, your spiritual energy!!!";
	cutin "kafra_01",255;
	jobchange 4003;
	close;

Lhighwizard:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Weeee, doesn't it feel great to finally become a High Wizard? It's like a warm bath.... ahhhhhhh......";
	cutin "kafra_01",255;
	jobchange 4010;
	close;

Lprofessor:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Time for you to teach your first quantum physics class";
	cutin "kafra_01",255;
	jobchange 40;
	close;

LFirstClass:
	if(class != 0) goto Lnovice;
	if(joblevel<10) goto Ljobten;
	if(SkillPoint != 0) goto Lskillpt;
	mes "[ ^0065DFJobra^000000 ]";
	mes "So... getting your first job, eh? Thats cool, we all need to grow up sometime I guess...";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Pick a job, any job! Bwahaha.........";
	menu "Swordsman",LSword,"Mage",LMage,"Thief",LThief,"Merchant",LMerc,"Acolyte",LAco,"Archer",LArch,"Cancel",LCancel;

Lnovice:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Ummmm, excuse me... o.O...";
	mes "You don't LOOK like a novice...";
	mes "Hey! You're no novice! Get away, punk! *rolls eyes*";
	mes "Only NOVICES can change into the First Job... jeeze.";
	cutin "kafra_01",255;
	close;

Lskillpt:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Please use up all your skill points before changing into the next job! ";
	cutin "kafra_01",255;
	close;

Ljobten:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Ugh, you need to have at least a Job Level of 10 before changing into the first class... go kill some porings or something.. >.>'";
	cutin "kafra_01",255;
	close;

LSword:
	mes "[ ^0065DFJobra^000000 ]";
 	mes "Wow, fantastic! Doesn't all that hard work feel like its paid off? *kekeke* I see the ^B70004BLOOD of Porings^000000 on your hands! You truly are fit for the ^0005CESwordsman^000000 job! ^_^";
	cutin "kafra_01",255;
	jobchange 1;// Job: Job_Swordman
	close;

LMage:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Nice, now you can finally wield the power of ^2200DFM^7600F9A^AF00FBN^DA00DFA^000000, your spiritual energy!!!";
	cutin "kafra_01",255;
	jobchange 2;// Job: Job_Mage
	close;

LThief:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Those devious hand of yours really look like they need to grab something (no comment)..... go forth and steal!!";
	cutin "kafra_01",255;
	jobchange 6;// Job: Job_Thief
	close;

LMerc:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oh yeah, Mr. Moneybags, SOMEBODY here just loves the sound of coins jinglin'...";
	mes "Well its not me!.. >_>..... <_<... bah.. ";
	cutin "kafra_01",255;
	jobchange 5;// Job: Job_Merchant
	close;

LAco:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yay.. go read a Bible.. or whatever.. er..yeah";
	cutin "kafra_01",255;
	jobchange 4;// Job: Job_Acolyte
	close;

LArch:
	mes "[ ^0065DFJobra^000000 ]";
	mes "I used to poke things with a stick when I was a child..";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "I guess you're like me! You hurl pointed sticks at things! Kekeke...";
	cutin "kafra_01",255;
	jobchange 3;// Job: Job_Archer
	close;

LSecondClass:
	if(SkillPoint != 0) goto Lskillpt;
	if(joblevel<40) goto Ljobforty;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Nice... you are ready to change into the Second Job! Things get really fun after this!";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "What would you like to be? (Please be the preliminary job)";
	menu "Knight",LKnight,"Wizard",LWizard,"Hunter",LHunter,"Blacksmith",LBlacksmith,"Assassin",LAssassin,"Priest",LPriest,"Cancel",LCancel;

	Ljobforty:
		mes "[ ^0065DFJobra^000000 ]";
		mes "You must be at least Job Level 40 before even thinking about changing into the Second Job.";
		cutin "kafra_01",255;
		close;

	LKnight:
		if(class !=1) goto LNotSword;
		mes "[ ^0065DFJobra^000000 ]";
		mes "w00t w00t! You are Job Level 40, you've been a Swordie all your life...";
		mes "Alrite, you are ready to become the doer of Justice, the embodiment of Heroism, the very soul and life of Valor! ";
		mes "...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Yes! You are ready to become... a Knight! ";
		mes "Go save a Damsel in Distress or something..";
		cutin "kafra_01",255;
		jobchange 7;// Job: Job_Knight
		close;


	LNotSword:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Well... you see, there's a little, teensy-weensy problem with YOU becoming a Knight.";
		mes "Please be a Swordman before even thinking about 'magically' turning into a Knight... jeeze. *rolls eyes*";
		cutin "kafra_01",255;
		close;

	LHunter:
		if(class !=3) goto LNotArcher;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oh goodie, you've met all the requirements... did you have fun hurling pointed sticks at monsters? Well guess what?";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Now you can hurl pointed sticks at monsters AND keep them in one place! w00t, yea! Traps are a great thing...";
		jobchange 11;// Job: Job_Hunter
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "You know what... since I'm just soooo nice... (as long as you dont piss me off *grumble grumble*)";
		mes "I'm gonna give you a complimentary falcon! Use it well! Oh.. and you might wanna wear a hat, this falcon sometimes, uh... poops..";
		cutin "kafra_01",255;
		setfalcon;
		close;

    LNotArcher:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Guess what?";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "YOU'RE NOT AN ARCHER >_<....";
		mes "WTF?! Do you really think you can magically turn into a Hunter!? I DONT THINK SO BIYATCH!!! >8-(...";
		mes "Go away! *grumble grumble*";
		cutin "kafra_01",255;
		close;

	LBlacksmith:
		mes "[ ^0065DFJobra^000000 ]";
		if(class !=5) goto LNotMerc;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oooo~~ Goodie goodie gumdrops! You meet allll the requirements! Guess what I'm gonna do ^_^...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "YUP! You guessed it! I turned you into a Blacksmith! Aren't you PROUD of yourself... Go and make a few weapons! Open up shops across the nation! Yea yea yea! Go go go! w00t! Ho yeah! ";
		cutin "kafra_01",255;
		jobchange 10;// Job: Job_Blacksmith
		close;

	LNotMerc:
		mes "[ ^0065DFJobra^000000 ]";
		mes "No, uh-uh, you are no Merchant! Go away! Only MERCHANTS can change into Blacksmiths!!";
		mes "Its like the cycle of life or something! Stop trying to disrupt the order of the universe >_<!!";
		cutin "kafra_01",255;
		close;

	LAssassin:
		if(class !=6) goto LNotThief;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Did you know I used to be a male Assassin? Well, I had a few things done to my hair, got a face lift, some implants here and there...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oh my, too much information, right? Kekeke, okay, go off and become the most sinister of all Jobs in this world... ^6500BFAssassin...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Poof! Kekeke... ";
		jobchange 12;// Job: Job_Assassin
		cutin "kafra_01",255;
		close;

	LNotThief:
		mes "[ ^0065DFJobra^000000 ]";
		mes ".... You're not even a thief.. >_>... go away..";
		cutin "kafra_01",255;
		close;

	LPriest:
		if(class !=4) goto LNotAco;
		mes "[ ^0065DFJobra^000000 ]";
		mes "I bet you are GODDAMNED TIRED of NOT having Sp Recovery, right? Well I am tired of hearing little Jesus-Hugging Acolytes scream this every time they're low on Sp... ";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Yay! You've now reached Priesthood! It's sorta like Manhood.. but not really, see with Manhood, you get this little thingy between your legs.. WHOOPs, I am getting so off topic..";
		jobchange 8;// Job: Job_Priest
		cutin "kafra_01",255;
		close;

	LNotAco:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Okay I'm getting tired of this.. you are NOT an Acolyte... I bet you haven't even read the Bible ONCE! You're going to HELL!";
		cutin "kafra_01",255;
		close;

	LWizard:
		if(class !=2) goto LNotMage;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Weeee, doesn't it feel great to finally become a Wizard? It's like a warm bath.... ahhhhhhh......";
		jobchange 9;// Job: Job_Wizard
		cutin "kafra_01",255;
		close;

	LNotMage:
		mes "[ ^0065DFJobra^000000 ]";
		mes "I bet you've never cast a spell in your life.. go away >_>...";
		cutin "kafra_01",255;
		close;

LSecondClass2:
	if(SkillPoint != 0) goto Lskillpt;
	if(joblevel<40) goto Ljobforty;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Wow, your ready to become second job already?!";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Very well then, what would you like to be?";
	menu "Crusader",LCrusader,"Sage",LSage,"Bard / Dancer",LBardDancer,"Alchemist",LAlchemist,"Rogue",LRogue,"Monk",LMonk,"Cancel",LCancel;

	LCrusader:
		if(class !=1) goto LNotSword2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Mmmmm, I always liked Crusaders.. their Broad Shoulders always turned me on....";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oooo~~~ yeah, thats it... yummy...";
		jobchange 14;// Job: Job_Crusader
		cutin "kafra_01",255;
		close;

	LNotSword2:
	    	mes "[ ^0065DFJobra^000000 ]";
		mes "Nuh-uh... you ain't no Swordman! Get out of here! Scat!";
		mes ".......Everybody can't be a Crusader.";
		cutin "kafra_01",255;
	     	close;

	LBardDancer:
		if(sex==0) goto LBard;
		if(sex==1) goto LDancer;

	LBard:
		if(class !=3) goto LNotArch3;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Yay! Go play some ballads for some Dancers or something, I just can't stand your clothes... ewww.";
		jobchange 19;// Job: Job_Bard
		cutin "kafra_01",255;
		close;

	LNotArch3:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Nope.. you got it wrong bub.. you gotta be an ARCHER before becoming a Bard..";
		mes "Silly players.. just don't know when to stop...";
		cutin "kafra_01",255;
		close;

	LDancer:
		if(class !=3) goto LNotArch2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Uh-huh, swivel those hips girl ^_~ Dancers are sooo sexy.. too bad I'm stuck in this ugly Kafra dress.. blah, if only I could strip down to a little thong too... *sigh*";
		jobchange 20;// Job: Job_Dancer
		cutin "kafra_01",255;
		close;

	LNotArch2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Nope.. you got it wrong girl.. you gotta be an ARCHER before becoming a Dancer..";
		mes "Silly players.. just don't know when to stop...";
		cutin "kafra_01",255;
		close;

	LAlchemist:
		mes "[ ^0065DFJobra^000000 ]";
		if(class !=5) goto LNotMerc2;
		mes "Cool! Go make some potions! Open a Pharmacy! yeah yeah yeah! ^_^";
		jobchange 18;// Job: Job_Alchem
		cutin "kafra_01",255;
		close;


	LNotMerc2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Ummm... no, you gotta be a Merchant first...";
		cutin "kafra_01",255;
		close;

	LRogue:
		if(class !=6) goto LNotThief2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Wow! ^_^ You.. are.. SOOOOO COOOL!! KYAAHH XD!! *drools*";
		jobchange 17;// Job: Job_Rogue
		cutin "kafra_01",255;
		close;

	LNotThief2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Look... you gotta be a THIEF before becoming a Rogue..";
		mes "I know you think they are really cool.. but NO is NO!";
		cutin "kafra_01",255;
		close;

	LMonk:
		if(class !=4) goto LNotAco2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Nice.... Monks are pretty darn cool!";
		jobchange 15;// Job: Job_Monk
		cutin "kafra_01",255;
		close;

	LNotAco2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Go read a Bible.. you're not an Acolyte.. and guess what?";
		mes "YOU GOTTA BE A ACO BEFORE BECOMING A MONK!!! >_<";
		cutin "kafra_01",255;
		close;

	LSage:
		if(class !=2) goto LNotMage2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Ahhhh, soo cool! I'll never get tired of seeing people turn into those new 2-2 sprites.. KYAHH XD!!";
		mes "Go forth Sage! Show those wizzies what a real mana-wielder can do! Mwahaha...";
		jobchange 16;// Job: Job_Sage
		cutin "kafra_01",255;
		close;

	LNotMage2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Other jobs except `Mage' are not permitted to be Sages.";
		cutin "kafra_01",255;
		close;

LCancel:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Blah.. be that way.. >_>..";
	cutin "kafra_01",255;
	close;

LSuperNovice:
	if(Class == 23) goto L_Twice;
	if(Class != 0) goto L_Otherjob;
	if(JobLevel < 10) goto L_LowSkill;
	if(BaseLevel < 45) goto L_Lowlevel;
	if(SkillPoint != 0) goto L_StillSk; 
	mes "[ ^0065DFJobra^000000 ]";
	mes "Hello, Novice!";
	mes "Are you enjoying yourself as a novice, the preferred class of the common man?";
	menu "Yes, I love Novices!",L_SNChange,"Ewww, Novices sucks...",LCancel;

L_SNChange:
	mes "[ ^0065DFJobra^000000 ]";
	mes "We pride ourselves on our slogan 'Common Man, Common Goals, Common Dreams'!";
	mes "Have fun with all those skills.";
	cutin "kafra_01",255;
	jobchange 23;
	close;

L_LowSkill:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Well...it seems your level is a little too common at the moment.";
	mes "You need to have a class level of ^0000FFat least 9^000000 in order to become a Super Novice.";
	cutin "kafra_01",255;
	close;

L_LowLevel:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Well...it seems your level is a little too common at the moment.";
	mes "You need to have a primary level of ^0000FFat least 45^000000 in order to become a Super Novice.";
	cutin "kafra_01",255;
	close;

L_StillSk:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Well...it seems you still have some skill points.";
	mes "You need to have ^0000FFNO^000000 skill points left in order to change jobs.";
	cutin "kafra_01",255;
	close;

L_Twice:
	mes "[ ^0065DFJobra^000000 ]";
	mes "You are already a Super Novice...";
	cutin "kafra_01",255;
	close;

L_Otherjob:
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Such people don't have a place in Novice common society.  I'm sorry.";
	cutin "kafra_01",255;
	close;
}
=======
//===== eAthena Script =======================================
//= Jobchanger Script
//===== By: ==================================================
//= eAthena Scripting Team
//===== Current Version: =====================================
//= 2.0
//===== Compatible With: =====================================
//= Athena Version RC1+
//===== Description: =========================================
//= Changes to every class ingame.
//= Making sure they become the right class.
//===== Additional Comments: =================================
//Added missing param into resetlevel [Lupus]
//Remade Adv. Classes Menu. [shadowlady]
//============================================================

prontera.gat,160,186,6	script	Jobchanger	94,{
mes "[ ^0065DFJobra^000000 ]";
mes "Sup? I'm the insanely cool and supra-l337 jobchanger thingy for Athena! First of all, what class would you like to change into (must meet preliminary requirements for each class..)";
next;
menu "First Class",LFirstClass,"Second Class (2-1)",LSecondClass,"Alternate Second Class (2-2)",LSecondClass2,"Novice High",LNovice2,"Advance First Class",Ladvclasses,"Advance Second Class",Ladvclasses,"Super Novice",LSuperNovice;
LNovice2:
	if ((readparam(11) >= 99)  && (readparam(55) >= 50) || (readparam(19) > 20)) goto Lchange;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Ummmm, excuse me... o.O...";
	mes "You don't MEET the class requirements...";
	mes "Hey! You're not ready! Get away, punk! *rolls eyes*";
	mes "Only 2nd Classes and Alternate 2nd Classes can change into the Novice High... jeeze.";
	cutin "kafra_01",255;
	close;

Lchange:
	mes "[ ^0065DFJobra^000000 ]";
	mes "We shall start the ceremony....";
	next;
	if(oldclass > 0) goto Llevelcheck;
	set oldclass, readparam(19);
	jobchange 24;
	resetlvl(1);
	mes "[ ^0065DFJobra^000000 ]";
	mes "You have been reborn...";
	cutin "kafra_01",255;
	close;

Llevelcheck:
	if(readparam(55) >= 45 || readparam(19) == 4001 && readparam(55) >= 10) goto Ladvclasses;
	mes "[ ^0065DFJobra^000000 ]";
	mes "You need a higher level to change...";
	cutin "kafra_01",255;
	close;

Ladvclasses:
//Lord Knight & Paladin
	if(oldclass == 7 && readparam(19) == 4001 || oldclass == 14 && readparam(19) == 4001) goto Lswordsmanhigh;
	if(readparam(19) == 4002 && oldclass == 7) goto Llordknight;
	if(readparam(19) == 4002 && oldclass == 14) goto Lpaladin;
//Assassin Cross & Stalker
	if(oldclass == 12 && readparam(19) == 4001 || oldclass == 17 && readparam(19) == 4001) goto Ltheifhigh;
	if(readparam(19) == 4007 && oldclass == 12) goto Lassassincross;
	if(readparam(19) == 4007 && oldclass == 17) goto Lstalker;
//High Priest & Champion
	if(oldclass == 8 && readparam(19) == 4001 || oldclass == 15 && readparam(19) == 4001) goto Lacolytehigh;
	if(readparam(19) == 4005 && oldclass == 8) goto Lhighpriest;
	if(readparam(19) == 4005 && oldclass == 15) goto Lchampion;
//Sniper & Clown & Gypsy
	if(oldclass == 11 && readparam(19) == 4001 || oldclass == 19 && readparam(19) == 4001 || oldclass == 20 && readparam(19) == 4001) goto Larcherhigh;
	if(readparam(19) == 4004 && oldclass == 11) goto Lsniper;
	if(readparam(19) == 4004 && oldclass == 19) goto Lclown;
	if(readparam(19) == 4004 && oldclass == 20) goto Lgypsy;
//Whitesmith & Creator
	if(oldclass == 10 && readparam(19) == 4001 || oldclass == 18 && readparam(19) == 4001) goto Lmerchanthigh;
	if(readparam(19) == 4006 && oldclass == 10) goto Lwhitesmith;
	if(readparam(19) == 4006 && oldclass == 18) goto Lcreator;
//High Wizard & Professor
	if(oldclass == 9 && readparam(19) == 4001 || oldclass == 16 && readparam(19) == 4001) goto Lhighmage;
	if(readparam(19) == 4003 && oldclass == 9) goto Lhighwizard;
	if(readparam(19) == 4003 && oldclass == 16) goto Lprofessor;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Please... Remove your cart, leave your falcon and get off your peco before.";
	mes "[" + readparam(19) + "] [" + oldclass + "]";
	cutin "kafra_01",255;
	close;
//Lord Knight & Paladin
Lswordsmanhigh:
	mes "[ ^0065DFJobra^000000 ]";
 	mes "Wow, fantastic! Doesn't all that hard work feel like its paid off? *kekeke* I see the ^B70004BLOOD of Porings^000000 on your hands! You truly are fit for the ^0005CESwordsman^000000 job! ^_^";
	cutin "kafra_01",255;
	jobchange 4002;
	close;

Llordknight:
	mes "[ ^0065DFJobra^000000 ]";
	mes "w00t w00t! You are Job Level 40, you've been a Swordie High all your life...";
	mes "Alrite, you are ready to become the doer of Justice, the embodiment of Heroism, the very soul and life of Valor! ";
	mes "...";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yes! You are ready to become... a Lord Knight! ";
	mes "Go save a Damsel in Distress or something..";
     	cutin "kafra_01",255;
	jobchange 4008;
	close;

Lpaladin:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Mmmmm, I always liked Paladins.. their Broad Shoulders always turned me on....";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Go Forth On Your Mission To Serve God";
	mes "This Mission is Free of Charge";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "That means your not getting paid dumbass!";
	emotion 29;
	cutin "kafra_01",255;
	jobchange 38;
	close;
//Assassin Cross & Stalker
Ltheifhigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Those devious hand of yours really look like they need to grab something (no comment)..... go forth and steal!!";
	cutin "kafra_01",255;
	jobchange 4007;
	close;

Lassassincross:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Poof! Kekeke... ";
	cutin "kafra_01",255;
	jobchange 4013;
	close;

Lstalker:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Hmf.";
	mes "How goes the stalking lately?";
	mes "Found Any New Victims?";
	cutin "kafra_01",255;
	jobchange 41;
	close;
//High Priest & Champion
Lacolytehigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yay.. go read a Bible.. or whatever.. er..yeah";
	cutin "kafra_01",255;
	jobchange 4005;
	close;

Lhighpriest:
	mes "[ ^0065DFJobra^000000 ]";
	mes "I bet you are GODDAMNED TIRED of NOT having Sp Recovery, right? Well I am tired of hearing little Jesus-Hugging Acolytes scream this every time they're low on Sp... ";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yay! You've now reached Priesthood! It's sorta like Manhood.. but not really, see with Manhood, you get this little thingy between your legs.. WHOOPs, I am getting so off topic..";
	cutin "kafra_01",255;
	jobchange 4009;
	close;

Lchampion:
	mes "[ ^0065DFJobra^000000 ]";
	mes "You are the Champion of the Weak and Poor.";
	mes "Wow it must suck being you ^_^!!!";
	cutin "kafra_01",255;
	jobchange 39;
	close;

//Sniper & Clown & Gypsy
Larcherhigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "I used to poke things with a stick when I was a child..";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "I guess you're like me! You hurl pointed sticks at things! Kekeke...";
	cutin "kafra_01",255;
	jobchange 4004;
	close;

Lsniper:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oh goodie, you've met all the requirements... did you have fun hurling pointed sticks at monsters? Well guess what?";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Now you can hurl pointed sticks at monsters AND keep them in one place! w00t, yea! Traps are a great thing...";
	jobchange 35;// Job: Job_Sniper
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "You know what... since I'm just soooo nice... (as long as you dont piss me off *grumble grumble*)";
	mes "I'm gonna give you a complimentary falcon! Use it well! Oh.. and you might wanna wear a hat, this falcon sometimes, uh... poops..";
	cutin "kafra_01",255;
	setfalcon;
	jobchange 4012;
	close;
Lclown:
	mes "[ ^0065DFJobra^000000 ]";
	mes "What an amusing fellow.";
	mes "Yay! Go play some ballads for some Dancers or something, I just can't stand your clothes... ewww.";
	cutin "kafra_01",255;
	jobchange 43;
	next;
Lgypsy:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Uh-huh, swivel those hips girl! Gypsies are sooo sexy.. too bad I'm stuck in this ugly Kafra dress.. blah, if only I could strip down to a little thong too... *sigh*";
	cutin "kafra_01",255;
	jobchange 44;
	close;

//Whitesmith & Creator
Lmerchanthigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oh yeah, Mr. Moneybags, SOMEBODY here just loves the sound of coins jinglin'...";
	mes "Well its not me!.. >_>..... <_<... bah.. ";
	cutin "kafra_01",255;
	jobchange 4006;
	close;

Lwhitesmith:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oooo~~ Goodie goodie gumdrops! You meet all the requirements! Guess what I'm gonna do ^_^...";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "YUP! You guessed it! I turned you into a Whitesmith! Aren't you PROUD of yourself... Go and make a few weapons! Open up shops across the nation! Yea yea yea! Go go go! w00t! Ho yeah! ";
	cutin "kafra_01",255;
	jobchange 4011;
	close;
Lcreator:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Create potions for the swordmen of Rune-Midgart";
	cutin "kafra_01",255;
	jobchange 42;
	close;
//High Wizard & Professor
Lmagehigh:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Nice, now you can finally wield the power of ^2200DFM^7600F9A^AF00FBN^DA00DFA^000000, your spiritual energy!!!";
	cutin "kafra_01",255;
	jobchange 4003;
	close;

Lhighwizard:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Weeee, doesn't it feel great to finally become a High Wizard? It's like a warm bath.... ahhhhhhh......";
	cutin "kafra_01",255;
	jobchange 4010;
	close;

Lprofessor:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Time for you to teach your first quantum physics class";
	cutin "kafra_01",255;
	jobchange 40;
	close;

LFirstClass:
	if(class != 0) goto Lnovice;
	if(joblevel<10) goto Ljobten;
	if(SkillPoint != 0) goto Lskillpt;
	mes "[ ^0065DFJobra^000000 ]";
	mes "So... getting your first job, eh? Thats cool, we all need to grow up sometime I guess...";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Pick a job, any job! Bwahaha.........";
	menu "Swordsman",LSword,"Mage",LMage,"Thief",LThief,"Merchant",LMerc,"Acolyte",LAco,"Archer",LArch,"Cancel",LCancel;

Lnovice:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Ummmm, excuse me... o.O...";
	mes "You don't LOOK like a novice...";
	mes "Hey! You're no novice! Get away, punk! *rolls eyes*";
	mes "Only NOVICES can change into the First Job... jeeze.";
	cutin "kafra_01",255;
	close;

Lskillpt:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Please use up all your skill points before changing into the next job! ";
	cutin "kafra_01",255;
	close;

Ljobten:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Ugh, you need to have at least a Job Level of 10 before changing into the first class... go kill some porings or something.. >.>'";
	cutin "kafra_01",255;
	close;

LSword:
	mes "[ ^0065DFJobra^000000 ]";
 	mes "Wow, fantastic! Doesn't all that hard work feel like its paid off? *kekeke* I see the ^B70004BLOOD of Porings^000000 on your hands! You truly are fit for the ^0005CESwordsman^000000 job! ^_^";
	cutin "kafra_01",255;
	jobchange 1;// Job: Job_Swordman
	close;

LMage:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Nice, now you can finally wield the power of ^2200DFM^7600F9A^AF00FBN^DA00DFA^000000, your spiritual energy!!!";
	cutin "kafra_01",255;
	jobchange 2;// Job: Job_Mage
	close;

LThief:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Those devious hand of yours really look like they need to grab something (no comment)..... go forth and steal!!";
	cutin "kafra_01",255;
	jobchange 6;// Job: Job_Thief
	close;

LMerc:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Oh yeah, Mr. Moneybags, SOMEBODY here just loves the sound of coins jinglin'...";
	mes "Well its not me!.. >_>..... <_<... bah.. ";
	cutin "kafra_01",255;
	jobchange 5;// Job: Job_Merchant
	close;

LAco:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Yay.. go read a Bible.. or whatever.. er..yeah";
	cutin "kafra_01",255;
	jobchange 4;// Job: Job_Acolyte
	close;

LArch:
	mes "[ ^0065DFJobra^000000 ]";
	mes "I used to poke things with a stick when I was a child..";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "I guess you're like me! You hurl pointed sticks at things! Kekeke...";
	cutin "kafra_01",255;
	jobchange 3;// Job: Job_Archer
	close;

LSecondClass:
	if(SkillPoint != 0) goto Lskillpt;
	if(joblevel<40) goto Ljobforty;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Nice... you are ready to change into the Second Job! Things get really fun after this!";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "What would you like to be? (Please be the preliminary job)";
	menu "Knight",LKnight,"Wizard",LWizard,"Hunter",LHunter,"Blacksmith",LBlacksmith,"Assassin",LAssassin,"Priest",LPriest,"Cancel",LCancel;

	Ljobforty:
		mes "[ ^0065DFJobra^000000 ]";
		mes "You must be at least Job Level 40 before even thinking about changing into the Second Job.";
		cutin "kafra_01",255;
		close;

	LKnight:
		if(class !=1) goto LNotSword;
		mes "[ ^0065DFJobra^000000 ]";
		mes "w00t w00t! You are Job Level 40, you've been a Swordie all your life...";
		mes "Alrite, you are ready to become the doer of Justice, the embodiment of Heroism, the very soul and life of Valor! ";
		mes "...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Yes! You are ready to become... a Knight! ";
		mes "Go save a Damsel in Distress or something..";
		cutin "kafra_01",255;
		jobchange 7;// Job: Job_Knight
		close;


	LNotSword:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Well... you see, there's a little, teensy-weensy problem with YOU becoming a Knight.";
		mes "Please be a Swordman before even thinking about 'magically' turning into a Knight... jeeze. *rolls eyes*";
		cutin "kafra_01",255;
		close;

	LHunter:
		if(class !=3) goto LNotArcher;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oh goodie, you've met all the requirements... did you have fun hurling pointed sticks at monsters? Well guess what?";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Now you can hurl pointed sticks at monsters AND keep them in one place! w00t, yea! Traps are a great thing...";
		jobchange 11;// Job: Job_Hunter
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "You know what... since I'm just soooo nice... (as long as you dont piss me off *grumble grumble*)";
		mes "I'm gonna give you a complimentary falcon! Use it well! Oh.. and you might wanna wear a hat, this falcon sometimes, uh... poops..";
		cutin "kafra_01",255;
		setfalcon;
		close;

    LNotArcher:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Guess what?";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "YOU'RE NOT AN ARCHER >_<....";
		mes "WTF?! Do you really think you can magically turn into a Hunter!? I DONT THINK SO BIYATCH!!! >8-(...";
		mes "Go away! *grumble grumble*";
		cutin "kafra_01",255;
		close;

	LBlacksmith:
		mes "[ ^0065DFJobra^000000 ]";
		if(class !=5) goto LNotMerc;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oooo~~ Goodie goodie gumdrops! You meet allll the requirements! Guess what I'm gonna do ^_^...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "YUP! You guessed it! I turned you into a Blacksmith! Aren't you PROUD of yourself... Go and make a few weapons! Open up shops across the nation! Yea yea yea! Go go go! w00t! Ho yeah! ";
		cutin "kafra_01",255;
		jobchange 10;// Job: Job_Blacksmith
		close;

	LNotMerc:
		mes "[ ^0065DFJobra^000000 ]";
		mes "No, uh-uh, you are no Merchant! Go away! Only MERCHANTS can change into Blacksmiths!!";
		mes "Its like the cycle of life or something! Stop trying to disrupt the order of the universe >_<!!";
		cutin "kafra_01",255;
		close;

	LAssassin:
		if(class !=6) goto LNotThief;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Did you know I used to be a male Assassin? Well, I had a few things done to my hair, got a face lift, some implants here and there...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oh my, too much information, right? Kekeke, okay, go off and become the most sinister of all Jobs in this world... ^6500BFAssassin...";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Poof! Kekeke... ";
		jobchange 12;// Job: Job_Assassin
		cutin "kafra_01",255;
		close;

	LNotThief:
		mes "[ ^0065DFJobra^000000 ]";
		mes ".... You're not even a thief.. >_>... go away..";
		cutin "kafra_01",255;
		close;

	LPriest:
		if(class !=4) goto LNotAco;
		mes "[ ^0065DFJobra^000000 ]";
		mes "I bet you are GODDAMNED TIRED of NOT having Sp Recovery, right? Well I am tired of hearing little Jesus-Hugging Acolytes scream this every time they're low on Sp... ";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Yay! You've now reached Priesthood! It's sorta like Manhood.. but not really, see with Manhood, you get this little thingy between your legs.. WHOOPs, I am getting so off topic..";
		jobchange 8;// Job: Job_Priest
		cutin "kafra_01",255;
		close;

	LNotAco:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Okay I'm getting tired of this.. you are NOT an Acolyte... I bet you haven't even read the Bible ONCE! You're going to HELL!";
		cutin "kafra_01",255;
		close;

	LWizard:
		if(class !=2) goto LNotMage;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Weeee, doesn't it feel great to finally become a Wizard? It's like a warm bath.... ahhhhhhh......";
		jobchange 9;// Job: Job_Wizard
		cutin "kafra_01",255;
		close;

	LNotMage:
		mes "[ ^0065DFJobra^000000 ]";
		mes "I bet you've never cast a spell in your life.. go away >_>...";
		cutin "kafra_01",255;
		close;

LSecondClass2:
	if(SkillPoint != 0) goto Lskillpt;
	if(joblevel<40) goto Ljobforty;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Wow, your ready to become second job already?!";
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Very well then, what would you like to be?";
	menu "Crusader",LCrusader,"Sage",LSage,"Bard / Dancer",LBardDancer,"Alchemist",LAlchemist,"Rogue",LRogue,"Monk",LMonk,"Cancel",LCancel;

	LCrusader:
		if(class !=1) goto LNotSword2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Mmmmm, I always liked Crusaders.. their Broad Shoulders always turned me on....";
		next;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Oooo~~~ yeah, thats it... yummy...";
		jobchange 14;// Job: Job_Crusader
		cutin "kafra_01",255;
		close;

	LNotSword2:
	    	mes "[ ^0065DFJobra^000000 ]";
		mes "Nuh-uh... you ain't no Swordman! Get out of here! Scat!";
		mes ".......Everybody can't be a Crusader.";
		cutin "kafra_01",255;
	     	close;

	LBardDancer:
		if(sex==0) goto LBard;
		if(sex==1) goto LDancer;

	LBard:
		if(class !=3) goto LNotArch3;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Yay! Go play some ballads for some Dancers or something, I just can't stand your clothes... ewww.";
		jobchange 19;// Job: Job_Bard
		cutin "kafra_01",255;
		close;

	LNotArch3:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Nope.. you got it wrong bub.. you gotta be an ARCHER before becoming a Bard..";
		mes "Silly players.. just don't know when to stop...";
		cutin "kafra_01",255;
		close;

	LDancer:
		if(class !=3) goto LNotArch2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Uh-huh, swivel those hips girl ^_~ Dancers are sooo sexy.. too bad I'm stuck in this ugly Kafra dress.. blah, if only I could strip down to a little thong too... *sigh*";
		jobchange 20;// Job: Job_Dancer
		cutin "kafra_01",255;
		close;

	LNotArch2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Nope.. you got it wrong girl.. you gotta be an ARCHER before becoming a Dancer..";
		mes "Silly players.. just don't know when to stop...";
		cutin "kafra_01",255;
		close;

	LAlchemist:
		mes "[ ^0065DFJobra^000000 ]";
		if(class !=5) goto LNotMerc2;
		mes "Cool! Go make some potions! Open a Pharmacy! yeah yeah yeah! ^_^";
		jobchange 18;// Job: Job_Alchem
		cutin "kafra_01",255;
		close;


	LNotMerc2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Ummm... no, you gotta be a Merchant first...";
		cutin "kafra_01",255;
		close;

	LRogue:
		if(class !=6) goto LNotThief2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Wow! ^_^ You.. are.. SOOOOO COOOL!! KYAAHH XD!! *drools*";
		jobchange 17;// Job: Job_Rogue
		cutin "kafra_01",255;
		close;

	LNotThief2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Look... you gotta be a THIEF before becoming a Rogue..";
		mes "I know you think they are really cool.. but NO is NO!";
		cutin "kafra_01",255;
		close;

	LMonk:
		if(class !=4) goto LNotAco2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Nice.... Monks are pretty darn cool!";
		jobchange 15;// Job: Job_Monk
		cutin "kafra_01",255;
		close;

	LNotAco2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Go read a Bible.. you're not an Acolyte.. and guess what?";
		mes "YOU GOTTA BE A ACO BEFORE BECOMING A MONK!!! >_<";
		cutin "kafra_01",255;
		close;

	LSage:
		if(class !=2) goto LNotMage2;
		mes "[ ^0065DFJobra^000000 ]";
		mes "Ahhhh, soo cool! I'll never get tired of seeing people turn into those new 2-2 sprites.. KYAHH XD!!";
		mes "Go forth Sage! Show those wizzies what a real mana-wielder can do! Mwahaha...";
		jobchange 16;// Job: Job_Sage
		cutin "kafra_01",255;
		close;

	LNotMage2:
		mes "[ ^0065DFJobra^000000 ]";
		mes "Other jobs except `Mage' are not permitted to be Sages.";
		cutin "kafra_01",255;
		close;

LCancel:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Blah.. be that way.. >_>..";
	cutin "kafra_01",255;
	close;

LSuperNovice:
	if(Class == 23) goto L_Twice;
	if(Class != 0) goto L_Otherjob;
	if(JobLevel < 10) goto L_LowSkill;
	if(BaseLevel < 45) goto L_Lowlevel;
	if(SkillPoint != 0) goto L_StillSk; 
	mes "[ ^0065DFJobra^000000 ]";
	mes "Hello, Novice!";
	mes "Are you enjoying yourself as a novice, the preferred class of the common man?";
	menu "Yes, I love Novices!",L_SNChange,"Ewww, Novices sucks...",LCancel;

L_SNChange:
	mes "[ ^0065DFJobra^000000 ]";
	mes "We pride ourselves on our slogan 'Common Man, Common Goals, Common Dreams'!";
	mes "Have fun with all those skills.";
	cutin "kafra_01",255;
	jobchange 23;
	close;

L_LowSkill:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Well...it seems your level is a little too common at the moment.";
	mes "You need to have a class level of ^0000FFat least 9^000000 in order to become a Super Novice.";
	cutin "kafra_01",255;
	close;

L_LowLevel:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Well...it seems your level is a little too common at the moment.";
	mes "You need to have a primary level of ^0000FFat least 45^000000 in order to become a Super Novice.";
	cutin "kafra_01",255;
	close;

L_StillSk:
	mes "[ ^0065DFJobra^000000 ]";
	mes "Well...it seems you still have some skill points.";
	mes "You need to have ^0000FFNO^000000 skill points left in order to change jobs.";
	cutin "kafra_01",255;
	close;

L_Twice:
	mes "[ ^0065DFJobra^000000 ]";
	mes "You are already a Super Novice...";
	cutin "kafra_01",255;
	close;

L_Otherjob:
	next;
	mes "[ ^0065DFJobra^000000 ]";
	mes "Such people don't have a place in Novice common society.  I'm sorry.";
	cutin "kafra_01",255;
	close;
}