@manabeast
You can either increase the update time of the banner to something longer (default 10 sec)
set .banner_refresh_rate, 10; //how many seconds per banner refresh...keep 1 or above (in seconds)
Or you can completely remove it by changing the WoE Info NPC as so:
FROM:
prontera,163,194,4 script WoE Info 837,{
if(getwaitingroomstate(3, strnpcinfo(3)) == -1)
donpcevent strnpcinfo(3)+"::OnInit";
doevent "WoEInfoBase::OnStartMenu";
end;
OnInit:
while (1) {
//only updates if msg is different
set .banner$, getwaitingroomstate(4, strnpcinfo(3));
if(getvariableofnpc(.roomMsg$, "WoEInfoBase") != .banner$) {
delwaitingroom;
waitingroom getvariableofnpc(.roomMsg$, "WoEInfoBase"), 0;
}
sleep 500;
}
end;
}
TO:
prontera,163,194,4 script WoE Info 837,{
doevent "WoEInfoBase::OnStartMenu";
end;
}