diff options
-rw-r--r-- | npc/commands/ucp.txt | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index 87e5bfc64..99257da16 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -143,12 +143,14 @@ function script UserCtrlPanel { mes l("Display daily reward screen: ") + col(l("Enabled"), 2); - // GSET_AUTORECEIVE_COINS - // Enables/Disable autoreceive strange coins - if (!GSET_AUTORECEIVE_COINS) - mes l("Autoreceive Strange Coins: ") + col(l("Disabled"), 1); - else - mes l("Autoreceive Strange Coins: ") + col(l("Enabled"), 2); + if (strcharinfo(2) == "Monster King") { + // GSET_AUTORECEIVE_COINS + // Enables/Disable autoreceive strange coins + if (!GSET_AUTORECEIVE_COINS) + mes l("Autoreceive Strange Coins: ") + col(l("Disabled"), 1); + else + mes l("Autoreceive Strange Coins: ") + col(l("Enabled"), 2); + } if (@unsaved) { mes ""; |