Okay I am trying to make it so that people can't type more than a certain amount of characters.
Could you modify my code and put in a sample code so people cant type more than 100 characters.
mob/verb
Say(msg as text)
set desc = "Talk to all players in view"
set category = "Communication"
view() << "[usr] says: [msg]"
length() will allow you to not let them say it at all
copytext() will allow you to cut the message off at a certain amount of characters
Look them up in the Reference to see how you'd use them.
=V