ID:169594
 
I have always wanted a click login system for my game. like when u u go to a title screen and eaither click new load or delte. But i can never find a source that has one that i can insert into my game. I have seen and downloaded demos like that but theres no save and load Proc's included. I tryed to do it on my own but was 2 hard and i kept getting earrors. Can any1 please help me code 1 or offer me a free one. P.S. i have tried to insert dbz click logins into my game but i guess i don't have the right vars for it and i can't add them.
turf
Click_Login
icon = "New.dmi"
Click()
usr.New()


just divide your login screen up making it seperate squares and define the squares that make up the new load and delete part have a Click proc that calls the load, new, or delete proc. Simple as that.
In response to Zero's Baby
i know that but i can't figure out how to code in the save,new,and load system.
In response to Animekid09
turf
Title
Screen
icon = 'name.bmp'
layer = 98
density = 1
New
layer = 99
icon = 'iconforclicknew.dmi'
var/mob/new_mob
Click()//Put all your stuff that you want for the user to read/click under here

Load
icon = 'iconforclickload.dmi'
layer = 99
Click()
usr.LOADDATA()//varible for your load


This is just new and load, you can configure the rest out, if not search through some demos, they should help or even the dm guide.
In response to RavenHeart
thanks