if(q=="Delete Game")
if(fexists("players/[src.ckey].sav"))
var/decide=input("Are you sure you wish to delete your saved game?") in list ("Yes","No")
switch(decide)
if("Yes")
src<<"Deleting File..."
var/savefile/F=new("players/[src.ckey].sav")
del (F)
sleep(20)
src<<"File Deleted!"
goto Load
if("No")
goto Load
else
src<<"There is no save file to delete!"
goto Load
Problem description:
it goes throught the steps fine, except it doesn't delete the old savefile. Plz help