ID:267422
 
How can I disable html so no one can use it?
html_encode()
In response to Magnus VI
Where do I put that?
In response to RPG Pro
wherever you want to disable it(ex: a say verb). I'm not sure where exactly it goes into the code, but just hit F1 in DM to get the help section and it should tell you in there.
You use the built-in proc, html_encode(). Heres an example.

mob/verb/Test()
src << "This is unfiltered HTML."
sleep(5)
src << "[html_encode("This is filtered HTML")]"