ID:268484
 
I've experienced having to view lists that are higher than 200 items. The lists, I am sure of, can hold more than 200, but input() doesn't show them all.

Is there a way around this, because I hate to have different verbs having different items.
mob
verb
List()
var/listcontents = ""
for(var/T in usr.list)
listcontents += "[T], "
src <<listcontents
In response to Siientx
And what does that have to do with his problem?

I'll try to give some serious adivice here... try looking into html and see if you can make your own input function that displays a popup browser window with a list of things to choose from.