ID:262572
 
Code:
 mob
Login()
src.lockmovement = 1
src.loc = locate (17,9,1)
src.invisibility = 101
Move()
if(src.lockmovement == 0)
.=..()
else
return 0
background
icon = 'Titlepage.bmp'


create_character
var/mob/character
icon = 'title.dmi'
icon_state = "n"
Click()
var/inputname = input("Please input a desired name.","Name",usr.key) as text
if(inputname == null||inputname == "Guest")
usr.name = usr.key
else
usr.name = "[html_encode(inputname)]"
usr.icon = null
switch(input("What Is Your Gender?","Gender") in list("Male","Female"))
if("Male")
character = new /mob/Male()
if("Female")
character = new /mob/Female()
usr.icon = character
usr.lockmovement = 0
usr.invisibility = 0
usr.loc = locate(2,2,2)
..()


mob/Male
icon='Male.dmi'

mob/Female
icon='Female.dmi'


Problem description:
Ok well I have a code for my title page... But as you can see in the code i only have n which is only one letter for new. It was this before I actually changed it trying to use another method

create_character
var/mob/character
icon = 'new.bmp'
Click()
var/inputname = input("Please input a desired name.","Name",usr.key) as text
if(inputname == null||inputname == "Guest")
usr.name = usr.key
else
usr.name = "[html_encode(inputname)]"
usr.icon = null
switch(input("What Is Your Gender?","Gender") in list("Male","Female"))
if("Male")
character = new /mob/Male()
if("Female")
character = new /mob/Female()
usr.icon = character
usr.lockmovement = 0
usr.invisibility = 0
usr.loc = locate(2,2,2)
..()

Plus it was just the word new but the background which i tried endlessly to get rid of (even put gray behind it and all) didnt work. (The example is just a portion and if you were gonna grade that portion on my artwork shame on you =P)
Example:
http://i18.photobucket.com/albums/b130/Sano__/Untitled-2.jpg

I only posted to see if there is a better way to do this because it sort of seems unlogical to have to do each letter code by code. So any help would be very appreciated.
isnt this a demo
In response to JRR-Zero
Not to my knowlege if it is then it is because i seriously dont remember since this thing has been sitting on my hard drive for a while