Name similarity check
This page explains some things about the name similarity check.
distance.apply("aaapppp", "") = 7
distance.apply("frog", "fog") = 1
distance.apply("fly", "ant") = 3
distance.apply("elephant", "hippo") = 7
distance.apply("hippo", "elephant") = 7
distance.apply("hippo", "zzzzzzzz") = 8
distance.apply("hello", "hallo") = 1Check configuration
# NameSimilarityCheck will detect similar nicknames of the connecting users
# (!) Experimental! See wiki for more information.
name-similarity-check {
# NEVER - check is disabled.
# ATTACK - check will be performed only during bot-attack.
# ALWAYS - check will be always performed.
check-mode=ALWAYS
# The lower the distance, the similar the names.
# If the distance detected is lower or same as configured here,
# it will be considered as a positive detection.
# Values below 1 are ignored, as it means identical name.
distance=-1
# How many nicknames should be keep in the history?
# When an user is connecting to the server, his nickname will be added to the history.
# Then the nickname will be compared with other nicknames stored in the history.
# (!) Requires restart to apply.
history-size=10
}Last updated