* Have been working on this for months: Added Nidhoggr's Nest instance.

* Tweaks to how checkquest is used in orc's memory and sealed shrine.


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14909 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
L0ne_W0lf 2011-07-16 19:23:36 +00:00
parent cf819cc321
commit 470a089218
7 changed files with 2966 additions and 12 deletions

View File

@ -5650,8 +5650,9 @@
2022,Nidhoggr's Shadow@NPC_ALLHEAL,walk,687,1,3000,10000,10000,no,self,rudeattacked,0,,,,,,,
2022,Nidhoggr's Shadow@NPC_CALLSLAVE,attack,352,1,10000,0,30000,yes,self,always,0,,,,,,,
2022,Nidhoggr's Shadow@NPC_CALLSLAVE,idle,352,1,10000,0,30000,yes,self,always,0,,,,,,,
2022,Nidhoggr's Shadow@NPC_SUMMONSLAVE,attack,196,1,10000,700,10000,no,self,slavele,3,,,,,,,
2022,Nidhoggr's Shadow@NPC_SUMMONSLAVE,idle,196,1,10000,700,10000,no,self,slavele,3,,,,,,,
2022,Nidhoggr's Shadow@NPC_SUMMONSLAVE,attack,196,5,10000,700,10000,no,self,slavele,3,2027,,,,,,
2022,Nidhoggr's Shadow@NPC_SUMMONSLAVE,idle,196,5,10000,700,10000,no,self,slavele,3,2027,,,,,,
2022,Nidhoggr's Shadow@NPC_SUMMONSLAVE,idle,196,5,10000,700,10000,no,self,onspawn,0,2027,,,,,,
2022,Nidhoggr's Shadow@NPC_MAGICMIRROR,idle,671,3,10000,0,120000,yes,self,always,0,,,,,,,
2022,Nidhoggr's Shadow@NPC_MAGICMIRROR,chase,671,3,10000,0,120000,yes,self,always,0,,,,,,,
2022,Nidhoggr's Shadow@NPC_MAGICMIRROR,attack,671,3,10000,0,120000,yes,self,always,0,,,,,,,

View File

@ -331,8 +331,8 @@
3132,0,0,0,0,0,0,0,"Z Gang Wanted - Find the Z Gang's Agit"
3133,0,0,0,0,0,0,0,"Z Gang Wanted - Agit Found!"
3134,0,0,0,0,0,0,0,"Z Gang Wanted - Clean Sweep of Z Gang"
3135,0,0,0,0,0,0,0,"Nidhoggur's Nest"
3136,0,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit"
3135,259200,0,0,0,0,0,0,"Nidhoggur's Nest"
3136,14400,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit"
3200,0,0,0,0,0,0,0,"Job changes to Rune knight - Recommendation for Rune knight"
3201,0,0,0,0,0,0,0,"Job changes to Rune knight - Secret rendezvous of Rune knigh"

View File

@ -1,5 +1,8 @@
Date Added
======
2011/07/16
* Rev. 14900 Have been working on this for months: Added Nidhoggr's Nest instance. [L0ne_W0lf]
* Tweaks to how checkquest is used in orc's memory and sealed shrine.
2011/07/13
* Rev. 14905 Tweaked the sealed shrine entrance NPCs. Hopefully the damn thing works now. [L0ne_W0lf]
2011/05/23

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
//= 1.4
//= 1.5
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@ -27,6 +27,7 @@
//= 1.3 Disabled an exploit related to the orc hero spawn. [L0ne_W0lf]
//= Corrected the variable type for party leader name.
//= 1.4 Fixed donpcevent calling non-existant npc. (bugreport:4039) [L0ne_W0lf]
//= 1.5 Fixed a checkquest condition never setting quest. [L0ne_W0lf]
//============================================================
// Entrance
@ -74,7 +75,7 @@ gef_fild10,242,202,0 script Dimensional Gorge Piece 406,{
close;
}
instance_attach(.@instance);
instance_set_timeout 14400,300,.@instance;
instance_set_timeout 7200,300,.@instance;
instance_init(.@instance);
// First Floor
@ -134,7 +135,7 @@ gef_fild10,242,202,0 script Dimensional Gorge Piece 406,{
else {
mapannounce "gef_fild10", .@p_reader$ + " of the party, " + .@p_name$ + " is entering the " + .@md_name$ + ".",bc_map,"0x00ff99";
warp "1@orcs",179,15;
setquest 12059;
if (checkquest(12059)== -1) setquest 12059;
close;
}
case 3:
@ -162,7 +163,7 @@ gef_fild10,242,202,0 script Dimensional Gorge Piece 406,{
//else if (move_md == 0) {
else {
mapannounce "gef_fild10", .@p_name$ + " Party's member " + .@p_reader$ + " has entered the " + .@md_name$ + ".",bc_map,"0x00ff99";
setquest 12059;
if (checkquest(12059)== -1) setquest 12059;
warp "1@orcs",179,15;
close;
}
@ -194,7 +195,7 @@ gef_fild10,242,202,0 script Dimensional Gorge Piece 406,{
//else if (move_md == 0) {
else {
mapannounce "gef_fild10", .@p_name$ + " Party's member " + .@p_reader$ + " has entered the " + .@md_name$ + ".",bc_map,"0x00ff99";
setquest 12059;
if (checkquest(12059)== -1) setquest 12059;
warp "1@orcs",179,15;
close;
}

View File

@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
//= 1.6
//= 1.7
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@ -19,6 +19,7 @@
//= 1.6 Players should be able to re-take the quest after 12 hours now.
//= Changed quest 3046 to 3040. This is the correct quest id.
//= Removed checking quest 3045, unofficial check.
//= 1.7 Fixed a checkquest condition never setting quest. [L0ne_W0lf]
//============================================================
// Sealed Catacomb Entrance
@ -284,7 +285,7 @@ monk_test,306,151,3 script Grave of Baphomet#edq 111,{
//else if (ret == 0) {
else {
mapannounce "monk_test","[" + strcharinfo(0) + "] member of the [" + getpartyname(.@party_id) + "] party has entered the Sealed Shrine.",bc_map,"0x00ff99";
if (!checkquest(3040)) setquest 3040;
if (checkquest(3040) == -1) setquest 3040;
warp "1@cata",100,224;
}
}

View File

@ -343,5 +343,5 @@ npc: npc/battleground/kvm/kvm03.txt
npc: npc/instances/SealedShrine.txt
npc: npc/instances/EndlessTower.txt
npc: npc/instances/OrcsMemory.txt
//npc: npc/instances/NydhoggsNext.txt
npc: npc/instances/NydhoggsNext.txt
// --------------------------------------------------------------