Hey im trying to make my saving code save so that it saves the location of your character, but it doesnt work, it has no errors.
mob
var
saved_x
saved_y
saved_z
proc
Save_Character()
var
savefile/F = new()
Write(F)
client.Export(F)
src << "[src.name] saved."
mob/PC/verb/Save()
set category = "Communication"
src.Save_Character()
mob/Write(savefile/F)
saved_x = x
saved_y = y
saved_z = z
..()
ID:148177
Jun 9 2003, 1:15 pm
|
|
Jun 10 2003, 1:03 am
|
|
You're writing the locations fine, but you're not reading them in again. =) Check the other thread.
|