ID:269092
 
How would I go about coding in a link to the game's website; so when the player logs in, the website automatically comes up in the browser window?
Well, I can help you out with a display page that can link you to other sites. Other than that, I have no clue to anything else. I am not an HTML expert, but I'll try to figure out how to make it link directly to a site for you. I havent really experimented with the code much. Good luck. ^_^

mob/verb
Display_HTML()
var/html= "<STYLE>BODY{background: black; color:green}</STYLE><a href=http://byond.com>BYOND</a><br><a href=http://relentless.net.tc>My Game's Site"
usr << browse(html,"window=HTML;file=null;display=1;clear=0;size=400x200;border=1;can_close=1;can_resize=1;can_minimize=1;titlebar=1")

Mecha Destroyer JD wrote:
How would I go about coding in a link to the game's website; so when the player logs in, the website automatically comes up in the browser window?

Generally that's pretty tacky. Instead let the player decide about that by using a verb. If you have a rules/instructions page or such, though, include it in your game resources so it will always be available.

Lummox JR