ID:140036
 
Code:
Die(){
if(!key){
del src
}
else{
loc = null //vacate the scene
var/again = prompt("Play Again?") in list("yes","no") //the error is here
if(again == "yes"){
Login() //back to square one!
}
else{
del src
}
}
}


Problem description:
The error says that the prompt is an undefined proc but in the guide it says nothing about defining it. Can someone care to explain and if so, show me where to define the proc?

prompt's likely been deprecated and phased out since the guide's been written. use input instead, should work the same.
In response to Crashed
prompt() was a proc? There's something I never knew.
In response to Crashed
thanks man