Made it so both success and failure of the gaebolg quest count as completion.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12947 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
L0ne_W0lf 2008-07-12 23:52:00 +00:00
parent 5cf611ea6d
commit 75c0871bf2
3 changed files with 15 additions and 5 deletions

View File

@ -1,7 +1,9 @@
Date Added Date Added
====== ======
2008/07/13
* Rev. 12947 Made it so both success and failure of the gaebolg quest count as completion. [L0ne_W0lf]
2008/07/12 2008/07/12
* Rev. 12342, and 12343. THIS COMMIT IS SOLELY FOR THE PURPOSE OF SHUTTING PEOPLE THE FUCK UP. IN TEH LAST COMMIT PRIOR TO THIS I HAD TOTALLY FORGOTTEN TO ADD AN EXTRA BACKSLASH WHEN MAKING A COMMENT, RESULTING IN AN ERROR IN THE NPC PARSER. THIS ERROR HAS BEEN CORRECTED, AND THE MESSAGE "Whoops." LEFT IN THE CHANGELOG. [L0ne_W0lf] * Rev. 12342, and 12343. \/ wuz typo'd [L0ne_W0lf]
* Rev. 12341 Fixed a typo when disabling a control device. [L0ne_W0lf] * Rev. 12341 Fixed a typo when disabling a control device. [L0ne_W0lf]
* Rev. 12340 Updated Refiner function. cleaner, and less dated. [L0ne_W0lf] * Rev. 12340 Updated Refiner function. cleaner, and less dated. [L0ne_W0lf]
* Rev. 12339 Added Nameless Island Dungeon quest. [L0ne_W0llf] * Rev. 12339 Added Nameless Island Dungeon quest. [L0ne_W0llf]

View File

@ -3,7 +3,7 @@
//===== By: ================================================== //===== By: ==================================================
//= L0ne_W0lf //= L0ne_W0lf
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 1.0 //= 1.1
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena SVN //= eAthena SVN
//===== Description: ========================================= //===== Description: =========================================
@ -12,19 +12,26 @@
//= - Quest to gain access to Nameless Island and dungeon. //= - Quest to gain access to Nameless Island and dungeon.
//= - Variable in use: aru_monas (Max: 26) //= - Variable in use: aru_monas (Max: 26)
//= Peace to the Arunfeltz: //= Peace to the Arunfeltz:
//- - Not Implemented
//= - Variable in use: N/A (Max: N/A) //= - Variable in use: N/A (Max: N/A)
//= Z-Gang Quest: //= Z-Gang Quest:
//- - Not Implemented
//= - Variable in use: N/A (Max: N/A) //= - Variable in use: N/A (Max: N/A)
//= Rogue Guild Investigation Assistance: //= Rogue Guild Investigation Assistance:
//- - Not Implemented
//= - Variable in use: N/A (Max: N/A) //= - Variable in use: N/A (Max: N/A)
//= Maf's Loan: //= Maf's Loan:
//- - Not Implemented
//= - Variable in use: N/A (Max: N/A) //= - Variable in use: N/A (Max: N/A)
//= Broken Diamond: //= Broken Diamond:
//- - Not Implemented
//= - Variable in use: N/A (Max: N/A) //= - Variable in use: N/A (Max: N/A)
//= Unlucky Emerald: //= Unlucky Emerald:
//- - Not Implemented
//= - Variable in use: N/A (Max: N/A) //= - Variable in use: N/A (Max: N/A)
//===== Additional Comments: ================================= //===== Additional Comments: =================================
//= 1.0 First version. [L0ne_W0lf] //= 1.0 First version. [L0ne_W0lf]
//= 1.1 Made quest accessable to "Failed" gaebolg quest. [L0ne_W0lf]
//============================================================ //============================================================
airplane_01,95,61,3 script Agent#Aru 899,5,5,{ airplane_01,95,61,3 script Agent#Aru 899,5,5,{
@ -35,7 +42,7 @@ OnInit:
end; end;
OnTouch: OnTouch:
if ((prt_curse == 61) && (rachel_camel == 25) && (aru_monas < 1)) { if ((prt_curse == 56 || prt_curse == 61) && (rachel_camel == 25) && (aru_monas < 1)) {
hideoffnpc "Agent#Aru"; hideoffnpc "Agent#Aru";
mes "[????]"; mes "[????]";
mes "Are you "+strcharinfo(0)+"?"; mes "Are you "+strcharinfo(0)+"?";

View File

@ -3,7 +3,7 @@
//===== By: ================================================== //===== By: ==================================================
//= kobra_k88; L0ne_W0lf //= kobra_k88; L0ne_W0lf
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 2.2 //= 2.3
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena SVN //= eAthena SVN
//===== Description: ========================================= //===== Description: =========================================
@ -38,6 +38,7 @@
//= 2.0b Corrected a Typo error. (bugreport:950) [Samuray22] //= 2.0b Corrected a Typo error. (bugreport:950) [Samuray22]
//= 2.1 Added missing checkweights. [L0ne_W0lf] //= 2.1 Added missing checkweights. [L0ne_W0lf]
//= 2.2 Added Nameless Island quest addition. [L0ne_W0lf] //= 2.2 Added Nameless Island quest addition. [L0ne_W0lf]
//= 2.3 Bamph will now talk to those who failed the Gaebolg quest. [L0ne_W0lf]
//============================================================ //============================================================
// Prontera Culvert // Prontera Culvert
@ -2737,7 +2738,7 @@ prt_church,185,106,3 script Father Bamph 60,{
close; close;
} }
else { else {
if (prt_curse == 61) { if (prt_curse == 56 || prt_curse == 61) {
// Begin Nameless Island Access Quest Addition // Begin Nameless Island Access Quest Addition
if (aru_monas == 1) { if (aru_monas == 1) {
mes "[Father Bamph]"; mes "[Father Bamph]";