The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
TIO/FTL Compatible Ranking Ladder System LITE Details »» | |||||||||||||||||||||||||||||||||||||||||
TIO/FTL Compatible Ranking Ladder System LITE
Developer Last Online: Sep 2013
This ranking system is based very loosely on the Association of Tennis Professionals ATP Entry Ranking System (as apposed to their ATP Race System). What this means, is that players are ranked by the total scores of their best performances within a specified time period. Using this system solves many problems within other ranking systems; especially race systems that tend to give preference to players who attend the most tournament events. This system ensures a more accurate calculation on the relative performances of players.
With this system, a player's rank is calculated using their best scores within a specified time period. Stronger players are not penalized because they had a "bad day", and weaker players are not rewarded by attending the most events. By specifying best scores limit, a player's weakest performances will be ignored in the ranking calculations (provided that player attends enough tournaments to exceed the limit). By specifying a time period, the system will automatically weed out stale rankings and remove players who are no longer active. What is this mod? Using this system, you can put together a fully featured ranking system for your tournaments. The purpose of this system is to give users a method to calculate rankings for all manner of events, even events that exist outside the spectrum of your forums. Because of this, this mod does NOT integrate with your forum user database; if it did, people who attended your event, but are not members of your forum, would be left out and it would skew the point values for events. Product Demo: http://www.8wayrun.com/ranking.phpBasic LITE Feature Listing:
For more information on how to purchase the PRO version, feel free to send me a message. Download Now
Screenshots
Show Your Support
|
Comments |
#32
|
|||
|
|||
Quote:
Also- if I want to run tournaments, which script of your's will I Need? TIO? What is it and where can i find it? |
#33
|
|||
|
|||
I believe I found it: http://allisbrawl.com/tio/
|
#34
|
|||
|
|||
Quote:
|
#35
|
|||
|
|||
Quote:
|
#36
|
|||
|
|||
<a href="http://www.allisbrawl.com/tio" target="_blank">www.allisbrawl.com/tio</a>
|
#37
|
|||
|
|||
This mod is used to calculate the RESULTS of events into a ladder, not to actually run the events. You don't even have to use TIO; you can use ANY tournament running script you want. Hell, you can even run your tournaments on pen and paper. All this mod is for, is calculating the RESULTS of your tournaments after you input them. However, if you have the PRO version of this mod, you should be using TIO, as it will read the results directly from your TIO files, and GREATLY reduce the amount of work required to add a tournament to the rankings.
|
#38
|
|||
|
|||
Quote:
Code:
SELECT * FROM rank_events AS rank_events LEFT JOIN rank_games AS rank_games USING(gameID) LEFT JOIN rank_categories AS rank_categories USING(categoryID) ORDER BY eDate DESC LIMIT 0, 30; This line of code should be joining rank_events with rank_games using gameID, and then joining rank_events with rank_categories using categoryID. For some reason, the script is trying to join rank_games (instead of rank_events) with rank_categories using categoryID; which wont work. Why this is only happening on YOUR server, and no one elses... confuses me. Try replacing the following code in ranking.php: Code:
$result = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."rank_events AS rank_events LEFT JOIN ".TABLE_PREFIX."rank_games AS rank_games USING(gameID) LEFT JOIN ".TABLE_PREFIX."rank_categories AS rank_categories USING(categoryID) ORDER BY $sort $order LIMIT ".($limitlower - 1).", $perpage "); Code:
$result = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."rank_events AS rank_events LEFT JOIN ".TABLE_PREFIX."rank_games AS rank_games ON rank_events.gameID = rank_games.gameID LEFT JOIN ".TABLE_PREFIX."rank_categories AS rank_categories ON rank_events.categoryID = rank_category.categoryID ORDER BY $sort $order LIMIT ".($limitlower - 1).", $perpage "); |
#39
|
|||
|
|||
================================================== =========
Version 1.2.0 ================================================== =========
|
#40
|
|||
|
|||
Database error in vBulletin 3.8.1:
Invalid SQL: SELECT * FROM ps3multirank_events AS rank_events LEFT JOIN ps3multirank_games AS rank_games USING(gameID) LEFT JOIN ps3multirank_categories AS rank_categories USING(categoryID) ORDER BY eDate DESC LIMIT 0, 30; MySQL Error : Unknown column 'ps3multi_ps3db.rank_games.categoryID' in 'on clause' Error Number : 1054 Request Date : Friday, March 20th 2009 @ 03:22:16 PM Error Date : Friday, March 20th 2009 @ 03:22:16 PM Script : http://www.ps3multiplayer.com/forum/....php?do=events Referrer : http://www.ps3multiplayer.com/forum/ranking.php Classname : vb_database MySQL Version : 4.1.22-standard-log |
#41
|
|||
|
|||
Try this new version please... fixes the many SQL errors.
================================================== ========= Version 1.2.1 ================================================== =========
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|