vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - Tournaments, Ladders & Leagues Manager v4.x (https://vborg.vbsupport.ru/showthread.php?t=238945)

betts02 06-12-2011 12:07 PM

Please wait 1307797583 hours between challenging the same player/team.

I have this set via admin to 24 hours and getting the above, Any idea ?

bananalive 06-13-2011 08:11 AM

Quote:

Originally Posted by betts02 (Post 2206614)
Please wait 1307797583 hours between challenging the same player/team.

I have this set via admin to 24 hours and getting the above, Any idea ?

I've fixed this error in next version.

bananalive 06-13-2011 08:16 AM

Quote:

Originally Posted by cdj (Post 2205946)

Additionally, I saw your video for customizable fields in ladder challenges, however I don't find where to create those customizable fields.

Thanks in advance.

Navigate to ladder.

Click 'Edit Ladder'

Then edit 'Challenge Extra Fields'

bananalive 06-13-2011 08:19 AM

Quote:

Originally Posted by EasyEazy (Post 2205702)
Installed the new update today.

I see you made changes to the tournament layout. From a personal point of view I didn't like it as it brought into play scrolling bars on the larger brackets. Is there a way to remove them and go back to the 4.4.4 look? had a play with the settings and couldnt really figure it out.

Keep up the good work

The new brackets are alot more efficient for your server and user.

I'm afraid there is no way to revert to old bracket system, but you can alter in Tournament Bracket Width (vbulletin settings -> tournaments & ladder settings)

ProFifaLeagues 06-13-2011 08:26 AM

Having the latest results shown in the forum block like Betts mentioned would be a superb addition If that is do-able Banana

bananalive 06-13-2011 08:49 AM

Quote:

Originally Posted by Arthran (Post 2205975)
Couple of questions/suggestions/feature requests.

I really need/could do with a way of changing permissions on a whole season, or possibly just a league. I'm running a set of leagues with 2 seasons a year, so i've grouped all the leagues into a season and would like to be able to restrict access to this season to only paid members.

Which brings me into point 2, Pay to play. My current solution is to use vBulletin's built in payment system to change people into a specific user group. The problem then would be regulating access to the leagues based on a user group. Any suggestions or assistance on this one?

Ladder/League Usergroup Permissions

For ladder/league with url: http://www.yoursite.com/forums/ladde...?do=view&id=22

AdminCP -> Plugins & Products -> Add New Plugin:
  • Hook Location: easy_forms_post_form_start
  • Title: Ladder 22 Usergroup Permissions
  • Exec Order: 5
  • Plugin PHP Code:
  • PHP Code:

    if ($id == 22 && !is_member_of($vbulletin->userinfo6))[*]{[*]print_no_permission();[*]} 

  • Active: Yes

Replace 6 with appropriate Usergroup id of usergroup you wish to have permission to view ladder / league.


Quote:

Last one is simply that with tournaments you can have people signing up before the start of the tournament, but with leagues this isnt allowed, and people only seem to be able to sign up once the league has started. Again if we're advertising a league in advance of its start (Because it's a paid entry/prize fund league) then we'd like people to be able to sign up before the start date.

Any suggestions or assistance on these points?

Thanks
I'll try and reconfigure this a bit for next version.

stwan 06-13-2011 08:57 AM

Please make Words => in the phrase:

Line 5836 - 5847
HTML Code:

        <label for="checkin">Require Competitors to Check-in</label>
                <div>
                        <select name="checkin" id="checkin">
                                <option value="0"{vb:raw tmnt.sel.checkin.0}>No Check-in Required</option>
                                <option value="600" {vb:raw tmnt.sel.checkin.600}>10 minutes before tournament starts</option>
                                <option value="1200" {vb:raw tmnt.sel.checkin.1200}>20 minutes before tournament starts</option>
                                <option value="1800" {vb:raw tmnt.sel.checkin.1800}>30 minutes before tournament starts</option>
                                <option value="3600" {vb:raw tmnt.sel.checkin.3600}>1 hour before tournament starts</option>
                                <option value="7200" {vb:raw tmnt.sel.checkin.7200}>2 hour before tournament starts</option>
                        </select>
                </div>
                <p class="description">This requires players to check in here before tournament, otherwise they will be removed from the tournament.</p>


bananalive 06-13-2011 09:14 AM

v4.4.7

- Bug fixes
- Split admincp settings for easier access
- Check-in phrasing
- Ladder userhtml

bananalive 06-13-2011 09:22 AM

Quote:

Originally Posted by stwan (Post 2207014)
Please make Words => in the phrase:

