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
ID:173705
Nov 28 2003, 4:26 am
|
|
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.