ID:141410
 

turf/hi_icon
icon = 'hi.dmi'
icon_state = "icon"
Click()
mob/hi() // <-- this is soppost to be mob/hi with the verb Hi_to_world()
usr.loc = locate(1,1,2)

turf/bye_icon
icon = 'bye.dmi'
icon_state = "icon"
Click()
mob/bye() // <-- this is soppost to be mob/bye with the verb Bye_to_world()
usr.loc = locate(1,1,2)


//------
mob/hi
icon='hi.dmi'
verb
Hi_to_world()
world << "Hi!"

mob/bye
icon='bye.dmi'
verb
Bye_to_world()
world << "Bye!"




i tried to edit http://www.byond.com/developer/Deadron/CharacterSaving
but not some box that pops up. i try making it click the screen turf/icon/obj/etc. Then you click the screen to select a class. the problem is
error:mob/bye:undefined var
error:mob/hi:undefined var
-can someone help me? thank you very much-

Read the DM Guide, as you obviously don't know how to program.