diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-02 14:17:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-02 14:17:43 -0300 |
commit | 5ed4fdbead138a784fe7c33b071b27c033921ab8 (patch) | |
tree | f0cfda3680e244a5cba6d3f723a830fd5dcf99c9 /npc/003-1-1 | |
parent | dce0c6dfcfc83a36e41b1ab24e13e1f7cc1216e2 (diff) | |
download | serverdata-5ed4fdbead138a784fe7c33b071b27c033921ab8.tar.gz serverdata-5ed4fdbead138a784fe7c33b071b27c033921ab8.tar.bz2 serverdata-5ed4fdbead138a784fe7c33b071b27c033921ab8.tar.xz serverdata-5ed4fdbead138a784fe7c33b071b27c033921ab8.zip |
Add Gemini and Celestia seasons (reduce Kamelot and Candor seasons).
Luvia's door can now be broken.
Diffstat (limited to 'npc/003-1-1')
-rw-r--r-- | npc/003-1-1/yetiking.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/003-1-1/yetiking.txt b/npc/003-1-1/yetiking.txt index 83b7a3599..55d2d893e 100644 --- a/npc/003-1-1/yetiking.txt +++ b/npc/003-1-1/yetiking.txt @@ -19,7 +19,7 @@ end; L_Summon: - if (countitem(EverburnPowder) < 1) { + if (countitem(EverburnPowder) < 1 && $EVENT$ != "Celestia") { dispbottom l("I need to pour the @@ to summon the Yeti King.", getitemlink(EverburnPowder)); end; } @@ -28,7 +28,8 @@ L_Summon: end; } - delitem EverburnPowder, 1; + if ($EVENT$ != "Celestia") + delitem EverburnPowder, 1; dispbottom l("Emoc otem itey gnik!"); // come to me yeti king, spelled backwards. Sorry. callfunc "FYE_Olympics_CH"; .inUse=1; |