ID:268370
 
mob
Login()
var/N
N=input("Welcome to , what would yo like to do?", "Login")in list("New Character","Cont. Character", "Delete Character") //to ask what will happen as a switch form
if(N=="New Character")
switch(input("What realm would you like to be in?","Choose realm")in list("Albion","Hibernia","Midgard"))
if("Albion")
alert("You are now loacated in Albion")
Choose3()
rest3()
if("Hibernia")
alert("You are now located in Hibernia")
Choose2()
rest2()
if("Midgard")
alert("You are now loacated in Midgard")
Choose()
rest()
if(N=="Continue Old Character")
alert("This is where you set you login")
if(N=="Delete Old Character")
alert("You have to make one to delete it.")

mob/proc
rest()
src.loc=locate(1,1,3)
mob/proc
rest2()
src.loc=locate(1,1,2)
mob/proc
rest3()
src.loc=locate(1,1,1)
mob/proc
Choose()
mob/proc
Choose2()
mob/proc
Choose3()


my prblem is with the choose proc. I want to know how to make it so that I can give them a character choice depending on what realm they are in.
Well you'd do it exactly like always,You already call the different procs for the different realms just edit the procs.This is an example, Just edit the rest of them also.By the way you play DAOC to :P.
mob/proc
Choose()
switch(input("What character do you want?","Choose character")in list("Midgard1","Midgard2"))
if("Midgard1")
src << "You chose Midgard1"
if("Midgard2")
src << "You chose Midgard2"
In response to Turles9000
thank you and it helps a lot.