diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-21 22:42:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-21 22:42:47 -0300 |
commit | 4b8e8b0b9d25da29aa56699266f9cdcbfb48718f (patch) | |
tree | 7608673072d303c10346e9a0a1188a0cb3235aaf | |
parent | b16fd9592bcf6f364027fc95d411b65850e759ac (diff) | |
download | serverdata-4b8e8b0b9d25da29aa56699266f9cdcbfb48718f.tar.gz serverdata-4b8e8b0b9d25da29aa56699266f9cdcbfb48718f.tar.bz2 serverdata-4b8e8b0b9d25da29aa56699266f9cdcbfb48718f.tar.xz serverdata-4b8e8b0b9d25da29aa56699266f9cdcbfb48718f.zip |
Sell Sunny Crystals, and evaluate Moubootaur (Sealed) at 250 Strange Coins.
-rw-r--r-- | npc/001-1/rewards.txt | 1 | ||||
-rw-r--r-- | npc/029-9/boss.txt | 4 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 9 |
3 files changed, 13 insertions, 1 deletions
diff --git a/npc/001-1/rewards.txt b/npc/001-1/rewards.txt index 8b9672414..56fcdcaa7 100644 --- a/npc/001-1/rewards.txt +++ b/npc/001-1/rewards.txt @@ -38,6 +38,7 @@ OnInit: sellitem MysteriousFruit,10000; // This is OP sellitem DoggyDog,9000; sellitem CattyCat,9000; + sellitem SunnyCrystal, 7500; sellitem DarkPulsar,6000; sellitem ThunderStaff,5000; sellitem PiouEgg,3915; diff --git a/npc/029-9/boss.txt b/npc/029-9/boss.txt index 86e27b681..1588cc752 100644 --- a/npc/029-9/boss.txt +++ b/npc/029-9/boss.txt @@ -404,8 +404,10 @@ OnMFDispose: OnMFSurvive: dispbottom l("Mission accomplished. Well played!"); getitem StrangeCoin, max(1, 1+(($@FIRESOFSTEAM_DIFF-100)/30)); - if (!MOUBOOTAUR_WINNER) + if (!MOUBOOTAUR_WINNER) { MOUBOOTAUR_WINNER=gettimetick(2); + getitem StrangeCoin, 250; // First victory - major reward + } specialeffect(FX_FANFARE, AREA, getcharid(3)); end; diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 0885ced76..2e3ed0a4c 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1131,6 +1131,15 @@ function script clientupdater { // Black Cat & Pinkie - not yet implemented MonsterMoney += Zeny / 250; // Initialization } + // Moubootaur Showdown Update + // sáb 21 out 2023 22:41:14 -03 + if (UPDATE < 1697938874) { + UPDATE=1697938874; + // Only if you won in 2023 + if (MOUBOOTAUR_WINNER > 1672531200) { + getitem StrangeCoin, 250; + } + } // :// End of Regular Update System //////////////////////////////////// |