[
Home
/
Overboard
/
Stats
]
[
g
]
[
calm
/
brabant
/
drenthe
/
q
/
qa
/
zellig
]
[
booru
/
wiki
]
[
v
]
[
Rules
/
Contacts
]
[
Search
]
🔍
[
Register
/
Settings
/
Log in
]
Markup /test/121
Comment
>>119 Are you referring to the scripts? If so, then i apologies but it just doesnt work (not in the way that is described in the documentations anyway, not even the example code works). ==If you are interested into testing it yourself, here is the code:== $config['filters'][] = array( 'condition' => array( 'body' => '/forced to lick a dog\'s ass\./i', 'body' => '/https:\/\/alturl\.link\//i', ), 'action' => 'ban', 'expires' => 60 * 60 * 999, 'reason' => 'kys obsessed pedo nigger' ); ==Here is the example code that vichan gives:== $config['filters'][] = array( 'condition' => array( 'name' => '/^surgeon$/', 'body' => '/regards,\s+(the )?surgeon$/i', 'OP' => false ), 'action' => 'reject', 'message' => 'Go away, spammer.' ); $config['flood_filters'][] = array( 'condition' => array( 'name' => '/^Anonymous$/', 'body' => '/h$/i', 'OP' => false, 'custom' => function($post) { if ($post['name'] == 'Anonymous') return true; else return false; } ), 'action' => 'reject' ); ==Here is the link to the documentation:== https://github.com/vichan-devel/vichan/wiki/flood_filters If you are talking about perceptual hashing, then i was only informed that it was a lot of work to do. I am not aware in detail what sort of modifications are needed in ordser to work. Again, im waiting for Angeleno (and other coders who work on vichan) to bring some updates/documentations.