From 195dffc20af1fb32c7e4119988911b72955aeabc Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> Date: Thu, 4 Nov 2004 23:25:09 +0000 Subject: git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@2 54d463be-8e91-2dee-dedb-b68131a5f0ec --- npc/jobs/2-2-1/Champion.txt | 61 ++++++++++++++++++++++ npc/jobs/2-2-1/Clown.txt | 122 +++++++++++++++++++++++++++++++++++++++++++ npc/jobs/2-2-1/Creator.txt | 61 ++++++++++++++++++++++ npc/jobs/2-2-1/Gypsy.txt | 89 +++++++++++++++++++++++++++++++ npc/jobs/2-2-1/Paladin.txt | 62 ++++++++++++++++++++++ npc/jobs/2-2-1/Professor.txt | 61 ++++++++++++++++++++++ npc/jobs/2-2-1/Stalker.txt | 59 +++++++++++++++++++++ 7 files changed, 515 insertions(+) create mode 100644 npc/jobs/2-2-1/Champion.txt create mode 100644 npc/jobs/2-2-1/Clown.txt create mode 100644 npc/jobs/2-2-1/Creator.txt create mode 100644 npc/jobs/2-2-1/Gypsy.txt create mode 100644 npc/jobs/2-2-1/Paladin.txt create mode 100644 npc/jobs/2-2-1/Professor.txt create mode 100644 npc/jobs/2-2-1/Stalker.txt (limited to 'npc/jobs/2-2-1') 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; +} diff --git a/npc/jobs/2-2-1/Clown.txt b/npc/jobs/2-2-1/Clown.txt new file mode 100644 index 000000000..eb88a88ee --- /dev/null +++ b/npc/jobs/2-2-1/Clown.txt @@ -0,0 +1,122 @@ +//Made by Veev for eAthena +valkyrie.gat,53,54,4z script Clown 741,{ + +mes "[Clown]"; +mes "Well, would you like to sing a song...?"; +mes "But I'll start the song off for you..."; +goto cmenu; + + cmenu: + menu "I'm not here to sing.",nosing,"Alright...",alright; + + nosing: + mes "[Clown]"; + mes "Really?... I see. What brings you here then?"; + menu "I would like to become a Clown",clown,"Nothing...",nothing; + + clown: + mes "[Clown]"; + mes "Hmm... Let me make sure you are clown-material..."; + next; + if (sex==0) goto female; + if (SkillPoint != 0) goto useskpt; + if ((BaseLevel >= 99) && (Class == 19) && (readparam(55) >= 50)) goto highnovice; + if ((Class == 4001) && (readparam(55) >= 10)) goto higharcher; + if ((Class == 4004) && (readparam(55) >= 40)) goto turnclown; + if ((Class == 4004) && (readparam(55) < 40)) goto toolowha; + if (Class == 4020) goto alreadyclown; + mes "Sorry, but you can't become a clown just yet..."; + close; + + female: + mes "[Clown]"; + mes "This job is only for guys... Maybe you should talk to the Gypsy..."; + close; + + highnovice: + mes "[Clown]"; + mes "You are on the right track... But first I need to turn you into a High Novice..."; + mes "Would you like to become a High Novice now?"; + menu "Yes",hn_yes,"No",hn_no; + + hn_yes: + mes "[Clown]"; + mes "This will only be a second..."; + jobchange 24;// Job: Job_Novice_High + resetlvl(1); + close; + + hn_no: + mes "[Clown]"; + mes "Come back later if you want to change..."; + close; + + higharcher: + mes "[Clown]"; + mes "Even closer to clown now!"; + mes "Wanna change into a High Archer now?"; + menu "Yes",ha_yes,"No",ha_no; + + ha_yes: + mes "[Clown]"; + mes "After this step, you'll be a clown in no time!"; + jobchange 27;// Job: Job_Archer_High + close; + + ha_no: + mes "[Clown]"; + mes "Well... You can always come back."; + close; + + turnclown: + mes "[Clown]"; + mes "My favorite part of this job! This is exciting!"; + mes "I'll change you into a Clown now."; + menu "Alright!",tc_yes,"Not yet...",tc_no; + + tc_yes: + mes "[Clown]"; + mes "I love this job!"; + jobchange 43;// Job: Job_Clown + next; + mes "[Clown]"; + mes "Have fun!"; + close; + + tc_no: + mes "[Clown]"; + mes "Well... That kinda ruined my day..."; + close; + + alreadyclown: + mes "[Clown]"; + mes "You are already a Clown!"; + mes "Move out of the way and let other people become one"; + close; + + useskpt: + mes "[Clown]"; + mes "You need to use those skillpoitns up first."; + close; + + towlowha: + mes "[Clown]"; + mes "Aww, you aren't ready yet! Please come back again when you are ready."; + close; + + nothing: + mes "[Clown]"; + mes "Sigh..."; + close; + + alright: + mes "[Clown]"; + if (class != 19) goto notbard; + mes "Actually you know what... Maybe another time... You don't look like a singer..."; + close; + + notbard: + mes "[Clown]"; + mes "... Nice try, but you aren't a Bard... Go bother someone else."; + close; +} diff --git a/npc/jobs/2-2-1/Creator.txt b/npc/jobs/2-2-1/Creator.txt new file mode 100644 index 000000000..0b0913cf9 --- /dev/null +++ b/npc/jobs/2-2-1/Creator.txt @@ -0,0 +1,61 @@ +//Creator Made by Evera/Lorri 1.1 + +valkyrie.gat,53,50,6 script Creator 122,{ + if (readparam(12) != 0) goto Lskpt; + if ((readparam(11) >= 99) && (readparam(19) == 18) && (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) == 4006) && (readparam(55) >= 40)) goto Lh2; + if ((readparam(19) == 4006) && (readparam(55) < 40)) goto LCem; + if (readparam(19) == 4019) goto Lcrazy; + mes "[Creator]"; + mes "Hello"; + mes "Sorry, no potions for sale."; + close; +Lnovice: + mes "[Creator]"; + mes "Hm. You seem to have extensive knowledge in chemistry. Would you like to become a creator?"; + mes "There is a catch though, you have to go back through novice and merchant."; + 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 "[Creator]"; + mes "Ready to become a high merchant?"; + menu "Yes",Lh12,"No",Lcancel; +Lh12: + mes "[Creator]"; + mes "Here, take this potion."; + next; + jobchange 29;// Job: Job_Merchant_High + close; +Lh2: + mes "[Creator]"; + mes "You knowledge unbounds you. Will you become a professor?"; + menu "Yes",Lh22,"No",Lcancel; +Lh22: + mes "[Creator]"; + mes "Here, take this potion."; + jobchange Job_Creator; //42 + close; +Lcrazy: + mes "[Creator]"; + mes "Hm. You look like me."; + close; +Lskpt: + mes "[Creator]"; + mes "Use your skillpoints first"; + close; +LCem: + mes "[Creator]"; + mes "You're not ready to go to the next level"; + close; +Lcancel: + mes "Bye"; + close; +} diff --git a/npc/jobs/2-2-1/Gypsy.txt b/npc/jobs/2-2-1/Gypsy.txt new file mode 100644 index 000000000..24efc9d86 --- /dev/null +++ b/npc/jobs/2-2-1/Gypsy.txt @@ -0,0 +1,89 @@ +//Made by Evera/Lorri +valkyrie.gat,53,56,4 script Gypsy 101,{ +if (sex==1) goto Lmale; +if (readparam(12) != 0) goto Lskpt; +if ((BaseLevel >= 99) && (readparam(19) == 20) && (readparam(55) >= 50)) goto Lnovice; +if ((readparam(19) == 24) && (joblevel >= 10)) goto Larcher; +if ((readparam(19) == 27) && (joblevel >= 40)) goto Lgypsy2; +if ((readparam(19) == 27) && (joblevel < 40)) goto Lgypsy3; +if (readparam(19) == 44) goto Lomg; + +Lnovice: +mes "[Gypsy]"; +mes "Hey you there! Are you a dancer?"; +mes "There's a secret I wanna tell you.. You can get even more dances if you become a Gypsy! So do you wanna be a gypsy?"; +menu +"Yes",Lyes,"No way, you crazy?",Lcancel; +Lyes: + mes "Hmm...?"; + next; + mes "Alright, do you know the requirements? You have to be strong and adept at battling and dancing."; + mes "Level 99 and Job Level 50!"; + mes "You have to be a dancer ofcourse"; + mes "You sure you want to become a gypsy? You'll go back to a 1/1 novice..."; + menu "Yes",Lnyes,"No",Lano; + +Lmale: + mes "[Gypsy]"; + mes "Shoo! Boys!"; + close; + +Lnyes: +if (readparam(12) != 0) goto Lskpt; + mes "Come back in 10 job levels then. Good luck!"; + jobchange 24;// Job: Job_Novice_High + resetlvl(1); + close; + +Larcher: + mes "[Gypsy]"; + mes "You can almost dance!"; + mes "Change into a high archer?"; + menu "Yes",Layes,"No",Lano; + +Layes: +if (readparam(12) != 0) goto Lskpt; + mes "Hurry up and get 40 job levels!"; + jobchange 27;// Job: Job_Archer_High + close; + + + +Lgypsy2: + mes "I will now dance a magical dance for you."; + mes "One last chance, do you truly want to become a gypsy?"; + menu "..Yes",Lcyes,"Not yet...",Lano; + +Lcyes: +if (readparam(12) != 0) goto Lskpt; + mes "Congratulations! You are now a gypsy"; + jobchange 44;// Job: Job_Gypsy + next; + mes "[Gypsy]"; + mes "Don't outdo yourself"; + close; + +Lskpt: + mes "[Gypsy]"; + mes "You need to use those skillpoints up first."; + close; + +Lgypsy3: + mes "[Gypsy]"; + mes "Doesn't look like you're sufficient for the job"; + close; + +Lano: + mes "Well, goodbye!"; + close; + +Lcancel: + mes "[Gypsy]"; + mes "Well bye then.."; + close; + +Lomg: + mes "[Gypsy]"; + mes "Wait.. Haven't I seen you before?"; + close; +} diff --git a/npc/jobs/2-2-1/Paladin.txt b/npc/jobs/2-2-1/Paladin.txt new file mode 100644 index 000000000..e7e82c0a4 --- /dev/null +++ b/npc/jobs/2-2-1/Paladin.txt @@ -0,0 +1,62 @@ +//Paladin Made by Evera/Lorri +//Fixed by PoW +valkyrie.gat,53,39,4 script Paladin 752,{ + if (SkillPoint != 0) goto Lskpt; + if ((readparam(11) >= 99) && (readparam(19) == 14) && (readparam(55) >= 50)) goto Lnovice; + if ((readparam(11) >= 99) && (readparam(19) == 21) && (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) == 4002) && (readparam(55) >= 40)) goto Lh2; + if ((readparam(19) == 4002) && (readparam(55) < 40)) goto LCem; + if (readparam(19) == 4015) goto Lcrazy; + mes "[Paladin]"; + mes "Hello"; + mes "God will always be there to help."; + close; +Lnovice: + mes "[Paladin]"; + mes "Your holy aura is strong. Will you become a paladin?"; + mes "There is a catch though, you have to go back through novice and merchant."; + 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 "[Paladin]"; + mes "Ready to become a high swordsman?"; + menu "Yes",Lh12,"No",Lcancel; +Lh12: + mes "[Paladin]"; + mes "By the holy resovoir in this blessed sword, I crown you."; + next; + jobchange 25;// Job: Job_Swordman_High + close; +Lh2: + mes "[Paladin]"; + mes "Your holy aura is extremely high. You are ready. Will you become a paladin?"; + menu "Yes",Lh22,"No",Lcancel; +Lh22: + mes "[Paladin]"; + mes "By the holy resovoir in this blessed sword, I crown you."; + jobchange 38;// Job: Job_Paladin + close; +Lcrazy: + mes "[Paladin]"; + mes "God has helped you very much."; + close; +Lskpt: + mes "[Paladin]"; + mes "Use your skillpoints first"; + close; +LCem: + mes "[Paladin]"; + mes "You're not ready to go to the next level"; + close; +Lcancel: + mes "Bye"; + close; +} diff --git a/npc/jobs/2-2-1/Professor.txt b/npc/jobs/2-2-1/Professor.txt new file mode 100644 index 000000000..5ce78da48 --- /dev/null +++ b/npc/jobs/2-2-1/Professor.txt @@ -0,0 +1,61 @@ +//Professor Made by Evera/Lorri +//Fixed by PoW +valkyrie.gat,53,47,4 script Professor 743,{ + if (readparam(12) != 0) goto Lskpt; + if ((readparam(11) >= 99) && (readparam(19) == 16) && (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) == 4003) && (readparam(55) >= 40)) goto Lh2; + if ((readparam(19) == 4003) && (readparam(55) < 40)) goto LCem; + if (readparam(19) == 4017) goto Lcrazy; + mes "[Professor]"; + mes "Hello"; + mes "Knowledge is the key."; + close; +Lnovice: + mes "[Professor]"; + mes "You seem smart. Hm. Do you wish to persue your dream of knowledge and become a professor like me?"; + mes "There is a catch though, you have to go back through novice and mage."; + 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 "[Professor]"; + mes "Ready to become a high mage?"; + menu "Yes",Lh12,"No",Lcancel; +Lh12: + mes "[Professor]"; + mes "Read this book, you'll be enchanted by its magic"; + next; + jobchange 26;// Job: Job_Mage_High + close; +Lh2: + mes "[Professor]"; + mes "It appears as your intelligence quota surpasses mine. Will you become a professor"; + menu "Yes",Lh22,"No",Lcancel; +Lh22: + mes "[Professor]"; + mes "Read this book, you'll be enchanted by its magic"; + jobchange 40;// Job: Job_Professor + close; +Lcrazy: + mes "[Professor]"; + mes "Your intelligence will surpass many other unfortunate souls who have not found truth in a book."; + close; +Lskpt: + mes "[Professor]"; + mes "Use your skillpoints first"; + close; +LCem: + mes "[Professor]"; + mes "You're not ready to go to the next level"; + close; +Lcancel: + mes "Bye"; + close; +} diff --git a/npc/jobs/2-2-1/Stalker.txt b/npc/jobs/2-2-1/Stalker.txt new file mode 100644 index 000000000..cb1b9119d --- /dev/null +++ b/npc/jobs/2-2-1/Stalker.txt @@ -0,0 +1,59 @@ +//Stalker Made by Evera/Lorri +valkyrie.gat,53,58,4 script Stalker 747,{ + if (readparam(12) != 0) goto Lskpt; + if ((readparam(11) >= 99) && (Class == 18) && (JobLevel >= 50)) goto Lnovice; + if ((Class == 4001) && (readparam(55) >= 10)) goto Lh1; + if ((Class == 4001) && (readparam(55) < 10)) goto LCem; + if ((Class == 4007) && (readparam(55) >= 40)) goto Lh2; + if ((Class == 4007) && (readparam(55) < 40)) goto LCem; + if (Class == 4018) goto Lcrazy; + mes "[Stalker]"; + mes "..."; + close; +Lnovice: + mes "[Stalker]"; + mes "Hm. You seem like a person that would be interested. Would you want to become a stalker?"; + mes "There is a catch though, you have to go back through novice and theif."; + 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 "[Stalker]"; + mes "Ready to become a theif?"; + menu "Yes",Lh12,"No",Lcancel; +Lh12: + mes "[Stalker]"; + mes "Hmf."; + next; + jobchange 30;// Job: Job_Thief_High + close; +Lh2: + mes "[Stalker]"; + mes "Hm. You're ready. Become a stalker?"; + menu "Yes",Lh22,"No",Lcancel; +Lh22: + mes "[Stalker]"; + mes "Hmf."; + jobchange 41;// Job: Job_Stalker + close; +Lcrazy: + mes "[Stalker]"; + mes "I'm done with you."; + close; +Lskpt: + mes "[Stalker]"; + mes "Use your skillpoints first"; + close; +LCem: + mes "[Stalker]"; + mes "You're not ready to go to the next level"; + close; +Lcancel: + mes "Bye"; + close; +} -- cgit v1.2.3-70-g09d2