Done in latest version.

stwan 06-13-2011 09:30 AM

Please make Words => in the phrase:

Line 3816:
Code:

Create a dynamically updating image with your ladder/league statistics, perfect for your signature or profile.

Line 3832:
Code:

This ladder/league has no players yet...

Line 3839:
HTML Code:

<label for="bw">Border</label>

Line 3852:
HTML Code:

<label for="bw">Width</label>

Line 3853:
HTML Code:

<input type="text" value="{vb:raw var.bw}" id="bw" name="bw" class="textbox numeric" maxlength="2" size="3" onchange="this.form.submit();" /> px
("px" in the phrase)


Line 3862:
HTML Code:

<label for="w">Dimensions</label>

Line 3866:
HTML Code:

<input type="text" value="{vb:raw var.w}" id="w" name="w" class="textbox numeric" maxlength="4" size="3" onchange="this.form.submit();" /> px

Line 3869:
HTML Code:

<label for="h">Height</label>

Line 3870:
HTML Code:

<input type="text" value="{vb:raw var.h}" id="h" name="h" class="textbox numeric" maxlength="4" size="3" onchange="this.form.submit();" /> px

Line 3875:
HTML Code:

<label for="noavatar">Show Avatar</label>

Line 3884:
HTML Code:

<label for="bg">HEX Color of</label>

Line 3887:
HTML Code:

<label for="bg">Background</label>

Line 3892:
HTML Code:

<label for="c">Text</label>

Line 3898:
HTML Code:

<span style="float: left;">Preview</span>

Line 3902:
HTML Code:

<span style="float: left;">BB Code</span>

Line 3909:
HTML Code:

<input class="button" type="submit" value="Update" />
("Update" in the phrase)

bananalive 06-13-2011 09:52 AM

Quote:

Originally Posted by stwan (Post 2207032)
Please make Words => in the phrase:

Line 3816:
Code:

Create a dynamically updating image with your ladder/league statistics, perfect for your signature or profile.

Line 3832:
Code:

This ladder/league has no players yet...

Line 3839:
HTML Code:

<label for="bw">Border</label>

Line 3852:
HTML Code:

<label for="bw">Width</label>

Line 3853:
HTML Code:

<input type="text" value="{vb:raw var.bw}" id="bw" name="bw" class="textbox numeric" maxlength="2" size="3" onchange="this.form.submit();" /> px
("px" in the phrase)


Line 3862:
HTML Code:

<label for="w">Dimensions</label>

Line 3866:
HTML Code:

<input type="text" value="{vb:raw var.w}" id="w" name="w" class="textbox numeric" maxlength="4" size="3" onchange="this.form.submit();" /> px

Line 3869:
HTML Code:

<label for="h">Height</label>

Line 3870:
HTML Code:

<input type="text" value="{vb:raw var.h}" id="h" name="h" class="textbox numeric" maxlength="4" size="3" onchange="this.form.submit();" /> px

Line 3875:
HTML Code:

<label for="noavatar">Show Avatar</label>

Line 3884:
HTML Code:

<label for="bg">HEX Color of</label>

Line 3887:
HTML Code:

<label for="bg">Background</label>

Line 3892:
HTML Code:

<label for="c">Text</label>

Line 3898:
HTML Code:

<span style="float: left;">Preview</span>

Line 3902:
HTML Code:

<span style="float: left;">BB Code</span>

Line 3909:
HTML Code:

<input class="button" type="submit" value="Update" />
("Update" in the phrase)

Implemented in v4.4.7

EasyEazy 06-13-2011 05:18 PM

Quote:

Originally Posted by bananalive (Post 2206997)
The new brackets are alot more efficient for your server and user.

I'm afraid there is no way to revert to old bracket system, but you can alter in Tournament Bracket Width (vbulletin settings -> tournaments & ladder settings)

Before I update again will this setting take out the need for the scroll bars?

stwan 06-15-2011 09:46 AM

Thanks for the update!

In ladders.php?do=create_player_image is not displayed the button text.

http://img535.imageshack.us/img535/8976/unled1go.jpg

TinCow1 06-15-2011 01:40 PM

Quote:

Originally Posted by bananalive (Post 2207022)
v4.4.7

- Bug fixes
- Split admincp settings for easier access
- Check-in phrasing
- Ladder userhtml

Superb, thanks!

Another upgrade that would be useful would be more flexible Moderator system. As it stands now, there are only two ways for people to be able to Moderate competitions. Competition creators can moderate their own, and people can be made 'global' moderators of all competitions. It would be useful if we could give specific moderator privileges on specific competitions.

