diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-28 19:16:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-28 19:16:09 -0300 |
commit | 73102c1e93bdae914fb473c1b48a6038fceb5a18 (patch) | |
tree | e426f1ed52c078acbbd1400cf48946a6d9aa4608 | |
parent | 4ec016e404f70bb7a2609e4bc7ea769c2605f1cb (diff) | |
download | serverdata-73102c1e93bdae914fb473c1b48a6038fceb5a18.tar.gz serverdata-73102c1e93bdae914fb473c1b48a6038fceb5a18.tar.bz2 serverdata-73102c1e93bdae914fb473c1b48a6038fceb5a18.tar.xz serverdata-73102c1e93bdae914fb473c1b48a6038fceb5a18.zip |
Fix some typos
-rw-r--r-- | npc/003-1/sewer.txt | 8 | ||||
-rw-r--r-- | npc/012-7/celestia.txt | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/npc/003-1/sewer.txt b/npc/003-1/sewer.txt index 5f4c6f320..a5faabd47 100644 --- a/npc/003-1/sewer.txt +++ b/npc/003-1/sewer.txt @@ -6,11 +6,11 @@ // TE: Tulimshar, East 003-1,56,84,0 script #Sewer-TW NPC_NO_SPRITE,{ - if (getq(TulimsharQuest_Sewers) == 0) { + if (getq(TulimsharQuest_Sewers) == 0 && !countitem(MirrorLakeArmor)) { dispbottom l("The sewer mouth is locked."); end; } - if (BaseLevel < 25) end; + if (BaseLevel < 25 && !countitem(MirrorLakeArmor)) end; mesc l("Descend into Tulimshar sewers?"); if (askyesno() == ASK_YES) { @@ -23,11 +23,11 @@ } 003-1,115,111,0 script #Sewer-TE NPC_NO_SPRITE,{ - if (getq(TulimsharQuest_Sewers) == 0) { + if (getq(TulimsharQuest_Sewers) == 0 && !countitem(MirrorLakeArmor)) { dispbottom l("The sewer mouth is locked."); end; } - if (BaseLevel < 25) end; + if (BaseLevel < 25 && !countitem(MirrorLakeArmor)) end; mesc l("Descend into Tulimshar sewers?"); if (askyesno() == ASK_YES) { diff --git a/npc/012-7/celestia.txt b/npc/012-7/celestia.txt index 259bf202f..48b776c6c 100644 --- a/npc/012-7/celestia.txt +++ b/npc/012-7/celestia.txt @@ -344,7 +344,7 @@ L_VaultQuest: mesq l("Don't go alone, though! He would not listen to me, it is not you alone he'll pay attention. You will lose reagents!"); next; ##01_MLWORLD=##01_MLWORLD|MLP_TMW_CELESTIA; - Zeny+=400; + Zeny+=410; getitembound(EverburnPowder, 5, 4); setq HurnscaldQuest_Celestia, 1; @YetiKing_Challenger=0; |