Search results

  1. W

    GambleBot!

    I was trying to make it post in corps chat with the username of the player that asked for the roll. Gave up on it now though.
  2. W

    GambleBot!

    string ChatDice (string message) { matcher dice_matcher = create_matcher( "\\b(\\d+)[dD](\\d+)\\b", message); if (dice_matcher.find()) { int num = dice_matcher.group( 1 ).to_int(); int faces = dice_matcher.group( 2 ).to_int(); if ( faces == 0 ) return "Nice try small fry. There are no...
Top