diff options
Diffstat (limited to 'npc/commands/ucp.txt')
-rw-r--r-- | npc/commands/ucp.txt | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/npc/commands/ucp.txt b/npc/commands/ucp.txt index c7f92d906..19033089e 100644 --- a/npc/commands/ucp.txt +++ b/npc/commands/ucp.txt @@ -244,6 +244,14 @@ function script UserCtrlPanel { mes l("Tutorial Protips: ") + col(l("Enabled"), 2); + // GSET_NOSCRY + // Should players be allowed to scry your information? + if (GSET_NOSCRY) + mes l("Others scrying you: ") + col(l("Not allowed"), 1); + else + mes l("Others scrying you: ") + col(l("Allowed"), 2); + + if ($EVENT$ == "Valentine") { // GSET_VALENTINE_EATONE // Eat all Chocolate Boxes from Valentine Day event @@ -279,6 +287,7 @@ function script UserCtrlPanel { l("Lethal alcohol overdrinking"), l("Change crafting method"), l("Show Tutorial Protips"), + l("Others scrying your char data"), rif($EVENT$ == "Valentine", ("Valentine Eating")), rif(strcharinfo(2) == "Monster King", ("Toggle Autoreceive Event Coins")); mes ""; @@ -322,8 +331,10 @@ function script UserCtrlPanel { case 9: TUTORIAL=!TUTORIAL; break; case 10: - GSET_VALENTINE_EATALL=!GSET_VALENTINE_EATALL; break; + GSET_NOSCRY=!GSET_NOSCRY; break; case 11: + GSET_VALENTINE_EATALL=!GSET_VALENTINE_EATALL; break; + case 12: GSET_AUTORECEIVE_COINS=!GSET_AUTORECEIVE_COINS; break; } clear; |