Filled Hub360

Discussion in 'Archived: Plugin Requests' started by heroboy04, Jul 13, 2014.

  1. Offline

    fromgate

    Your rule configured to use message-mask as regular expression (type: REGEX):

    But in regular expressions symbols "[" and "]" are control symbol, so you must use "\[" and "\]":

    Code:
    tntrun:
      type: REGEX
      message-mask: '\[Quicksand\] You aren''t playing'
      replace-to:
      cooldown-time:
    Other way is using comparing method instead of regex (type: EQUAL):

    Code:
        tntrun:
          type: EQUAL
          message-mask: '[Quicksand] You aren''t playing'
          replace-to:
          cooldown-time:
    
     
  2. Offline

    heroboy04

    fromgate thanks ! :)
    I didn't knew how to use the EQUAL and ... :p ! I think I do now ! :D
    thanks !
     
    fromgate likes this.

Share This Page