TLO_BrowserLib

by The Lazy One
Small, effective, library for displaying items in browser. [More]
To download this library for your Linux/Mac installation, enter this on your command line:

DreamDownload byond://TheLazyOne.TLO_BrowserLib##version=1

Emulator users, in the BYOND pager go to File | Open Location and enter this URL:

byond://TheLazyOne.TLO_BrowserLib##version=1

55 downloads
Version 1
Date added: Jan 8 2006
Last updated: Jul 29 2009
0 fans
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"})
-----------------------------------------------