ID:174459
 
Ok, you know how in zeta whenever you go to the bottom of the page it doesnt just say Join? Well i want to know how to do that, like in Icon Chatterz it says, "[ Version # Join! ]" or something like that, and in dragonball Zeta (the real one), it says Join (Players: #) [version #] (Host blah). Yea i want to know how to do that.
if you mean the text by the link, it's

world.status="blabla"

that would make

Join [blabla]

as for the version or players, you would have to make a version/people var and increment/decrease people when they join/leave...then it would be something like

mob/Login()
people++
spawn()StatusUpdate()
//blabla
mob/Logout()
people--
spawn()StatusUpdate()
//and wee
mob/verb/boot(m as mob in world)
people--
spawn()StatusUpdate()
//etc.
mob/proc/StatusUpdate()
world.status="Version [version], [people] people"
In response to The mothball
Does that proc support html? or will it be encoded?

-Camaro-
In response to The mothball
You should only be updating the number of people in the game when client/New() and client/Del() are called.