mob
Login()
if (fexists("./savefiles/[ckey].sav"))
return
else
alert(src, "Welcome to The Wizarding World.", "Welcome","O.K.")
var/NAME = input(src, "Choose a name for your character.", "Choose a name")
var/GENDER = input(src, "What is your gender?", "Choose your gender") in list("Male","Female")
var/Player/M = new/Player()
M = src
M.NAME = NAME
M.GENDER = GENDER
M << "[M.NAME],[M.GENDER]" //World works, src and M doesn't?
..()
Problem description:
For some reason, when I try to output my debug message to M or src, it doesn't work but when I output it to the world, it does.