ID:174353
 
Hello!
I am making a Wage War verb. Here it is so far:
Wage_War()
set category = "Guild"
var/list/guilds_list = new
for(var/mob/M in world)
if(guilds_list.Find(M.Guild)) continue
else guilds_list += M.Guild

How do I let the player choose one of the things in the list?
I know this is really simple, but I forgot :P

~GokuSS4Neo~
input("Wage war against which guild?","War") in guilds_list

(you may need to make it var/guild = input(blah blah blah) if you need the variable for something.(most likely))
In response to JackGuy
Thank you!

~GokuSS4Neo~