diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-09-14 23:10:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-09-14 23:10:00 -0300 |
commit | 9284a1c3406be2783c68aa05f11afee435887e57 (patch) | |
tree | 5684cc3c4f3c838952aeb92c723a33dbb6d90667 /npc/commands/ucp.txt | |
parent | efe9a4e6e1eb60ab5d2015acbfbbce82b0be70e9 (diff) | |
download | serverdata-9284a1c3406be2783c68aa05f11afee435887e57.tar.gz serverdata-9284a1c3406be2783c68aa05f11afee435887e57.tar.bz2 serverdata-9284a1c3406be2783c68aa05f11afee435887e57.tar.xz serverdata-9284a1c3406be2783c68aa05f11afee435887e57.zip |
Alchemy Table: Now you should be able to brew multiple instances at once!
However, this is expensive. Sponsors, who pay for hardware, can brew up to 25x at once.
Everyone else like me, who lives with other ppl money, will be capped to 10x at once.
I think 10 will be plenty without putting too much burden on the server.
Diffstat (limited to 'npc/commands/ucp.txt')
-rw-r--r-- | npc/commands/ucp.txt | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index 5ad0c0182..f2dfd166f 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -201,6 +201,14 @@ function script UserCtrlPanel { mes l("Long Text Wall Density: ") + col(l("Compact")+": "+GSET_LONGMENU_DENSITY, 2); + // GSET_FIXED_ALCHEMY + // Alchemy Table Behavior + if (GSET_FIXED_ALCHEMY) + mes l("Alchemy Table: ") + col(l("Never ask: Brew %d", GSET_FIXED_ALCHEMY), 1); + else + mes l("Alchemy Table: ") + col(l("Ask everytime"), 2); + + // GSET_ALCOHOL_NOOVERDRINK // Should players be allowed to drink themselves to death? if (GSET_ALCOHOL_NOOVERDRINK) @@ -247,6 +255,7 @@ function script UserCtrlPanel { l("Toggle Soul Menhir automatic saving"), l("Toggle Daily Reward screen"), l("Text Wall Density"), + l("Alchemy Table brewing"), l("Lethal alcohol overdrinking"), l("Show Tutorial Protips"), rif($EVENT$ == "Valentine", ("Valentine Eating")), @@ -274,12 +283,22 @@ function script UserCtrlPanel { GSET_LONGMENU_DENSITY+=1; break; case 5: - GSET_ALCOHOL_NOOVERDRINK=!GSET_ALCOHOL_NOOVERDRINK; break; + if (GSET_FIXED_ALCHEMY) { + GSET_FIXED_ALCHEMY=0; + } else { + .@max=(is_sponsor() ? 25 : 10); + mesc l("How many to brew? (%d-%d)", 0, .@max); + input(GSET_FIXED_ALCHEMY, 0, .@max); + GSET_FIXED_ALCHEMY=limit(0, GSET_FIXED_ALCHEMY, 10); + } + break; case 6: - TUTORIAL=!TUTORIAL; break; + GSET_ALCOHOL_NOOVERDRINK=!GSET_ALCOHOL_NOOVERDRINK; break; case 7: - GSET_VALENTINE_EATALL=!GSET_VALENTINE_EATALL; break; + TUTORIAL=!TUTORIAL; break; case 8: + GSET_VALENTINE_EATALL=!GSET_VALENTINE_EATALL; break; + case 9: GSET_AUTORECEIVE_COINS=!GSET_AUTORECEIVE_COINS; break; } clear; |