diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-17 16:21:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-17 16:21:26 -0300 |
commit | b318c8097bdc6ab3f635f2054ef503a4057daf73 (patch) | |
tree | 1f80bf89717783519064fa0425b032adf1475956 /npc/003-1 | |
parent | 3cc8a03902b34e0bff2429ead34bf7c7f76a7457 (diff) | |
download | serverdata-b318c8097bdc6ab3f635f2054ef503a4057daf73.tar.gz serverdata-b318c8097bdc6ab3f635f2054ef503a4057daf73.tar.bz2 serverdata-b318c8097bdc6ab3f635f2054ef503a4057daf73.tar.xz serverdata-b318c8097bdc6ab3f635f2054ef503a4057daf73.zip |
Remove the control from @event - it's now handled by Michel.
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/michel.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/003-1/michel.txt b/npc/003-1/michel.txt index 03893dfbe..5278c3065 100644 --- a/npc/003-1/michel.txt +++ b/npc/003-1/michel.txt @@ -61,14 +61,16 @@ L_GM: mes ""; switch (@menu) { case 2: - $REFERRAL_ENABLED=!$REFERRAL_ENABLED; break; + $REFERRAL_ENABLED=!$REFERRAL_ENABLED; logmes "Enabled REFER event.", LOGMES_ATCOMMAND; break; case 3: HallOfReferral(); break; case 4: mesc "Are you sure?", 1; next; - if (askyesno() == ASK_YES) + if (askyesno() == ASK_YES) { deletearray($REFERRAL_IDS); + logmes "##1Deleted PERMANENTLY the REFER event scoreboard.##0", LOGMES_ATCOMMAND; + } default: close; } next; |