Skip to content
Permalink
Browse files
Implemented Kagerou/Oboro Equipment Quests.
Signed-off-by: Euphy <euphy.raliel@rathena.org>
  • Loading branch information
euphyy committed Jan 22, 2014
1 parent 03be2a5 commit e6bd3625c667184e0bce9c80540e3dbe85c886f5
Showing with 433 additions and 3 deletions.
  1. +2 −2 npc/quests/ninja_quests.txt
  2. +14 −1 npc/re/quests/eden/eden_iro.txt
  3. +416 −0 npc/re/quests/ninja_quests.txt
  4. +1 −0 npc/re/scripts_athena.conf
@@ -1,13 +1,13 @@
//===== rAthena Script =======================================
//= Ninja quests
//= Ninja Equipment Quests
//===== By: ==================================================
//= Playtester
//===== Current Version: =====================================
//= 1.2a
//===== Compatible With: =====================================
//= rAthena Project
//===== Description: =========================================
//= Ninja quests
//= Quests for Ninja weapons and armor.
//===== Additional Comments: =================================
//= 1.0 Ninja Arm Guards only yet [Playtester]
//= 1.1 Added Kaibara [Playtester]
@@ -471,7 +471,7 @@ moc_para01,50,39,4 script Eve Natalia 882,{
// Bubble Gum & Battle Manual Exchanger
//============================================================
moc_para01,48,184,2 script Gum & Manual Exchanger 562,{
if (Weight < MaxWeight / 2) {
if (checkweight(1201,1) == 0 || MaxWeight - Weight < 2000) {
mes "You're carrying too many items right now.";
close;
}
@@ -563,6 +563,14 @@ L_Exchange:
// Kafra Stacker
//============================================================
moc_para01,41,169,2 script Kafra Stacker#eden 749,{
if (checkweight(1201,1) == 0 || MaxWeight - Weight < 2000) {
mes "- Wait a moment! -";
mes "- Currently you'r carrying -";

This comment has been minimized.

Copy link
@Akkarinage

Akkarinage Jan 22, 2014

Member

*you're
:(

This comment has been minimized.

Copy link
@euphyy

euphyy Jan 22, 2014

Author Contributor

:(

mes "- too much weight in items. -";
mes "- Please come back later -";
mes "- after you put some into Kafra storage. -";
close;
}
mes "[Toma]";
mes "I can take your non-stacking Kafra Consumables";
mes "and make them fit neatly into stacks!";
@@ -590,6 +598,11 @@ moc_para01,41,169,2 script Kafra Stacker#eden 749,{
// Code Redeemer
//============================================================
moc_para01,38,162,2 script Code the Redeemer#Give1 405,{
if (checkweight(1201,1) == 0 || MaxWeight - Weight < 2000) {
mes "^0000ffHold it right there!";
mes "You're carrying too many items and don't have enough inventory space to receive any rewards. Please make more inventory space available and come back to take this challenge.^000000";
close;
}
mes "[Code the Redeemer]";
mes "Welcome, "+strcharinfo(0)+"!";
mes "I've been expecting you.";

0 comments on commit e6bd362

Please sign in to comment.