diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-26 19:31:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-26 19:31:30 -0300 |
commit | cd1a604bc8c501811b568b04a5bf531407e629f5 (patch) | |
tree | 3c5905f346ec38077c1cc873b0a5cb34041e74a9 /npc/commands/scheduled-broadcasts.txt | |
parent | 03ab3408392dbc43ea75111f5312f345c4538605 (diff) | |
download | serverdata-cd1a604bc8c501811b568b04a5bf531407e629f5.tar.gz serverdata-cd1a604bc8c501811b568b04a5bf531407e629f5.tar.bz2 serverdata-cd1a604bc8c501811b568b04a5bf531407e629f5.tar.xz serverdata-cd1a604bc8c501811b568b04a5bf531407e629f5.zip |
Refactor how PC Login events will be handled.
Malindou is now responsible for those.
Daily login fancy GUI - can be disabled with @ucp
Diffstat (limited to 'npc/commands/scheduled-broadcasts.txt')
-rw-r--r-- | npc/commands/scheduled-broadcasts.txt | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/npc/commands/scheduled-broadcasts.txt b/npc/commands/scheduled-broadcasts.txt index 4503c7b23..1801663a7 100644 --- a/npc/commands/scheduled-broadcasts.txt +++ b/npc/commands/scheduled-broadcasts.txt @@ -1,3 +1,4 @@ +// Evol Script // Authors: Gumi function script StoneBoard { @@ -213,13 +214,14 @@ OnCall: closedialog; end; -OnPCLoginEvent: +OnInit: + bindatcmd "sched", "@sched::OnCall", 80, 99, 1; +} + +function script StoneBoardRead { if ($@SCHED_Opt[0] && $@SCHED_Msg$ != "") { announce $@SCHED_Msg$, bc_self; } - end; - -OnInit: - bindatcmd "sched", "@sched::OnCall", 80, 99, 1; + return; } |