For instance, I run large gaming competitions and I have a staff of other people that help me keep everything running smoothly. I need all of those people to be able to do things like create challenges and submit scores. The only way I can achieve that is to make them all Tournament Moderators, which gives them all privileges on all competitions. However, these people are only recruited to help out on specific competitions and I don't want them to make changes to any other competitions, nor do I like that they have the ability to delete the entire competition. I trust the people I have recruited, so the current situation is something I can live with, but it would be better if I had the ability to give privilege X to person/usergroup Y in competition Z.

champendk 06-15-2011 02:10 PM

+1 i would really like to see that feature along the line since we have the same issues.

Another feature i would like to se, is points for all matches played in tournaments added to the ladder assigned to . So when i choose to make a tournament and ad point for 1-3 place all other competitors still earn points per match won, without having to make challenges for each round in the tournament. Now its better not to waist time on tournaments if you dont get top 3, because they could win more point by doing normal challenges.

hope it makes sense..

Love what you did to the check-in

Good job as always

Arthran 06-15-2011 04:05 PM

I have to second what Champendk has said there, if there was an option to link a tournament to a ladder fully, and have every game in the tournament effect the ladder it would be amazing.

Also, do we have any eta on when double elimination will allow more than 8 players?

Much love for all the hard work on this, we wouldnt be successful without you!

stwan 06-16-2011 07:13 AM

Please make Words => in the phrase:

Line 2054:
HTML Code:

<option title="time" value="0" class="">Midnight</option>
HTML Code:

<option title="time" value="12" class="">Midday</option>

Line 5831:
HTML Code:

<option title="time" value="0" class="">Midnight</option>
HTML Code:

<option title="time" value="12" class="">Midday</option>
Line 5838-5849
HTML Code:

<label for="checkin">Require Competitors to Check-in</label>
                <div>
                        <select name="checkin" id="checkin">
                                <option value="0"{vb:raw tmnt.sel.checkin.0}>No Check-in Required</option>
                                <option value="600" {vb:raw tmnt.sel.checkin.600}>10 minutes before tournament starts</option>
                                <option value="1200" {vb:raw tmnt.sel.checkin.1200}>20 minutes before tournament starts</option>
                                <option value="1800" {vb:raw tmnt.sel.checkin.1800}>30 minutes before tournament starts</option>
                                <option value="3600" {vb:raw tmnt.sel.checkin.3600}>1 hour before tournament starts</option>
                                <option value="7200" {vb:raw tmnt.sel.checkin.7200}>2 hour before tournament starts</option>
                        </select>
                </div>
<p class="description">This requires players to check in here before tournament, otherwise they will be removed from the tournament.</p>


CharlieDelta 06-16-2011 03:43 PM

Hi banana,
I have a little problem.
We created a league and teams have joined but we had to delete one team. When we start the league and are about to organise groups the deleted team is showing up. When you click on the team link it does state it invalid team.

How can I remove this team fully so we can start the league?

Thank you

bananalive 06-18-2011 07:05 PM

1 Attachment(s)
Quote:

Originally Posted by CharlieDelta (Post 2208561)
Hi banana,
I have a little problem.
We created a league and teams have joined but we had to delete one team. When we start the league and are about to organise groups the deleted team is showing up. When you click on the team link it does state it invalid team.

How can I remove this team fully so we can start the league?

Thank you

Upload attached file to server (allow overwrite)

TinCow1 06-18-2011 08:02 PM

My large ladder recently started play, and I've got one minor problem that could use fixing, and one minor improvement suggested by a player.

For the problem, the players are just getting used to the system and somehow a pair of them submitted a 0-0 score for a match when it should have been 2-0. They fixed it by making a second match with the proper score, but now there's a 0-0 score sitting there for a match that didn't actually occur. I have no way of removing this match except manually editing the database. Would it be possible to add in a delete/edit option for matches that have already been submitted?

For the improvement, I have players from all over the world, so scheduling is a major issue for arranging matches. A player suggested that it would be nice if the times listed on Find Match and Upcoming Matches lists included the time zones that they were being listed for. At the moment, they just give a 24h time with no indication of which time zone it is in. Ideally, the time displayed would be the time zone the player has set in the forum profile, but if that's not possible a simple marker like EST (GMT-5) would be helpful.

Many thanks! The rest of the system is working very well and players find it easy to use. It's been a major improvement to our forums and will get a lot of use.

cdj 06-19-2011 02:10 AM

1 Attachment(s)
Just noticed in a tournament bracket that on long usernames, the Regress Player option is hidden. It's not a problem right now as I don't need to regress the particular user, however it obviously could be an issue in the future. In the attached image, notice user xGRIDIRONxGURUx towards the bottom.

