ID:173705
 
i was planning to create a log on browser. I already tried some world.log but it saves on Hosts computer. I wanted to view the log while we are online. How dow i do it?

world.log <<" [src.name] : [msg]"

this one comes under my OOC command. I want to view the log through browser.

how exacly do i do it?

thank you

- Dtroys
well, basically, world.log is the host.

Make a new var like this:

var/global/TheLog=file("Log.txt")

TheLog<<"Whatever"

mob/verb/ViewLog()
browse_rsc("Log.txt")

I believe. Or possibly,

usr<<browse("[TheLog]")
The first actually downloads the log and opens it in notepad. The second should work in the browser.