summaryrefslogtreecommitdiff
path: root/npc/instances/OrcsMemory.txt
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-16 19:23:36 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-07-16 19:23:36 +0000
commit306c40e113c3f5e9b64a9395b72884873e1f109d (patch)
tree28fc51ea2da0f611ebbeb17c5a12a7224aa3b60a /npc/instances/OrcsMemory.txt
parent48333d3245d7a157b83d5620cf17c665455cc239 (diff)
downloadhercules-306c40e113c3f5e9b64a9395b72884873e1f109d.tar.gz
hercules-306c40e113c3f5e9b64a9395b72884873e1f109d.tar.bz2
hercules-306c40e113c3f5e9b64a9395b72884873e1f109d.tar.xz
hercules-306c40e113c3f5e9b64a9395b72884873e1f109d.zip
* 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://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14909 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/instances/OrcsMemory.txt')
-rw-r--r--npc/instances/OrcsMemory.txt11
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/instances/OrcsMemory.txt b/npc/instances/OrcsMemory.txt
index a4034557c..33476580f 100644
--- a/npc/instances/OrcsMemory.txt
+++ b/npc/instances/OrcsMemory.txt
@@ -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;
}