mob
proc
Load()
src.frozen=1
switch(alert("Which Savefile do you wish to load?","Load?","SaveSlot 1","SaveSlot 2","SaveSlot 3"))
if("SaveSlot 1")
if(fexists("savefiles/[src.ckey]1.sav"))
var/savefile/F = new("savefiles/[src.ckey]1.sav")
Read(F)
F["usr"] >> src
F["last_x"] >> src.x//line 104
F["last_y"] >> src.y
F["last_z"] >> src.z
else
alert("No savefile found in the directory","ERROR")
return
Problem description:runtime error: Cannot modify null.x.
proc name: Load (/mob/proc/Load)
source file: Clicks.dm,104
usr: the juex (/mob/ChoosingCharacter)
src: null
call stack:
Load()
Load (9,6,2) (/turf/Load): Click(Load (9,6,2) (/turf/Load))well for some reason its not wanting to changeing clients x plese help
null >> src
src == null
F["last_x"] >> null
null doesn't have a variable x!
==> error
That's my interpretation.