ID:163183
 
I tried making somthing, doesnt work though, i think the problem is... i cant include a list within "in list" for input so how can i go about doing this? heres what i have...


for(var/obj/npcs/N in get_step(usr,usr.dir))
if(N.quests.len>=1)
var/a=input("Got some free time? Heres a list of what needs to be done.")in list(N.quests)
usr.getquest(a)



N.quests is a list wich contains text strings.
var/a=input("Got some free time? Heres a list of what needs to be done.")in N.quests //you don't need in list()


Since N.quests is a list, you can just have it directly check into it like so.