ID:263186
 
Code:Ok, i am new to this whole subscriber thing, and I am doing my best to try to make it work, but I am having problems right off the bat with the login.
mob/var
full_access

mob/create_character/Login()
if(client.CheckPassport("14c847b7157ec746"))
var/mob/character
full_access = 1
usr<<sound('opening.mid',1)
usr.loc=locate(8,7,2)
var/charactername = input("Hello, Pick a name for your character, something you wish for people to call you in the game.","Character Name?")
switch(input("Below pick one of the following backgrounds you wish for your character to be. It determines what skills you get in the game.","Character Background?") in list("Frog-Woman","Frog-Man","Human(Male)","Human(Female)"))
if ("Frog-Man")
character = new /mob/You/Warrior()
if ("Frog-Woman")
character = new /mob/You/Warrior2()
if ("Human(Male)")
character = new /mob/You/Cleric()
if ("Human(Female)")
character = new /mob/You/Magician()
character.name = charactername
src.client.mob = character
character.loc=locate (2,2,1)
world<<"<B>[character] has logged in!"
del(src)
..()
else
var/mob/character
full_access = 0
usr<<sound('opening.mid',1)
usr.loc=locate(8,7,2)
var/charactername = input("Hello, Pick a name for your character, something you wish for people to call you in the game.","Character Name?")
switch(input("Below pick one of the following backgrounds you wish for your character to be. It determines what skills you get in the game.","Character Background?") in list("Frog-Woman","Frog-Man","Human(Male)","Human(Female)"))
if ("Frog-Man")
character = new /mob/You/Warrior()
if ("Frog-Woman")
character = new /mob/You/Warrior2()
if ("Human(Male)")
character = new /mob/You/Cleric()
if ("Human(Female)")
character = new /mob/You/Magician()
character.name = charactername
src.client.mob = character
character.loc=locate (2,2,1)
world<<"<B>[character] has logged in!"
del(src)
..()


Problem description:Ok, when I login(i have checked it 1000 times, made about 100 new characters)it does not give me "full_access = 1" even though I am a subscriber in my HUB. I have checked the passport number, and they match. Please help me =\

if there is any coding i forgot to include, please just tell me