diff options
author | evera <evera@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-10 09:07:57 +0000 |
---|---|---|
committer | evera <evera@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-10 09:07:57 +0000 |
commit | 6e69ad3aa0a2b05f179aa72282f3116e680718ab (patch) | |
tree | 046ab24372bd7ca90d86ac4daaf080264900fcce /npc/quests/quests_lighthalzen.txt | |
parent | 0f885dafea1532477edb88be73af8de852ba9bba (diff) | |
download | hercules-6e69ad3aa0a2b05f179aa72282f3116e680718ab.tar.gz hercules-6e69ad3aa0a2b05f179aa72282f3116e680718ab.tar.bz2 hercules-6e69ad3aa0a2b05f179aa72282f3116e680718ab.tar.xz hercules-6e69ad3aa0a2b05f179aa72282f3116e680718ab.zip |
bio ethics quest doesn't warp alche's to empty room now, displays warning of unfinished quest and warps them back.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8223 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_lighthalzen.txt')
-rw-r--r-- | npc/quests/quests_lighthalzen.txt | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index 3e2feb588..f53f9bce1 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -4,7 +4,7 @@ //= Persian, Vicious_Pucca, Completed by aoa00
//= Evera, MasterOfMupppets
//===== Current Version: =====================================
-//= 2.1
+//= 2.2
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -38,6 +38,8 @@ //= capitalized or undercase. [Evera]
//= 2.0 Removed Duplicates [Silent]
//= 2.1 Added first part of Bio Ethics Quest [Evera]
+//= 2.2 Added bit to say Bio Ethics is unfinished, and if a player attempts, it warps them
+//= out after finished part... Don't want players getting stuck ;_; [Evera]
//============================================================
//= aoa's comment
//= In future, Need for new monsters. No-Drop, No-Exp, Weak "Mobster","VENOMOUS","NOXIOUS"
@@ -2670,7 +2672,12 @@ lhz_in01.gat,282,172,0 script BioEthTrg1::BETrg1 -1,1,1{ mes "are trying to sneak into here!";
mes "I know the security here is";
mes "pretty much failsafe, but...";
- close;
+ //Okay, we don't want players to get stuck here before quest is finished -.-;
+ next;
+ mes "Sorry, quest under construction";
+ close2;
+ warp "lhz_in01.gat",199,131;
+ end;
}
}
|