what if i can minipulate CSS and html to incorporate it into the chat window in byond 3.5
basicly i want to add a table area for the announcements to display it to make them stand out alot more..
it is possible to do this at the current stage in byond development.. i know u can use html in pop-ups etc and on the chat window etc if u enable the html to be useable, so this is my question, how do i do it, if html is possible for he chat window..
This is my verb sofar..
Announce(msg as text|null)
set category="Staff"
if(!msg||msg==">"||msg=="> ")return
if(length(msg)>=300)msg=copytext(msg,1,300)
msg=dd_replacetext(msg,"\n","")
msg=html_encode(msg)
world << "
world<<sound('Sounds/talk.wav')
###
Basicly i want the part that displays the announce to be inside of a box with its own background colour etc. i have the css already for other things.. i just wanna make it stand out even more.. plus it'll be useful for future idears i have for my game..
What you could do, however, is make the announcement centered with a different font color.