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?