Ladder Description:
Users or teams can also join ladders and challenge other players or teams in the ladder. Elo rating system is used which calculates the difficultly of a match according to the players' ranks and this is taken into account when the ranks are updated after the match is finished.
Feature List:
Tournament Features
Hall of Fame (Top 10 Tournament Players)
Permissions can be set per usergroup
(AdminCP -> Usergroups -> Usergroup Manager -> {Select Usergroup} -> Tournament Permissions)
Tournaments start automatically when no slots are left
Tournaments have proper Date/ Time converted to users timezone and DST
2 Tournament Modes: Last Man Standing and Single Elimination
Filter Tournaments Displayed according to Tournament Status
Tournament User Stats Page
'Start Tournament' for Single Elimination adds bye players and creates brackets
Tournament options
Turn on/off tournament
Create Thread on Tournament Creation
Tournament Stats in Member Profile
Tournament Stats in Postbit (Can be turned on/off in Tournament Options)
Comments per page
Tournament description length shown in tournament List
Tournament Display
LMS realtime ranking shows if players are equal positions
Tournament View Counter
Tournament creator and last edited by notes at bottom of tournament
separate page for accepting/rejecting challenges and submitting score (have to be accepted by other user)
Tournament Announcements
Tournament Moderators can create/edit announcements
Uses forum last visit for announcement read marking
Shows last user to edit announcement
Categories
Share categories for tournaments/ ladders
Category displays in navbar when viewing ladder/ tournament
Installation:
Follow instructions included in .zip
If you are using v3.6.x you will need to download this product file and import it
(It contains memberinfo css which is used in profile comments in v3.7.x and is in used in Tournaments Comments and Team Profiles)
Click Install
Future Features:
Add more Different Tournament Types (Double Elimination and Round Robin)
Allowing a player to only join one team per ladder
Use 3.7/3.8 notification system
My Teams page
Easy way to Re-arrange users in tournament
Limit number of challenges per week/day
Ladder match finder
Custom message included in challenge pm sent to user
Donations:
If you want to donate please click 'Support Developer'
When I attempt to use the admin submit score feature in ladders I receive the following error: Fatal error: Cannot use object of type mysqli_result as array in /home/content/*/*/*/***/html/forums/ladders.php(1673) : eval()'d code on line 19
I get a DB error when I try to swap a player during a tournament
Code:
Database error in vBulletin 3.8.2:
Invalid SQL:
UPDATE tmnt_players SET userid=12, username='Erik Anoa'i' WHERE id=28;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'i' WHERE id=28' at line 1
Error Number : 1064
Request Date : Wednesday, May 13th 2009 @ 04:48:05 AM
Error Date : Wednesday, May 13th 2009 @ 04:48:05 AM
Script : http://www.ocfight.net/tournaments.php?do=swapplayer&id=28
Referrer : http://www.ocfight.net/tournaments.php?do=swapplayer&id=28
IP Address : 216.254.74.138
Username : Admin
Classname : vB_Database
MySQL Version : 5.0.45-log
I get a DB error when I try to swap a player during a tournament
Code:
Database error in vBulletin 3.8.2:
Invalid SQL:
UPDATE tmnt_players SET userid=12, username='Erik Anoa'i' WHERE id=28;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'i' WHERE id=28' at line 1
Error Number : 1064
Request Date : Wednesday, May 13th 2009 @ 04:48:05 AM
Error Date : Wednesday, May 13th 2009 @ 04:48:05 AM
Script : http://www.ocfight.net/tournaments.php?do=swapplayer&id=28
Referrer : http://www.ocfight.net/tournaments.php?do=swapplayer&id=28
IP Address : 216.254.74.138
Username : Admin
Classname : vB_Database
MySQL Version : 5.0.45-log
Cheers for reporting this
I will release fixing with this fix included very soon. But fix is also included in attached file.
When I attempt to use the admin submit score feature in ladders I receive the following error: Fatal error: Cannot use object of type mysqli_result as array in /home/content/*/*/*/***/html/forums/ladders.php(1673) : eval()'d code on line 19
is there an easy way to add code myself to make members have a minimum post count to enter a tournament? or if not, if it could be added i could send a small donation if it's not a big task.
is there an easy way to add code myself to make members have a minimum post count to enter a tournament? or if not, if it could be added i could send a small donation if it's not a big task.
Find in tournaments.php
PHP Code:
if ($_REQUEST['do'] == 'join')
{
add after
PHP Code:
if ($vbulletin->userinfo[posts] < 5)
{
print_no_permission();
}