diff options
-rw-r--r-- | npc/merchants/kunai_maker.txt | 5 | ||||
-rw-r--r-- | npc/quests/ninja_quests.txt | 14 |
2 files changed, 10 insertions, 9 deletions
diff --git a/npc/merchants/kunai_maker.txt b/npc/merchants/kunai_maker.txt index ab630f72c..97bc89f12 100644 --- a/npc/merchants/kunai_maker.txt +++ b/npc/merchants/kunai_maker.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= rAthena dev team //===== Current Version: ===================================== -//= 1.3 +//= 1.3a //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= @@ -15,10 +15,11 @@ //= 1.1 Officialized script [Playtester] //= 1.2a Optimized/cleaned up a bit [ultramage] //= 1.3 Updated to match AEGIS script. [Kisuka] +//= 1.3a Kagerou/Oboro support (BaseJob -> BaseClass) [Euphy] //============================================================ que_ng,72,29,3 script Kunai Merchant Kashin 83,{ - if(BaseJob == Job_Ninja) { + if(BaseClass == Job_Ninja) { mes "[Kashin]"; mes "I am Kashin, distributor"; mes "of Kunai for Ninjas. Take"; diff --git a/npc/quests/ninja_quests.txt b/npc/quests/ninja_quests.txt index 76fb137b3..1c6d4b57d 100644 --- a/npc/quests/ninja_quests.txt +++ b/npc/quests/ninja_quests.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Playtester //===== Current Version: ===================================== -//= 1.2 +//= 1.2a //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= @@ -12,12 +12,12 @@ //= 1.0 Ninja Arm Guards only yet [Playtester] //= 1.1 Added Kaibara [Playtester] //= 1.2 Added Tetsu [Playtester] -// (original NPC Taitsu was made by Auron) +//= 1.2a Kagerou/Oboro support (BaseJob -> BaseClass) [Euphy] //============================================================ que_ng,28,50,3 script Boshuu 709,{ - if (BaseJob != Job_Ninja){ + if (BaseClass != Job_Ninja){ mes "[Boshuu]"; mes "I'm the best craftsman out of what people call the Three Craftsmen of Ninja Tools."; mes "They call me Murata Boshuu."; @@ -364,7 +364,7 @@ que_ng,28,50,3 script Boshuu 709,{ que_ng,28,45,3 script Basshu 86,{ - if(BaseJob != Job_Ninja){ + if(BaseClass != Job_Ninja){ mes "[Basshu]"; mes "I am one of the brothers of the three brothers in charge of crafting shields in the east named Murata Basshu"; next; @@ -715,7 +715,7 @@ que_ng,28,45,3 script Basshu 86,{ que_ng,27,18,3 script Toshu 709,{ - if(BaseJob != Job_Ninja){ + if(BaseClass != Job_Ninja){ mes "[Toshu]"; mes "How are you~"; mes "My young friend~"; @@ -847,7 +847,7 @@ que_ng,27,18,3 script Toshu 709,{ que_ng,72,34,3 script Craftsman Kaibara 847,{ - if (BaseJob != Job_Ninja){ + if (BaseClass != Job_Ninja){ mes "[Kaibara]"; mes "I am a Craftsman called Kaibara"; mes "I create weapons for Ninjas."; @@ -1127,7 +1127,7 @@ que_ng,72,34,3 script Craftsman Kaibara 847,{ que_ng,22,62,3 script Tetsu 709,{ mes "[Tetsu]"; - if(BaseJob != Job_Ninja){ + if(BaseClass != Job_Ninja){ mes "I'm The Craftman of Fuuma Ninjas called Tetsu."; next; mes "[Tetsu]"; |