ID:141108
 
Code:
mob/Conductor
icon = 'casuals.dmi'
icon_state = "conductor"
Immortal = 1
Gm = 0
density = 1
verb
Hitch_A_Ride()
set category = "Train"
set src in oview(1)
switch(input("Conductor:Would you like to hitch a ride to London then?","Hitch A Ride?") in list("Yes, No"))
if("Yes")
usr.loc = locate(21,63,26)
if("No")
return


Problem description:
I dont know whats the problem with this code there's no errors the verb shows up but there's nothing happening. Can someone help me figure out why the list isn't popping up and the locations wont work?
switch(input("Hitch ride?","Hitch!")in list("Yes","No"))


You didn't seperate the list items correctly.
In response to Aries
Problem Solved!
Thanks a bunch!