ID:167537
 
i need to be able to have when people login to my game have that little box pop up and have
____________
|New. |
| |
|Load. |
------------
and have it where they can have upto 1 charector and if they pick new their old one would be deleated, and then have the browser open and say what i coded it to say, and then a small window open's and say's this
______________
|Dayly Phrophet|
| (NEW's New's)|
----------------
PLZ help me or point me at the totorial or demo to help me.
if my box's didnt come out right dont blame me :'(
VolksBlade wrote:
i need to be able to have when people login to my game have that little box pop up and have

Try the input function.

and have it where they can have upto 1 charector and if they pick new their old one would be deleated,

Look up savefiles. If you only have one character, it is very simple. Create the new savefile, then to save the character all you have to do is output the mob to the savefile.
var/savefile/S = new("[ckey].sav")
S << src

The same in reverse loads to a mob.
S >> new_mob


and then have the browser open and say what i coded it to say, and then a small window open's and say's this

The browse function is what you want for that.
For your first thing, there are plenty of saving/loading demos.
For the second, use this;
blablabalblabla
var/html={" html "}
atom << browse(html, "window=Announce"