diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-27 14:21:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-27 14:21:26 -0300 |
commit | 9d8ad0a54aa559d3d121037bd19a993afe72506f (patch) | |
tree | 655bdd0057bd56ca9ea04af5963e39293f1c9593 /npc/001-7/celestia_bossfight.txt | |
parent | 5c9b7b96ea78205dc428f38822b9e9f5e401c7e3 (diff) | |
download | serverdata-9d8ad0a54aa559d3d121037bd19a993afe72506f.tar.gz serverdata-9d8ad0a54aa559d3d121037bd19a993afe72506f.tar.bz2 serverdata-9d8ad0a54aa559d3d121037bd19a993afe72506f.tar.xz serverdata-9d8ad0a54aa559d3d121037bd19a993afe72506f.zip |
Some bugfixes, related to MLP
Diffstat (limited to 'npc/001-7/celestia_bossfight.txt')
-rw-r--r-- | npc/001-7/celestia_bossfight.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/001-7/celestia_bossfight.txt b/npc/001-7/celestia_bossfight.txt index fb0ce8945..43aa6b451 100644 --- a/npc/001-7/celestia_bossfight.txt +++ b/npc/001-7/celestia_bossfight.txt @@ -51,19 +51,19 @@ L_Survivor: mesq l("In this world, your friends are your strength. You deserve a reward for the victory, please choose whatever you want."); select l("I want a gemstone or ore"), - l("I want experience"), + rif(!countitem(MirrorLakeArmor), l("I want experience")), l("I want gold"), l("I want coal"), l("I want monster points"); mes ""; - .@r=rand(1,100)+(@YetiKing_Challenger*5); + .@r=rand2(1,100)+(@YetiKing_Challenger*5); switch (@menu) { case 1: if (.@r > 70) getitem rand2(Diamond, Amethyst), 1; else - getitem rand2(CopperOre, (REBRITH ? IridiumOre : TitaniumOre)), any(1,2); + getitem rand2(CopperOre, (REBIRTH ? IridiumOre : TitaniumOre)), any(1,2); break; case 2: .@r+=BaseLevel; |