ID:167246
 
I was trying to recreate a login system and a save system and I couldn't. So what happens now is that I really can't test or play my game. Can anyone please be kind enough to post up a loggin and save system that will work really good. Not a simple one because i tried that and it doesn't work. Thanks

~Bamrulez
We can tell you how to create your own, but we can't just give code out for anyone at any givin time. For the login system, all you really need to do is this:

mob/Login()
..()
usr << "[src] has logged in!!!! YAY!!!!!!!!!!"
In response to KirbyRules
Ugh @ usr in login...
In response to KirbyRules
KirbyRules wrote:
We can tell you how to create your own, but we can't just give code out for anyone at any givin time. For the login system, all you really need to do is this:

mob/Login()
> ..()
> usr << "[src] has logged in!!!! YAY!!!!!!!!!!"


Login counts as a proc, therefor usr should not be used in it.

Replace it with the following:
src<<"[src] has logged in. Yey!"
In response to DivineO'peanut
WTF????? I know for a fact I put src... How'd that usr get in there? 0_o
In response to KirbyRules
Since it's a login, you most likely want to use

world << "[src] has logged in."