![]() |
TIO/FTL Compatible Ranking Ladder System LITE
1 Attachment(s)
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. |
================================================== =========
Version 2.0.0 ================================================== =========
Version 1.8.0 ================================================== =========
Version 1.6.0 ================================================== =========
Version 1.5.0 ================================================== =========
Version 1.4.0 ================================================== =========
Version 1.3.0 ================================================== =========
Version 1.2.0 ================================================== =========
Version 1.1.0 ================================================== =========
Version 1.0.0 ================================================== =========
|
Looks way more appealing than the ladders&tournaments mod!
I have many people on tournaments that aren't registered on my site, thus great solution. Edit: Only US timezones? :confused: |
Great looking mod. keep up the good work.
|
installed but getting this error when trying to create a new event
Database error in vBulletin 3.8.1: Invalid SQL: SELECT rank_games.* FROM rank_games WHERE gActive = 1; MySQL Error : Table 'universe.rank_games' doesn't exist Error Number : 1146 Request Date : Wednesday, March 18th 2009 @ 11:56:14 AM Error Date : Wednesday, March 18th 2009 @ 11:56:14 AM Script : http://www.cooluniverse.net/ranking.php?do=add_event Referrer : http://www.cooluniverse.net/ranking.php?do=games IP Address : Username : Classname : vB_Database MySQL Version : 5.0.75-log |
Crazy question, is this strictly designed for use in gaming or can it be used in just about anything? For example, if I run a fitness forum, can I have people 'compete' in that way?
|
good job man, thank you!
Installed |
Quote:
Everything else is handled through the manager. |
Can't argue there, I will give it a whirl, thanks.
|
Quote:
Quote:
Quote:
Quote:
|
right o
|
works perfectly, thanks!
|
If i want to create a new Event i get this:
Code:
Fatal error: Call to undefined function: date_default_timezone_set() in |
<a href="http://us.php.net/date_default_timezone_set" target="_blank">http://us.php.net/date_default_timezone_set</a>
date_default_timezone_set() is a function added to PHP after 5.2.0... To fix this problem, you could replace all instances of date_default_timezone_set(###), with set_default_timezone(###) or putenv("TZ=###"); but I dont know what sort of side effects that would have. Those two older functions were depricated. |
Quote:
Must wait for php5 i think... But thanks for your hack. |
Ah, no sorry, i did it wrong...had no game for the event...but still:
Code:
Fatal error: Call to undefined function: set_default_timezone() |
hi Jaxel
Thanks for joining up. I registered you on my forums at www.cooluniverse.net Trying to enter the event submission form but I do not have the right permissions, lol...I am the admin. Help! Lol! Love this mod. |
Quote:
Dobie... you need to set your usergroup as an administrator in your usergroup settings. |
<a href="http://www.ps3multiplayer.com/ranking.php" target="_blank">http://www.ps3multiplayer.com/ranking.php</a>
how fix this?? |
|
Quote:
|
Quote:
|
Upload the ranking.php file to the base directory /public_html/
|
i need help in http://www.ps3multiplayer.com/ranking.php i have fatal eror
and in http://www.ps3multiplayer.com/ranking/ you can see the files from the rooter anybody can help m with this ore need to unistall thanks |
jaxel please answer ......
|
Quote:
which means http://www.ps3multiplayer.com/forum/ not http://www.ps3multiplayer.com/ |
1 Attachment(s)
Quote:
|
Could this be intergrated to work with WoW? I run a pretty large private server and one of our realms has Arena seasons. We be great to have a ladder to update the standings daily with. All arena information is stored in a database table.
|
This mod is not used for the act of RUNNING tournaments. For that, you should be using TIO. This mod is used to calculate the rankings and results based on already completed events. Based on that, you can use it for ANY game.
|
Quote:
|
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? |
I believe I found it: http://allisbrawl.com/tio/
|
Quote:
|
Quote:
|
<a href="http://www.allisbrawl.com/tio" target="_blank">www.allisbrawl.com/tio</a>
|
Quote:
|
Quote:
Code:
SELECT * FROM rank_events AS rank_events 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 Code:
$result = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."rank_events AS rank_events |
================================================== =========
Version 1.2.0 ================================================== =========
|
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 |
Try this new version please... fixes the many SQL errors.
================================================== ========= Version 1.2.1 ================================================== =========
|
All times are GMT. The time now is 05:52 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|