summaryrefslogtreecommitdiff
path: root/npc/jobs/2-2-1/Champion.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/jobs/2-2-1/Champion.txt')
-rw-r--r--npc/jobs/2-2-1/Champion.txt61
1 files changed, 61 insertions, 0 deletions
diff --git a/npc/jobs/2-2-1/Champion.txt b/npc/jobs/2-2-1/Champion.txt
new file mode 100644
index 000000000..746f79cf9
--- /dev/null
+++ b/npc/jobs/2-2-1/Champion.txt
@@ -0,0 +1,61 @@
+//Champion Made by Evera/Lorri
+valkyrie.gat,53,42,4 script Champion 52,{
+ if (readparam(12) != 0) goto Lskpt;
+ if ((readparam(11) >= 99) && (readparam(19) == 15) && (readparam(55) >= 50)) goto Lnovice;
+ if ((readparam(19) == 4001) && (readparam(55) >= 10)) goto Lh1;
+ if ((readparam(19) == 4001) && (readparam(55) < 10)) goto LCem;
+ if ((readparam(19) == 4005) && (readparam(55) >= 40)) goto Lh2;
+ if ((readparam(19) == 4005) && (readparam(55) < 40)) goto LCem;
+ if (readparam(19) == 4016) goto Lcrazy;
+ mes "[Champion]";
+ mes "Hello";
+ mes "Nice day isn't it?";
+ close;
+Lnovice:
+ mes "[Champion]";
+ mes "Your holy fist seems strong enough. Hmm..";
+ mes "If you devote yourself entirely you can be just like me.";
+ mes "There is a catch though, you have to go back through novice and acolyte.";
+ mes "You wanna do it?";
+ menu "Yes",Lnovice2,"No",Lcancel;
+Lnovice2:
+ mes "We shall start the ceremony....";
+ next;
+ jobchange 24;// Job: Job_Novice_High
+ resetlvl(1);
+ close;
+Lh1:
+ mes "[Champion]";
+ mes "Ready to become a high acolyte?";
+ menu "Yes",Lh12,"No",Lcancel;
+Lh12:
+ mes "[Champion]";
+ mes "Your hands are now enchanted with a portion of my power.";
+ next;
+ jobchange 28;// Job: Job_Acolyte_High
+ close;
+Lh2:
+ mes "[Champion]";
+ mes "Your fists are now as strong as mine. Will you take the final step and become a champion?";
+ menu "Yes",Lh22,"No",Lcancel;
+Lh22:
+ mes "[Champion]";
+ mes "Your hands are now enchanted with a portion of my power.";
+ jobchange 39;// Job: Job_Champion
+ close;
+Lcrazy:
+ mes "[Champion]";
+ mes "No, I'm not here to fight?";
+ close;
+Lskpt:
+ mes "[Champion]";
+ mes "Use your skillpoints first";
+ close;
+LCem:
+ mes "[Champion]";
+ mes "You're not ready to go to the next level";
+ close;
+Lcancel:
+ mes "Bye";
+ close;
+}