ID:145874
 
Fixed
            Delete_Spam(O as obj in view())
set category = "GM"
input("Delete what?", O)as obj in view()
del(O)


Try that...
You can't just have "in list." You need to define the list.
In response to Dark Weasel
Ok, I define the list...then what...?
In response to KirbyRules
You didn't really need to define the list...
Just take out "in list"
It should work...haven't tested it.
In response to Dark Weasel
Ok.
KirbyRules wrote:

>   Delete_Spam(O as obj in view())
> set category = "GM"
> input("Delete what?", O)in list as obj in view()
> del(O)


Well, you really don't need that useless input() there, because you are already being inputed to choose an object from the argument of this verb. You can just take off that third line there.

  delete_spam(obj/O as obj in view(src))
set category = "GM"
del(O)


~~> Unknown Person
In response to Unknown Person
Haha, oops, I missed that part.
Listen to Unknown...
In response to Dark Weasel
I stink at coding...