diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-27 21:21:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-27 21:21:55 -0300 |
commit | eda27bba64eabe741ffa47c008231a0aab3b902d (patch) | |
tree | 981e45a107a123086fbae72487758db363faf60f /npc/commands/ucp.txt | |
parent | 1bac65c9c8f1828515ddd7b4b95f3e06fb005381 (diff) | |
download | serverdata-eda27bba64eabe741ffa47c008231a0aab3b902d.tar.gz serverdata-eda27bba64eabe741ffa47c008231a0aab3b902d.tar.bz2 serverdata-eda27bba64eabe741ffa47c008231a0aab3b902d.tar.xz serverdata-eda27bba64eabe741ffa47c008231a0aab3b902d.zip |
New shovel option (to make up with low bury rates) - Autodigging.
Once you enable this with @ucp > Game Settings, you'll always try to dig.
Diffstat (limited to 'npc/commands/ucp.txt')
-rw-r--r-- | npc/commands/ucp.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index 99257da16..e1dc87d3e 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -143,6 +143,15 @@ function script UserCtrlPanel { mes l("Display daily reward screen: ") + col(l("Enabled"), 2); + // GSET_SHOVEL_AUTODIG + // Enables/Disable menu options for shovelling + // (if enabled, you'll always dig) + if (GSET_SHOVEL_AUTODIG) + mes l("Display Shovel Menu: ") + col(l("Disabled"), 1); + else + mes l("Display Shovel Menu: ") + col(l("Enabled"), 2); + + if (strcharinfo(2) == "Monster King") { // GSET_AUTORECEIVE_COINS // Enables/Disable autoreceive strange coins @@ -162,6 +171,7 @@ function script UserCtrlPanel { l("Return to User Control Panel"), l("Toggle Soul Menhir automatic saving"), l("Toggle Daily Reward screen"), + l("Toggle Shovel automatic digging"), rif(strcharinfo(2) == "Monster King", ("Toggle Autoreceive Event Coins")); mes ""; @@ -180,6 +190,8 @@ function script UserCtrlPanel { case 3: GSET_DAILYREWARD_SILENT=!GSET_DAILYREWARD_SILENT; break; case 4: + GSET_SHOVEL_AUTODIG=!GSET_SHOVEL_AUTODIG; break; + case 5: GSET_AUTORECEIVE_COINS=!GSET_AUTORECEIVE_COINS; break; } clear; |