diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-20 05:57:28 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-20 05:57:28 +0000 |
commit | b8d8aefb0bd4708fa285b5ea198665b6e5306a36 (patch) | |
tree | 1fb4d1a6b2fc0f6b6e6bd081cac08d135d6a3fe0 /npc/quests/seals | |
parent | 0a98391b9dba8f27a0c285fcdafc564d93a37e23 (diff) | |
download | hercules-b8d8aefb0bd4708fa285b5ea198665b6e5306a36.tar.gz hercules-b8d8aefb0bd4708fa285b5ea198665b6e5306a36.tar.bz2 hercules-b8d8aefb0bd4708fa285b5ea198665b6e5306a36.tar.xz hercules-b8d8aefb0bd4708fa285b5ea198665b6e5306a36.zip |
fixed mjolnir seal bugs, fixed the sign bugs
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9018 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/seals')
-rw-r--r-- | npc/quests/seals/mjolnir_seal.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/npc/quests/seals/mjolnir_seal.txt b/npc/quests/seals/mjolnir_seal.txt index fe7d33ec1..438244452 100644 --- a/npc/quests/seals/mjolnir_seal.txt +++ b/npc/quests/seals/mjolnir_seal.txt @@ -3,13 +3,14 @@ //===== By: ==================================================
//= SinSloth
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= eAthena
//===== Description: =========================================
//= Quest for breaking the seal of Mjolnir.
//===== Additional Comments: =================================
// 1.0 First version. Thanks to SinSloth for scripting it. [MasterOfMuppets]
+// 1.1 Fixed wrong label names [Luups]
//============================================================
prontera.gat,124,297,3 script Tialfi 706,{
@@ -1773,19 +1774,19 @@ mjolnir_09.gat,209,341,3 script Dwarf Blacksmith#south 826,{ menu "...?!",case41,"Dodge!",case42,"Block!",case43,"Jump!",case44,"Counter back!",case45;
case41:
set @player_def,0;
- goto L_PlayerDef2;
+ goto L_DefPlayer2;
case42:
set @player_def,1;
- goto L_PlayerDef2;
+ goto L_DefPlayer2;
case43:
set @player_def,2;
- goto L_PlayerDef2;
+ goto L_DefPlayer2;
case44:
set @player_def,3;
- goto L_PlayerDef2;
+ goto L_DefPlayer2;
case45:
set @player_def,4;
- goto L_PlayerDef2;
+ goto L_DefPlayer2;
L_DefPlayer2:
set @sudri_atk,rand(1,3);
set @damage,rand(20,25);
|