world
mob = /mob/create_character
view = 6
mob/Saiyan//the name of your character
icon = 'Goku.dmi'//the location of the icon
icon_state = "1"//the state of the icon if applicable
mob/Female
icon = 'Female.dmi'
icon_state = "1"
mob/NPC/Brolly
icon = 'Enemy.dmi'
icon_state = "1"
mob/create_character//just some coding, ignore this
var/mob/character//just some coding
Login()
var/charactername = input("What is your name?","Name")
switch(input("What Gender are you??","Gender") in list("Male","Female"))
if("Male")//if the person chooses this, then what?
character = new /mob/Saiyan()//creating the icon
if("Female")
character = new /mob/Female()
character.name = charactername
src.client.mob = character
src.loc=locate(1,1,1)
world << "[src.key] has just entered '[world.name]'!"
del(src)
i used this for the GM system
if(src.key == "Ashs999")//
src.verbs += /mob/admin/verb/Ban
src.verbs += /mob/admin/verb/Unban
src.verbs += /mob/admin/verb/Mute
src.verbs += /mob/admin/verb/Unmute
src.verbs += /mob/admin/verb/Edit
src.verbs += /mob/admin/verb/Play_Music
src.verbs += /mob/admin/verb/Stop_Music
src.verbs += /mob/admin/verb/Reboot
src.verbs += /mob/admin/verb/AdminTeleport
src.verbs += /mob/admin/verb/GM_Giving
src.verbs += /mob/admin/verb/ChangeWorldName
src.verbs += /mob/admin/verb/ChangeWorldStatus
src.verbs += /mob/admin/verb/Remove_GM
do you guys see problems?
before i actually put my name in they will show, but after a choos ea name, they go away....
try this but i am not sure. i work on my first game