[XFA] Tournament

[XFA] Tournament [Paid] 2.7.0

No permission to buy (€14.00)
Hum, once it has been entered I am not sure it allows back to blank.
That's how the js I use works.

Can you change it? Players have made a mistake and can not correct right now. Because 0: 0 is not the same as when it's empty - due to the overall table.
 
Can you change it? Players have made a mistake and can not correct right now. Because 0: 0 is not the same as when it's empty - due to the overall table.

I may, depends if it's deep into that js code as its third party.
Please report it in the dedicated section of our forum.
 
XFA updated [XFA] Tournament with a new update entry:

Bug fix and new features

Corrected bugs:
  • In round robin, color are incorrect when one of the score is above 10.

New features:
  • New tournament type "Manual with no bracket" allowing manual selection of a winner.
  • Send private message to tournament participants (permission based).
  • Hide of field "Play third place match" for tournament modes different from single elimination and double elimination

Read the rest of this update entry...
 
Edit the file library/XFA/Tournament/ControllerPublic/Tournament.php.

Search for the row:
PHP:
unset($tournamentData['slots_text']);

Move it some rows above below so it looks like this:
PHP:
        if ($tournamentData['mode'] == 'manual' )
        {
            $tournamentData['slots'] = $tournamentData['slots_text'];
        }
        else
        {
            if ($tournamentData['slots'] > 256)
            {
                $tournamentData['slots'] = 256;
            }
        }
        
        unset($tournamentData['slots_text']);

Will fix it in the next release.
 
Last edited:
Also, How would you go about increasing the box for the names in the brackets, since it's relatively small if someone has a bigger username?

Screenshot_3.webp
 
Last edited:
Please suggest this in the dedicated sub-forum on our forum.

I'll see what I can do but as I use a third party script I can't promise.
 
I don't have access here but on the page of our site if you go down to Mtor's addon support and then new applications you should find it.
 
Top Bottom