viewing paste Map Announce | Athena

Posted on the | Last edited on
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
//Will broadcast to the entire server
mellina,63,60,6 script  Sample  406,{
end;
 
OnStart:
    //announce "Message",<flag>{,<color>};
    announce "The raid team of "+ rid2name( $@warpwaitingpc[0] ) +" was teleported to the Raid Dungeon!",bc_blue|bc_all;
    warpwaitingpc "guild_vs2",50,50;
    enablenpc "insidenpc";
    end;
 
OnInit:
    waitingroom "waiting room",3,strnpcinfo(3)+"::OnStart",2;
    end;
}
 
//Will only broadcast to users within guild_vs2
mellina,63,60,6 script  Sample  406,{
end;
 
OnStart:
    //mapannounce "<map name>","<text>",<flag>{,<fontColor>{,<fontType>{,<fontSize>{,<fontAlign>{,<fontY>}}}}}};
    mapannounce "guild_vs2","The raid team of "+ rid2name( $@warpwaitingpc[0] ) +" was teleported to the Raid Dungeon!",bc_blue|bc_all;
    warpwaitingpc "guild_vs2",50,50;
    enablenpc "insidenpc";
    end;
 
OnInit:
    waitingroom "waiting room",3,strnpcinfo(3)+"::OnStart",2;
    end;
}
Viewed 2242 times, submitted by Streusel.