@capuche, thanks alot. btw. how to add 5 minute before event start, there will be a annoucement.
bc_all. where to add it?
set .ResetCounter,.ResetCounter+1;
set .EventON,1;
set .Timer,1;
set .Wait,1;
announce "The fact Event will begin in 3 minutes.",bc_all | bc_blue;
announce "The Event is being held in Event Room. Please use custom warper to go there.",bc_all | bc_blue;
setnpctimer 0;
initnpctimer;
end;
OnTimer60000:
if (.Timer!=1) end;
announce "The fact Event will begin in 2 minutes.",bc_all | bc_blue;
announce "The Event is being held in Event Room. Please use custom warper to go there.",bc_all | bc_blue;
end;
OnTimer120000:
if (.Timer!=1) end;
announce "The Fact Event will begin 1 minute.",bc_all | bc_blue;
announce "The Event is being held in Event Room. Please use custom warper to go there.",bc_all | bc_blue;
end;
OnTimer180000:
if (.Timer!=1) end;
announce "The fact Event has begun!",bc_all | bc_blue;
announce "The Event is being held in Event Room. Please use custom warper to go there.",bc_all | bc_blue;
set .Timer,0; stopnpctimer;
setnpctimer 0; initnpctimer;