ID:154988
 
help with a login system that creates a player, their name.
and logout that saves their name and last visited location...? any help would be appreitiated.
1. Do you want a person to be able to choose their name?

2. This article by Deadron is relevant to your interests.
In response to Lugia319
it wont let me download....i just need like the idea of the code and i think i can conjur it up
In response to FreeVagabon
mob/Login()
world << "[src] has connected."
src.name = input("What would you like your name to be?","Choose Name","[src.key]") as text
mob/Logout()
//Saving Stuff Here.
del(src)


That's all their is to the login. As for the saving. Just type in the forum search: "Saving & Loading" it's simple. I'm 100% sure you'll find what you need.