As well, just simply for a seamless look, it'd be nice to see the Regress Player image appear in front of the player's username and be the mirror image of the Advance Player. That's obviously just a personal aesthetic note but thought I'd mention it.

CharlieDelta 06-19-2011 02:18 AM

Quote:

Originally Posted by bananalive (Post 2209558)
Upload attached file to server (allow overwrite)

Worked like a charm! Thank you! Great work as always!:up::D

TinCow1 06-19-2011 02:44 AM

Quote:

Originally Posted by cdj (Post 2209704)
Just noticed in a tournament bracket that on long usernames, the Regress Player option is hidden. It's not a problem right now as I don't need to regress the particular user, however it obviously could be an issue in the future. In the attached image, notice user xGRIDIRONxGURUx towards the bottom.

As well, just simply for a seamless look, it'd be nice to see the Regress Player image appear in front of the player's username and be the mirror image of the Advance Player. That's obviously just a personal aesthetic note but thought I'd mention it.

This can be fixed by increasing the Tournament Bracket Width setting. Keep making the size larger until it is long enough to fit both the longest name and the buttons.

cdj 06-20-2011 12:39 AM

Quote:

Originally Posted by TinCow1 (Post 2209720)
This can be fixed by increasing the Tournament Bracket Width setting. Keep making the size larger until it is long enough to fit both the longest name and the buttons.

Thanks for the info!

excessive34 06-20-2011 02:13 AM

Have an issue.

While using the Ladder System:
It is supposed to number the players.
Example:
1. jason
2. Jander
3. fred

For some reason it looks like this

1. Jason
1= Jander
1= Fred

A link to show it can be seen here:
http://www.gd-gaming.com/ladders.php?do=view&id=3

could use a fix for this.

excessive34 06-20-2011 02:54 AM

NVM figured that out!

After finishing a tournament, it doesn't seem to be adding wins/losses to the ladder? Do I have to do it manually?

LichtMann 06-20-2011 03:07 PM

Hi!

After upgrading to 4.4.7 the system is not showing the brackets!

Just a blank space. I noticed that the code is in the document, but the browser is not showing them.

I tried reverting to 4.4.3 but was useless. hat solution do you think can I use?


Example here:

http://gamersco.com/tournaments.php?do=view&id=20


Greetings.

bananalive 06-20-2011 05:08 PM

1 Attachment(s)
Quote:

Originally Posted by LichtMann (Post 2210453)
Hi!

After upgrading to 4.4.7 the system is not showing the brackets!

Just a blank space. I noticed that the code is in the document, but the browser is not showing them.

I tried reverting to 4.4.3 but was useless. hat solution do you think can I use?


Example here:

http://gamersco.com/tournaments.php?do=view&id=20


Greetings.

Your container css has float: right property

Simple solution:

Import attached file to includes/ folder in your forum directory (allow overwrite)

bananalive 06-20-2011 05:18 PM

Quote:

Originally Posted by excessive34 (Post 2210201)
NVM figured that out!

After finishing a tournament, it doesn't seem to be adding wins/losses to the ladder? Do I have to do it manually?

When linked to a ladder, tournament winner(s) can be given some experience or elo rating points.

LichtMann 06-20-2011 06:15 PM

Thank you for your answer. It worked! :)

Another issue I forgot to mention. Before the update, the auto complete function adding players to tournaments was working, but now it does not work. Do you have idea why it could be?

Greetings.

KrU$ty 06-20-2011 11:51 PM

When clicking on 'more matches' on the upcoming matches tab in a league, i get the following errors:

Quote:

Warning
Quote:

: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/vba_cmps_include_template.php on line 20

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/vba_cmps_include_template.php on line 43

Warning: Invalid argument supplied for foreach() in [path]/includes/init.php(331) : eval()'d code on line 83

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/vba_cmps_include_top.php on line 773

Warning: array_merge() [function.array-merge]: Argument #2 is not an array in [path]/includes/vba_cmps_include_top.php on line 773

Also, the option to display a user field next to a player username does not seem to be working. If i add {usertext} it displays the linked username next to their username fine (in other words their username twice), however if i put {field5} is shows nothing.

excessive34 06-21-2011 12:31 AM

Thanks for the help banana, one more question.

My users are having trouble locating some of the "Join" buttons or "Join Ladder" links. Is there a template that I can edit somewhere? I know how to adjust everything, I just can't find the template.

excessive34 06-21-2011 12:52 AM

