Hey Bluelight.nu, cool board, I read it all the time!!!!!
As for your question.
* Can you not look at the IP of the user and block it?
* Now the code below will block any subject that starts with NO***** so it would not allow a post to start with the word NOTHING for example, if you like I can modify it so it will only block posts where the first word is NO.
Ive written this for my 5.47d board, it should work ok on your board hopefully.
In postings.cgi
---------------------------
FIND
---------------------------
$TopicSubject = &CensorCheck("$TopicSubject");
---------------------------
BEFORE THAT ADD
---------------------------
unless ($Status eq "Administrator") {
$CheckValidStr = $TopicSubject;
# Below values are HEX Codes
# x22 = " # x23 = #
# x26 = & # x27 = '
# x2B = + # x2F = /
# x3A = : # x3B = ;
# x3C = < # x3D = =
# x3E = > # x60 = `
# x5C = # x5E = ^
# x7c = |
if ($CheckValid =~ /^NO/ ) {
&StandardHTML("Sorry, you have used illegal characters in your subject line!
Use your Back button.");
exit;
}
}
If you need any help getting it working just let me know.
_________________________
I can't afford a good signature editor