diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-29 14:45:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-29 14:45:58 -0300 |
commit | 8437feb804efa779449a98c23a3f8d52ef9f925c (patch) | |
tree | b8b141e21de4ce20812aeabc272a6a5db4ecd064 /npc | |
parent | 25617bbb7594916506096c2e9bcfeba83fd3e462 (diff) | |
download | serverdata-8437feb804efa779449a98c23a3f8d52ef9f925c.tar.gz serverdata-8437feb804efa779449a98c23a3f8d52ef9f925c.tar.bz2 serverdata-8437feb804efa779449a98c23a3f8d52ef9f925c.tar.xz serverdata-8437feb804efa779449a98c23a3f8d52ef9f925c.zip |
Remove from UCP the shovel option
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/ucp.txt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index e1dc87d3e..99257da16 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -143,15 +143,6 @@ 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 @@ -171,7 +162,6 @@ 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 ""; @@ -190,8 +180,6 @@ 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; |