ID:139569
 
Code:
var
civs = list("Test")
mob
Login()
switch(alert("Welcome!\nMake a selection:","Welcome","New","Load","Delete"))
if("New")
src.name = input("Please enter your character's name:","Name")
src.civ = input("Please choose a starting civilization:","Civilization")in civs
// load & delete procs


Problem description:
The second input (for the civilizations) doesn't popup at all...
There's is only one possible choice, so it picks it automatically.
In response to Ripiz
Ripiz wrote:
There's is only one possible choice, so it picks it automatically.

Wow, I feel so dumb. Thanks.
You should specify the player argument of the alert() and input()s. Right now, it's defaulting to usr, which isn't always reliable in Login() (besides, you're using src in the rest of the proc and in cases like this you should pick one rather than mix-and-match them like that).