ID:141357
 
Code:


Well i am currently having a problem with the coding for my login and creation screen. I do not wish to create a Title screen and make the user click New ect... But i wish for the New/Load/Delete to have a seperate screen pop up you know? Such as Dragonball Finale's, and other games.

Here is the code at the moment:mob
Login()
var/list/Creation = list("New","Load","Delete")

if("New")


You're missing a good bit of code...unless that's it. But anyway. From what it sounds like, you're going to want to use a switch statement to handle the popup.

mob
Login()
switch(input("Please select an option") in list("New","Load","Delete"))
if("New")
//New coding here...
if("Load")
//Load coding here...
if("Delete")
//Deletion coding here...
In response to Commander_ACE
I have finished the Creation Code.

But thank you. I am now working on the Map. And then the Game is ready for Tests :D