What do you want to display in the overhead?
Edit:
Iam guessing you want the time displayed in the overhead. It will show the time
prontera,155,181,5 script Sample 757,{
if( getmapusers( .Map$ ) ){
npctalk "You cant go in right now. There is someone inside.";
}else{
set .charName$,strcharinfo(0);//Store the character name for message overhead
announce "["+strcharinfo(0)+"] entered Gold Room.";
warp .Map$,0,0;
initnpctimer;
}
end;
OnInit:
set .Map$,"guild_vs5";
set .timeOut,60000;
monster .Map$,0,0,"Gold",1002,100,strnpcinfo(0)+"::OnMobKill";
end;
OnMobKill:
getitem 969,1;
monster .Map$,0,0,"Gold",1002,1,strnpcinfo(0)+"::OnMobKill";
end;
OnTimer1000:
if(getnpctimer(0)>=.timeOut)
goto TimesUp;
else
{
message .charName$,"You have "+((.timeOut-getnpctimer(0))/1000)+" left.";
initnpctimer;
}
end;
TimesUp:
message .charName$,"Time's Up!! You will be warped out right now..";
mapannounce .Map$,"Time's Up !! You will be warped out right now..";
mapwarp .Map$,"prontera",155,181;
end;
}