Blocking string of same letters #4


  • New
  • Defect
Open
Assigned to scriptjunkie
  • _ForgeUser9686855 created this issue Oct 11, 2014

    This does work with "aaaaaaa" !
    Can you fix this please. Like that someone can only send a string of 3 long chars, 5 for the numbers and 2 for special chars :
    aaa => a
    aa => a
    aaaaaa => a
    11111 => 11111
    111111 => 1
    @@ => @@
    @@@ => @
    && => &&
    &&& => &
    etc...
    And for letters + special chars : do it even if there are spaces between ! "a a a a" => "a" and "@ @ @" => "@"

  • _ForgeUser9686855 added the tags Defect New Oct 11, 2014
  • ScriptJunkie posted a comment Oct 12, 2014

    This is done right now at the end of sentances for stuff like go !!!!!!!!!!!!!!!. But yes they can bypass if it is ! ! ! ! ! !. I will look into a more cleaner way of limiting soon.

  • _ForgeUser9686855 posted a comment Oct 12, 2014

    <<reply 2364420>>

    I agree for "!!!!!" but I could write "aaaaaa"

  • _ForgeUser9686855 posted a comment Oct 19, 2014

    Yes, did you understand the other things ? :) This is a kind difficult :p
    1. CHARS are 2 cut (if not in a string, else they are 3 cut) and SPECIAL CHARS are 3 cut
    aaaaaa => a
    "a a a a" => "a"
    aaa => a
    aa => a
    @@@ => @
    "@ @ @" => "@"
    @@ => @@
    &&& => &
    && => &&
    2. NUMBERS are 6 cut
    11111 => 11111
    111111 => 1
    3. PLUS => I don't want someone write "HEL.LO WOR.LD !" or "HEL LO WOR LD !" does the plugin check if CAPS are separated with NO-CAPS ?

    Thanks you very much :)


To post a comment, please login or register a new account.