vB Bash will be a modification that lets you do various things by posting a command in your post (on its own line). I started making this hack last year, but it was later abandoned. I plan on resurrecting it on vB 3.5 now.
Here's basically how a post would look like followed by how the vB Bash code sees it.
Code:
You useless spammer.
#useroptions -username Stupid User -o usertitle -v Useless Spammer --enable_ct
Time to finish this job.
#banuser -username Stupid User
#deletethread --keepattach -r This thread sucks.
Matches:
Array
(
[useroptions] => Array
(
[param] => Array
(
[username] => Stupid User
[o] => usertitle
[v] => Useless Spammer
)
[option] => Array
(
[enable_ct] => 1
)
)
[banuser] => Array
(
[param] => Array
(
[username] => Stupid User
)
)
[deletethread] => Array
(
[param] => Array
(
[r] => This thread sucks.
)
[option] => Array
(
[keepattach] => 1
)
)
)
Post suggestions and questions here.