diff options
author | Poki#3 <Poki#3@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-23 19:35:29 +0000 |
---|---|---|
committer | Poki#3 <Poki#3@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-23 19:35:29 +0000 |
commit | 58ad1a1aeecbfd9e33e9361b0f5713b35f483c4b (patch) | |
tree | fbb22d910cc0277904c88f7ad20bccb597555297 /npc/quests | |
parent | 07e03074151d0361be665c05e140eca8e89295ca (diff) | |
download | hercules-58ad1a1aeecbfd9e33e9361b0f5713b35f483c4b.tar.gz hercules-58ad1a1aeecbfd9e33e9361b0f5713b35f483c4b.tar.bz2 hercules-58ad1a1aeecbfd9e33e9361b0f5713b35f483c4b.tar.xz hercules-58ad1a1aeecbfd9e33e9361b0f5713b35f483c4b.zip |
Fixed Summon skills, among others.
Changed Light Dun Spawn numbers a bit (Gemini is a Mini-boss)
Changed "Virus" to "Anopheles"
Fixed item name in Cube Room Quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5378 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/quests_lighthalzen.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index 6c6e3b81c..c0d9bbc26 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -33,12 +33,12 @@ lighthalzen.gat,1,1,7 script sneakAddSuber -1,{
OnInit:
- set $@sneakchance, 3; // chance of successful sneak(0 = never, 10 = always)
- set $@sneakguard, 0; // numbers of people who sneaked past guard
- set $@threshold, 10; // numbers of sneakers before mob appears
- set $@mob, 50; // Max respawn numbers of "mobsters"
- set $@mobcount, 0; // current numbers of "mobsters"
- set $@lhz_alert, 0; // Alert on Lighthalzen(0 = off, 1 = on)
+ set $@sneakchance, 3; // chance of successful sneak(0 = never, 10 = always)
+ set $@sneakguard, 0; // numbers of people who sneaked past guard
+ set $@threshold, 10; // numbers of sneakers before mob appears
+ set $@mob, 50; // Max respawn numbers of "mobsters"
+ set $@mobcount, 0; // current numbers of "mobsters"
+ set $@lhz_alert, 0; // Alert on Lighthalzen(0 = off, 1 = on)
set $@i, 0;
end;
@@ -1140,7 +1140,7 @@ L_4: L4_1:
mes "There is a small card inside of it.";
next;
- mes "You acquired the 'Laboratory Key'.";
+ mes "You acquired the 'Laboratory Permit'.";
set @gotkey,1;
getitem 2657,1;
close;
@@ -1186,7 +1186,7 @@ L_3: next;
input @answer$;
- if (@answer$ == "Laboratory Keycard" || @answer$ == "keycard") goto L_4;
+ if (@answer$ == "Laboratory Permit" || @answer$ == "permit") goto L_4;
mes "Nothing happened.";
close;
|