ID:178155
 
I'm trying to create a verb that lists all the player's verbs. I'm trying to make a MUD-like game and I need a commands verb. I'm trying to do this so I won't need a verb tab.

[edit] I had already tried a few things like:

for(var/V as verbs in usr) ....but yeah, anyone who's got decent skill with the language will figure out why that turns up bugs...
I think for(var/V in usr.verbs) usr << V would work, but I'm not sure.