verb
Pause()
alert(" ","Pause","Continue","Exit")
if("Continue")
//What do I put here to make it do nothing?
if("Exit")
alert("Are you sure you want to exit?","Exit","Yes","Cancel")
if("Yes")
src.client.mob = new/mob/player
for(var/mob/Head/O in world)
del O
for(var/mob/Tails/T in world)
del T
for(var/mob/characters/S in world)
del S
if("Cancel")
//What do I put here to make it loop?
Problem description:
I cannot find away to make this do nothing if you click on Cancle or Continue. Can any body help out?
-Ryan