mob/verb/say(msg as text)
if(src.no_talking == 1)
usr << "You are muted."
count_again++
if(count_again == 5)
usr << "You are now spamming and will be banned."
Banned.Add(src.key)
del src
Problem description:Right there where it says Banned.Add(src.key), well, it's not working. I need the person's key added to the Banned list. Why does it refuse to work. Why?