viewing paste Unknown #627 | Athena

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Show all the messages at start and every 5 minutes
-   script  News    -1,{
OnInit:
    setarray .messages$[0],
        "Welcome",
        "Support Us By Writing Review About Us On RMS",
        "Double Exp And Double Drops Going On";
    set .msgs, getarraysize(.messages$);
 
OnTimer300000:
    for (set .@x, 0; .@x < .msgs; set .@x, .@x + 1) {
        announce .messages$[.@x],bc_all;
        sleep 5000;
    }
    initnpctimer;
}
Viewed 1593 times, submitted by Myzter.