TLO_BrowserLib

by The Lazy One
Small, effective, library for displaying items in browser.
ID:372615
 
Syntax
-----------------------------------------------
display("background color", "font size", "font color", "text to display")
-----------------------------------------------


Implementation Examples are as follows

-----------------------------------------------
mob/verb/Small_Text()
display("black","6","white","Hi Players!")


mob/verb/Large_Text()
var/name=input("Enter your name:")
display("black","4","orange",{"[name] gets burned for 7 points of damage!
Your flesh smolders as
you writh in pain on the dirt"})
-----------------------------------------------