diff options
author | Haru <haru@dotalux.com> | 2013-11-10 04:28:03 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-11-10 04:31:28 +0100 |
commit | b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25 (patch) | |
tree | cbd305d3896bdc9f498ed9eb72836dc7b6c32b99 /npc/quests/okolnir.txt | |
parent | c9b63614070f7fce81c88cd60e5edad5a7730df0 (diff) | |
download | hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.tar.gz hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.tar.bz2 hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.tar.xz hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.zip |
Follow-up to 857bdc4f98be6cd1e185a24565d6b6b54752b9b4
- Consolidated case in variables, labels, constants.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/okolnir.txt')
-rw-r--r-- | npc/quests/okolnir.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/quests/okolnir.txt b/npc/quests/okolnir.txt index c1e09bfec..78d4e6b0e 100644 --- a/npc/quests/okolnir.txt +++ b/npc/quests/okolnir.txt @@ -58,9 +58,9 @@ function script F_Okolnir { mes "Would you like to try to enter here?"; close; case 2: - set .@Defence,getcastledata(strnpcinfo(4),3); + set .@defence,getcastledata(strnpcinfo(4),3); set .@Economy,getcastledata(strnpcinfo(4),2); - if ((.@Economy > 64) && (.@Defence > 29)) { + if ((.@Economy > 64) && (.@defence > 29)) { mes "[Guide]"; mes "Great! Economy and Defense are OK."; mes "You can enter Okolnir now...."; @@ -425,7 +425,7 @@ OnTouch: case 4: set .@m, 1661; break; case 5: set .@m, 1660; break; case 6: set .@m, 1659; break; - Default: set .@m, 1652; break; + default: set .@m, 1652; break; } monster "que_q"+getarg(0),getarg(1),getarg(2),strcharinfo(0),.@m,1,"#Gate_manager_"+getarg(0)+"::OnMyMobDead"; return; |