ID:265008
 
Code:

runtime error: BYOND Error: bad mob
proc name: Read (/mob/Read)
usr: null
src:
call stack:
Read(players/Guest-1966267953.sav (/savefile))
LoadC()
LoadChar (10,3,1) (/turf/Title/LoadChar): Click(LoadChar (10,3,1) (/turf/Title/LoadChar), "Main.map2", "icon-x=29;icon-y=17;left=1;scr...")


mob
Write(var/savefile/F)
..()
F["x"] << x
F["y"] << y
F["z"] << z

Read(var/savefile/F)
..()<<<where proc error come from
var/x
var/y
var/z
F["x"] >> x
F["y"] >> y
F["z"] >> z
loc=locate(x,y,z)
Problem description:

every time i make a new chaacter then i load him i get this message how can any one fix this.</<where></<</<></<>&l t;/<>
Try doing a forum search on "Saving and Loading".

EDIT: Or a website-wide search on "Saving and Loading".
AddStats()
statobjs = list()
var/list/slist = list("Str","Def","Reir","Vit")
for(var/i in slist)
src.statobjs += new /stat (null, src, i)

mob/login
AddStats()


every time i try and put this code in and i try to load my charater i would get the error
In response to The ComEdiAn
Are you trying to add stats to your player? Or are you doing something else?