ID:269813
 
Is there some kind of way that I can make the browser automaticlaly open when you login? Even though I have made a browser help menu, people are still wondering how to do stuff..I asusme its because they don't have their browser window open.
I think this could work:
var/loginhtml = {"Welcome to [world.name]
"}


mob/Login()
usr << browse({"[loginhtml]"},{"window=LoginPage;title = Welcome!; Window; display=1; clear=1; size=350x450; border=1; can_close=1; can_resize=1; can_minimize=1; titlebar=1; scrollbar=1"})


That should work. When you log into the game, that would appear.









-Ian
[King Gunnerblast]
In response to King Gunnerblast
Yeah I already knew how to do that..Was just wondering was there soemthing to make the browser window open, upon login.
In response to Mecha Destroyer JD
mob/Login()
usr << browse('game.html',"display=1")

or

usr << browse("TESTING")

In response to King Gunnerblast
So all I need to do was change the display var..Simple enough..