* Added Akagi to Ninja Job quest
- he teleports job level 10 novices to amatsu for free git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10079 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
8d21e81cf9
commit
1db65cd071
@ -27,6 +27,8 @@ KarLaeda
|
||||
Date Added
|
||||
======
|
||||
2007/03/28
|
||||
* Added Akagi to Ninja Job quest [Playtester]
|
||||
- he teleports job level 10 novices to amatsu for free
|
||||
* My attempt at fixing the zealotus mask npc, now correctly requires a whip
|
||||
- it could have been a one-liner, but not possible with current script engine
|
||||
2007/03/23
|
||||
|
@ -3,7 +3,7 @@
|
||||
//===== By: ==================================================
|
||||
//= Legionaire
|
||||
//===== Current Version: =====================================
|
||||
//= 1.1a
|
||||
//= 1.2
|
||||
//===== Compatible With: =====================================
|
||||
//= eAthena SVN that supports Ninjas
|
||||
//===== Description: =========================================
|
||||
@ -14,8 +14,56 @@
|
||||
//= The official dialouge in English comes out, this is the
|
||||
//= Best that I can do.
|
||||
//= 1.1 Optimized, updated, checked [Lupus]
|
||||
//= 1.2 Added Akagi [Playtester]
|
||||
//============================================================
|
||||
|
||||
alberta,30,65,3 script Akagi#nq 730,{
|
||||
|
||||
if(Class == Job_Novice){
|
||||
if(JobLevel > 9){
|
||||
mes "[Akagi]";
|
||||
mes "Hmm...";
|
||||
mes "Some force must have lead your feet to this dark alley because you are needed here.";
|
||||
mes "Would you like to walk the path of Patience?";
|
||||
next;
|
||||
if(select("No, I don't want to go.:Yep, I'll walk the path.") == 1){
|
||||
mes "[Akagi]";
|
||||
mes "Ok.";
|
||||
mes ".....";
|
||||
mes "Then farewell.";
|
||||
close;
|
||||
}else{
|
||||
mes "[Akagi]";
|
||||
mes "Very well, I'll send you over right away.";
|
||||
close2;
|
||||
switch (rand(3)) {
|
||||
case 1:
|
||||
warp "amatsu", 170, 229;
|
||||
break;
|
||||
case 2:
|
||||
warp "amatsu", 216, 188;
|
||||
break;
|
||||
default:
|
||||
warp "amatsu", 178, 176;
|
||||
break;
|
||||
}
|
||||
end;
|
||||
}
|
||||
}
|
||||
else{
|
||||
mes "[Akagi]";
|
||||
mes "This isn't where you should be.";
|
||||
mes "Come back after you've become stronger.";
|
||||
close;
|
||||
}
|
||||
}
|
||||
else{
|
||||
mes "[Akagi]";
|
||||
mes "I have nothing to say to you.";
|
||||
mes "Go back to where you came from.";
|
||||
close;
|
||||
}
|
||||
}
|
||||
|
||||
que_ng,30,65,3 script Cool Kid#nq 730,{
|
||||
set @npcname$,"[Cool Kid]";
|
||||
|
Loading…
x
Reference in New Issue
Block a user