Found the templates... Every time I attempt to edit them.. I get these.

Template: tmnt_ladder_display

"vBulletin Message
The following error occurred when attempting to evaluate this template:
Could not find phrase 'too_many_attributes'.
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish."

"This template was changed by someone else while you were editing it. Your changes have not been saved. Please merge your changes from the lower editor into the current version in the upper editor. When you save this page, only what is in the upper editor will be saved."

I re-ad the changes and attempt to save again, same thing. Are we not allowed to edit this or something?

EasyEazy 06-21-2011 02:39 PM

Request if possible

Could we have an option to remove the uncategorised sections on this mod?

Thanks in advance

CharlieDelta 06-22-2011 11:39 PM

Hi Banana I have a question.
We started our league and in the league options we set up 14 rounds. The 14 rounds are within the start and end date. The problem that we see is when we view the upcoming matches the filter drop down is only showing 12 rounds. Does this mean the league will only have 12 rounds to play or is the viewing only limited to the first 12?

bananalive 06-23-2011 09:06 AM

Quote:

Originally Posted by stwan (Post 2208389)
Please make Words => in the phrase:

Line 2054:
HTML Code:

<option title="time" value="0" class="">Midnight</option>
HTML Code:

<option title="time" value="12" class="">Midday</option>

Line 5831:
HTML Code:

<option title="time" value="0" class="">Midnight</option>
HTML Code:

<option title="time" value="12" class="">Midday</option>
Line 5838-5849
HTML Code:

<label for="checkin">Require Competitors to Check-in</label>
                <div>
                        <select name="checkin" id="checkin">
                                <option value="0"{vb:raw tmnt.sel.checkin.0}>No Check-in Required</option>
                                <option value="600" {vb:raw tmnt.sel.checkin.600}>10 minutes before tournament starts</option>
                                <option value="1200" {vb:raw tmnt.sel.checkin.1200}>20 minutes before tournament starts</option>
                                <option value="1800" {vb:raw tmnt.sel.checkin.1800}>30 minutes before tournament starts</option>
                                <option value="3600" {vb:raw tmnt.sel.checkin.3600}>1 hour before tournament starts</option>
                                <option value="7200" {vb:raw tmnt.sel.checkin.7200}>2 hour before tournament starts</option>
                        </select>
                </div>
<p class="description">This requires players to check in here before tournament, otherwise they will be removed from the tournament.</p>


Phrased in next version.

bananalive 06-23-2011 09:08 AM

Quote:

Originally Posted by KrU$ty (Post 2210643)
When clicking on 'more matches' on the upcoming matches tab in a league, i get the following errors:

The file includes/vba_cmps_include_top.php is not related to this modification.
Quote:

Also, the option to display a user field next to a player username does not seem to be working. If i add {usertext} it displays the linked username next to their username fine (in other words their username twice), however if i put {field5} is shows nothing.
Enable competition setting:

Join User Tables to User Profile Tables

bananalive 06-23-2011 09:10 AM

Quote:

Originally Posted by excessive34 (Post 2210660)
Found the templates... Every time I attempt to edit them.. I get these.

Template: tmnt_ladder_display

"vBulletin Message
The following error occurred when attempting to evaluate this template:
Could not find phrase 'too_many_attributes'.
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish."

"This template was changed by someone else while you were editing it. Your changes have not been saved. Please merge your changes from the lower editor into the current version in the upper editor. When you save this page, only what is in the upper editor will be saved."

I re-ad the changes and attempt to save again, same thing. Are we not allowed to edit this or something?

Be careful that you have the whole condition starting <vb:if condition="... until </vb:if> otherwise this error will occur

bananalive 06-23-2011 09:13 AM

Quote:

Originally Posted by CharlieDelta (Post 2211547)
Hi Banana I have a question.
We started our league and in the league options we set up 14 rounds. The 14 rounds are within the start and end date. The problem that we see is when we view the upcoming matches the filter drop down is only showing 12 rounds. Does this mean the league will only have 12 rounds to play or is the viewing only limited to the first 12?

Fixed in next version.

bananalive 06-23-2011 09:13 AM

Quote:

Originally Posted by LichtMann (Post 2210514)
Thank you for your answer. It worked! :)

Another issue I forgot to mention. Before the update, the auto complete function adding players to tournaments was working, but now it does not work. Do you have idea why it could be?

Greetings.

What tournament type? How many players/teams?


All times are GMT. The time now is 12:45 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03888 seconds
  • Memory Usage 1,939KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (39)bbcode_html_printable
  • (1)bbcode_php_printable
  • (23)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete