Lord Gywall (who's a GM on my server) had a question in the Ninja quest referring to something specific to tRO. Removed that; also fixed some grammar.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6324 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
blackhole89 2006-04-27 19:19:47 +00:00
parent 38a15cc4e1
commit 9895d86389

View File

@ -1,14 +1,15 @@
//===== eAthena Script ======================================= //===== eAthena Script =======================================
//= Ninja Job Quest //= Ninja Job Quest
//===== By: ================================================== //===== Initial Version by: ==================================
//= Lord Gywall //= Lord Gywall
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 1.0 //= 1.1
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena SVN //= eAthena SVN
//===== Description: ========================================= //===== Description: =========================================
//= Temp Ninja Quest //= Temp Ninja Quest
//===== Additional Comments: ================================= //===== Additional Comments: =================================
//= 1.1 Removed tRO specific questions; minor fixes. [blackhole89]
//= 1.0 Fixed minor things [Lupus] //= 1.0 Fixed minor things [Lupus]
//============================================================ //============================================================
@ -20,61 +21,55 @@ amatsu.gat,46,137,4 script Ninja Master 730,{
mes "Hey! Get lost!"; mes "Hey! Get lost!";
close; close;
N_Novice: N_Novice:
mes "Oh, A novice.. I guess your here to learn the ways of a Ninja."; mes "Oh, a novice.. I guess your here to learn the ways of a Ninja.";
next; next;
menu "I wish to become a Ninja",N_Question,"What are the requirements",N_Require,"Leave",-; menu "I wish to become a Ninja",N_Question,"What are the requirements?",N_Require,"Leave",-;
close; close;
N_Question: N_Question:
mes "[Ninja Master]"; mes "[Ninja Master]";
if(JobLevel<10 || SkillPoint) goto N_Bad; if(JobLevel<10 || SkillPoint) goto N_Bad;
set @qnumber,rand(1,5); set @qnumber,rand(1,4);
if(@qnumber==1) goto N_Q1; if(@qnumber==1) goto N_Q1;
if(@qnumber==2) goto N_Q2; if(@qnumber==2) goto N_Q2;
if(@qnumber==3) goto N_Q3; if(@qnumber==3) goto N_Q3;
if(@qnumber==4) goto N_Q4;
mes "Where can you find a Poison Toad?"; mes "Where can you find a Poison Toad?";
menu "Amatsu Field",N_C,"Louyang Field",N_W,"Prontera Field",N_W,"Einbroch Field",N_W; menu "Amatsu Field",N_C,"Louyang Field",N_W,"Prontera Field",N_W,"Einbroch Field",N_W;
N_Q1: N_Q1:
mes "[Gunslinger]"; mes "[Ninja Master]";
mes "Which of these places does not have it's own fields?"; mes "Which of these places does not have its own fields?";
next; next;
menu "Geffen",N_W,"Alberta",N_C,"Payon",N_W,"Lighthalzen",N_W; menu "Geffen",N_W,"Alberta",N_C,"Payon",N_W,"Lighthalzen",N_W;
N_Q2: N_Q2:
mes "[Gunslinger]"; mes "[Ninja Master]";
mes "Dammit.. Which one is a fake weapon?"; mes "Dammit.. which one is a fake weapon?";
next; next;
menu "Dirk",N_W,"Coward",N_W,"Stardust Blade",N_W,"Myrital",N_C; menu "Dirk",N_W,"Coward",N_W,"Stardust Blade",N_W,"Myrital",N_C;
N_Q3: N_Q3:
mes "[Gunslinger]"; mes "[Ninja Master]";
mes "It's Night and what new creature walks fields?"; mes "Which is the odd one out?";
next;
menu "Familiar",N_W,"Shadowring",N_C,"Zombie",N_W,"Willow",N_W;
N_Q4:
mes "[Gunslinger]";
mes "What one is the odd one out?";
next; next;
menu "Super Novice",N_W,"Gunslinger",N_W,"TaeKwon",N_C,"Ninja",N_W; menu "Super Novice",N_W,"Gunslinger",N_W,"TaeKwon",N_C,"Ninja",N_W;
N_C: N_C:
mes "[Gunslinger]"; mes "[Ninja Master]";
mes "..That's right."; mes "..That's right.";
mes "You can be a ninja from this day forward."; mes "You can be a ninja from this day forward.";
next; next;
jobchange Job_Ninja; jobchange Job_Ninja;
mes "[Ninja Master]"; mes "[Ninja Master]";
mes "Congratulations. Now go train."; mes "Congratulations. Now go train~ desu!";
close; close;
N_W: N_W:
mes "Argh.. Dammit, you baka!"; mes "Argh.. Dammit, you baka!";
next; next;
menu "Try Again",N_Question,"Give up",-; menu "Try again",N_Question,"Give up",-;
close; close;
N_Bad: N_Bad:
mes "Wait a second.. Your either too low in job level or you have Skill Points."; mes "Wait a second.. Your either too low in job level or you have skill points left...";
close; close;
N_Require: N_Require:
mes "[Ninja Master]"; mes "[Ninja Master]";
mes "Your required to correctly answer a question I fire at you randomly."; mes "You have to correctly answer a question I fire at you randomly.";
mes "Your job level must be at least 10 before trying."; mes "Your job level must be at least 10 before trying.";
close; close;
} }