diff options
Diffstat (limited to 'npc/commands/ucp.txt')
-rw-r--r-- | npc/commands/ucp.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index 00e46af92..f96a919ee 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -175,6 +175,16 @@ function script UserCtrlPanel { mes l("Lethal overdrinking: ") + col(l("Allowed"), 2); + if ($EVENT$ == "Valentine") { + // GSET_VALENTINE_EATONE + // Eat all Chocolate Boxes from Valentine Day event + if (GSET_VALENTINE_EATONE) + mes l("[Valentine] Eat all chocolate: ") + col(l("Not allowed"), 1); + else + mes l("[Valentine] Eat all chocolate: ") + col(l("Allowed"), 2); + } + + if (strcharinfo(2) == "Monster King") { // GSET_AUTORECEIVE_COINS // Enables/Disable autoreceive strange coins @@ -196,6 +206,7 @@ function script UserCtrlPanel { l("Toggle Daily Reward screen"), l("Text Wall Density"), l("Lethal alcohol overdrinking"), + rif($EVENT$ == "Valentine", ("Valentine Eating")), rif(strcharinfo(2) == "Monster King", ("Toggle Autoreceive Event Coins")); mes ""; @@ -222,6 +233,8 @@ function script UserCtrlPanel { case 5: GSET_ALCOHOL_NOOVERDRINK=!GSET_ALCOHOL_NOOVERDRINK; break; case 6: + GSET_VALENTINE_EATONE=!GSET_VALENTINE_EATONE; break; + case 7: GSET_AUTORECEIVE_COINS=!GSET_AUTORECEIVE_COINS; break; } clear; |