summaryrefslogtreecommitdiff
path: root/npc/commands/scheduled-broadcasts.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-26 19:31:30 -0300
committerJesusaves <cpntb1@ymail.com>2019-03-26 19:31:30 -0300
commitcd1a604bc8c501811b568b04a5bf531407e629f5 (patch)
tree3c5905f346ec38077c1cc873b0a5cb34041e74a9 /npc/commands/scheduled-broadcasts.txt
parent03ab3408392dbc43ea75111f5312f345c4538605 (diff)
downloadserverdata-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.txt12
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;
}