The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Tournaments, Ladders & Leagues Manager v4.x Details »» | |||||||||||||||||||||||||||||||
Tournaments, Ladders & Leagues Manager v4.x
Developer Last Online: Nov 2023
Code:
Modification Description This modification allows you to manage tournaments and ladders on your forum. It provides interactibility both for forum members and forum admin.Tournament Types:
Users or teams can 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:
** Don't forgot to click Mark as Installed ** Download Now
Show Your Support
|
14 благодарности(ей) от: | ||
BCP Hung, champendk, CharlieDelta, EBZ2010, fulger, GreyGhost, legiondadon, Lord. Dela, Omranic, pwnedPRO, sharif_aly, stwan, UPElvin |
Comments |
#812
|
|||
|
|||
vBulletin 4.1.3 / Tournaments & Ladders Manager v4.3.6 :
Bugs: 1. Bug when a small width of the forum: Attachment 128041 2. Bug in the section ladder (only for guests): Attachment 128042 === make Words => in the phrase: Line 3742: HTML Code:
<a href="ladders.php?do=acceptmf&id={vb:raw game.id}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')">{vb:rawphrase ladder_accept_match}</a> Line 3758: HTML Code:
<input type="submit" class="button" value="{vb:rawphrase ladder_accept_match}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')" />
Line 4121: HTML Code:
<a href="ladders.php?do=acceptmf&id={vb:raw game.id}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')">{vb:rawphrase ladder_accept_match}</a> Line 4137: HTML Code:
<input type="submit" class="button" value="{vb:rawphrase ladder_accept_match}" onclick="return confirm('Are you sure you can make the time/date of this match? \r\n You cannot withdraw from it.')" />
Line 6668: HTML Code:
<a href="competitions.php?do=editcategory&catid={vb:raw cat.catid}">{vb:rawphrase tmnt_editcategory}</a> | <a href="competitions.php?do=killcategory&catid={vb:raw cat.catid}" onclick="return confirm('Are you sure you want to delete this category?')">{vb:rawphrase tmnt_deletecategory}</a> file javascript_competitions.js : (make Words => in the phrases) Line 248: Code:
function deleteladder(id) { if (confirm("Are you sure you want to delete this ladder?")) { window.location.href = 'ladders.php?do=delete&id=' + id; } } HTML Code:
function deletetmnt(id, title) { if (confirm("Are you sure you want to delete '" + title + "'")) { window.location.href = 'tournaments.php?do=kill&id=' + id; } } function deleteteam(id) { if (confirm("Are you sure you want to delete this team?")) { window.location.href = 'competitions.php?do=killteam&id=' + id; } } function deleteann(id) { if (confirm("Are you sure you want to delete this announcement?")) { window.location.href = 'competitions.php?do=killann&id=' + id; } } function deletecat(id) { if (confirm("Are you sure you want to delete this category?")) { window.location.href = 'competitions.php?do=killcategory&catid=' + id; } } function jointeam(id) { if (confirm("Are you sure you want to join this team? \r\n\r\n(The team leader needs to confirm your request before you are shown as a team member)")) { window.location.href = 'competitions.php?do=reqjointeam&id=' + id; } } function rejectrecruit(id) { if (confirm("Are you sure you want to reject this recruit?")) { window.location.href = 'competitions.php?do=rejectrecruit&id=' + id; } } function confirmrecruit(id) { if (confirm("Are you sure you want to confirm this recruit?")) { window.location.href = 'competitions.php?do=confirmrecruit&id=' + id; } } function deleteplayer(id, tid, userid) { if (confirm("Are you sure you remove this player from this tournament?")) { window.location.href = 'tournaments.php?do=killplayer&id=' + id + '&tid=' + tid + '&userid=' + userid; } } function deleteteamplayer(id) { if (confirm("Are you sure you want to remove this player from your team?")) { window.location.href = 'competitions.php?do=killteamplayer&id=' + id; } } function makeleader(id) { if (confirm("Are you sure you want to make this team member a leader?")) { window.location.href = 'competitions.php?do=makeleader&id=' + id; } } function leaveteam(id) { if (confirm("Are you sure you want to leave this team?")) { window.location.href = 'competitions.php?do=leaveteam&teamid=' + id; } } function makecoleader(id) { if (confirm("Are you sure you want to make this team player a co-leader?")) { window.location.href = 'competitions.php?do=makecoleader&id=' + id; } } function deletecomment(id, tid, userid) { if (confirm("Are you sure you want to delete this comment?")) { window.location.href = 'tournaments.php?do=killcomment&id=' + id + '&tid=' + tid +'&userid=' + userid; } } function finishtmnt(id, title) { if (confirm("Are you sure you want to finish '" + title + "'")) { window.location.href = 'tournaments.php?do=finish&id=' + id; } } Line 580: Code:
if (confirm("Are you sure you want to progress '" + username + "' to next round?")) { window.location.href = 'tournaments.php?do=progress&id=' + id + '&userid=' + userid + '&round=' + round + '&slot=' + slot + '&userid2=' + userid2 + '&slot2=' + slot2 + '&round2=' + round2; } Line 589: Code:
var answer = confirm("Are you sure you want to regress '" + username + "' to previous round?"); Line 601: Code:
if (confirm("Are you sure you want to progress '" + username + "' to next round?")) { |
#813
|
|||
|
|||
Any possible way to add a feature so you can change who's playing who in a tournment bracket?
|
#814
|
|||
|
|||
Is it possible that a check-in system is going to be a part of the upcomming release?
I think its the most importent feature missing rigth now imo... since alot of our players still sign up, but dosn't show up on the day of the tournament. i havn't testet the league yet but is it possible to set the numbers of players in each group? as i need a specific amount. I rather have number of teams in each group than number of groups.. ones again this mod rock |
#815
|
|||
|
|||
One more thing :-)
Ad a option to delete a match from upcoming and played matches. Like where you admin submit score, there could be a option to delete the match. |
#816
|
|||
|
|||
Added to next version
|
#817
|
|||
|
|||
'Swap slots' has been added for Single Elimination and Double Elimination Tournaments in next version
|
#818
|
|||
|
|||
Quote:
2. Fixed for next version. |
#819
|
|||
|
|||
Sorry no.
|
#820
|
|||
|
|||
Getting this error after upgrade to 4.3.7
Quote:
|
#821
|
|||
|
|||
Having an issue when 'Free Agents' join a team that they aren't removed from the Free Agents list. Possible to just add an option for the admin to delete Free Agents?
And now when you click on a Category to view tournaments inside of it, instead of being aligned to the width of the page, it is on the right only. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|