vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - Forum Tournaments & Ladders (https://vborg.vbsupport.ru/showthread.php?t=189375)

neverstop 07-08-2009 05:05 AM

having trouble with avatars in the tournament comments

the avatsr url has /thumbs in it ie: customavatars/thumbs/avatar23_2.gif

I tried removing "/thumbs from thisline:

PHP Code:

$comment['avatarurl'] = $vbulletin->options['avatarurl'] . ($thumb '/thumbs' '') . "/avatar{$comment['userid']}_{$comment['avatarrevision']}.gif"


but it had no effect.

wAnBoA 07-09-2009 06:20 AM

Is it possible to add members to the ladder and edit their wins manually?

shane greer 07-11-2009 06:40 PM

Quote:

Originally Posted by bananalive (Post 1843849)
Ahh, i know where you mean.

Where does the link point to?

The contents of the pm is defined in the template: tmnt_ladder_chalpm

the link points to the correct location but has it all in lower case when my address has capitals in it.

How do I change that?

$title. Click /ladders.php?do=challenges]here to view all your challenges.

This is whats in the tmnt_ladder_chalpm how do I change that.

bananalive 07-12-2009 09:56 AM

Quote:

Originally Posted by neverstop (Post 1844961)
having trouble with avatars in the tournament comments

the avatsr url has /thumbs in it ie: customavatars/thumbs/avatar23_2.gif

I tried removing "/thumbs from thisline:

PHP Code:

$comment['avatarurl'] = $vbulletin->options['avatarurl'] . ($thumb '/thumbs' '') . "/avatar{$comment['userid']}_{$comment['avatarrevision']}.gif"

but it had no effect.

You are editing the correct line

Change:
PHP Code:

$comment['avatarurl'] = $vbulletin->options['avatarurl'] . ($thumb '/thumbs' '') . "/avatar{$comment['userid']}_{$comment['avatarrevision']}.gif"

To:
PHP Code:

$comment['avatarurl'] = $vbulletin->options['avatarurl'] .  "/avatar{$comment['userid']}_{$comment['avatarrevision']}.gif"


bananalive 07-12-2009 09:57 AM

Quote:

Originally Posted by wAnBoA (Post 1845600)
Is it possible to add members to the ladder and edit their wins manually?

You cannot add members to the ladder. But you can add ladder challenges and submit the score.

bananalive 07-12-2009 09:58 AM

Quote:

Originally Posted by shane greer (Post 1847107)
the link points to the correct location but has it all in lower case when my address has capitals in it.

How do I change that?

$title. Click /ladders.php?do=challenges]here to view all your challenges.

This is whats in the tmnt_ladder_chalpm how do I change that.

Replace $vboptions[bburl] with the correct url to your forum

eg.

HTML Code:

$title. Click [url=hhtp://yourForumUrl.com/forum/ladders.php?do=challenges]here[/url] to view all your challenges.

commoncents 07-12-2009 09:42 PM

Reposting this just in case you missed it (or if you don't care lol)

Quote:

Originally Posted by commoncents (Post 1843027)
ok cool. as long as there is a way to overwrite someone who doesn't report i'm happy.

What about calculating averages? For example, I'll be using this for football games. Is there a way for you to calculate the averages of multiple games played . For instance if I play 3 games and score 30 points total in all 3, my average will be 10 points a game. This would be fun to allow users to see, who scores the most. Who has the best D, etc ,etc. you could allow the admin to determine what stats users must enter. and only the winner would have to enter the stats.


BlueNinjaGo 07-13-2009 03:51 PM

I deleted a test tournament, but it still affects the stats. Is there anyway of fixing that?

fernas 07-13-2009 10:59 PM

It is possible subcategories?

Firedshot 07-14-2009 08:14 PM

Hi, I've been trying to get this to work for hours now and i've given up for the night now. I've installed with out problems and i can access the .php's if i type them in but there is no navi option for it and i don't have permission to use the plug nore do i have the option in user group to turn it on for anyone? it's just not in the options although all area's apear to be installed correctly?

BlueNinjaGo 07-15-2009 04:31 PM

Suggestion: Allow admins to choose certain users to be moderators over certain Tournaments.

Ex: User A can only be a moderator over Tournament 1. User B can only be a moderator over Tournament 2 and 3.

This would help us a lot in managing the tournaments.

bananalive 07-17-2009 04:37 PM

Quote:

Originally Posted by commoncents (Post 1843027)
ok cool. as long as there is a way to overwrite someone who doesn't report i'm happy.

What about calculating averages? For example, I'll be using this for football games. Is there a way for you to calculate the averages of multiple games played . For instance if I play 3 games and score 30 points total in all 3, my average will be 10 points a game. This would be fun to allow users to see, who scores the most. Who has the best D, etc ,etc. you could allow the admin to determine what stats users must enter. and only the winner would have to enter the stats.

You can manually insert scores, without them being reported if you wish.

Upload attached file

Find in template tmnt_ladder_cmpt:
HTML Code:

<span title="$vbphrase[ladder_totalpoints_desc]">$vbphrase[ladder_totalpoints]: $cmpt[totalpoints]</span>
Add after:
HTML Code:

Points Average: $cmpt[pointsaverage]

bananalive 07-17-2009 04:38 PM

Quote:

Originally Posted by BlueNinjaGo (Post 1848177)
I deleted a test tournament, but it still affects the stats. Is there anyway of fixing that?

Unless you alter the value manually using phpmyadmin, no.

bananalive 07-17-2009 04:39 PM

Quote:

Originally Posted by fernas (Post 1848331)
It is possible subcategories?

No.

bananalive 07-17-2009 04:40 PM

Quote:

Originally Posted by Firedshot (Post 1848772)
Hi, I've been trying to get this to work for hours now and i've given up for the night now. I've installed with out problems and i can access the .php's if i type them in but there is no navi option for it and i don't have permission to use the plug nore do i have the option in user group to turn it on for anyone? it's just not in the options although all area's apear to be installed correctly?

Check you have uploaded bitfield_tournament2008.xml to includes/xml/

Firedshot 07-17-2009 05:08 PM

Thanks that got it :) can't belive i missed it!

lasjaakon 07-19-2009 10:53 PM

I have trouble with people being able to access the page with tournaments. It says they dont have access. Even if I have given them access. What am I missing? are there any more options somewhere?

bananalive 07-20-2009 11:39 AM

Quote:

Originally Posted by lasjaakon (Post 1851884)
I have trouble with people being able to access the page with tournaments. It says they dont have access. Even if I have given them access. What am I missing? are there any more options somewhere?

Permissions are set in Usergroup Permissions.

Make sure you have the modification enabled and Banned Users is empty both in Tournament and Ladder Options.

820Media 07-20-2009 02:21 PM

Is there a way to create a tournament but put it as teams but not require a full team to signup, so people will join and then they will be put into teams..

Or how do you even create teams?

820Media 07-20-2009 02:37 PM

nvm fixed, reimported xml and got alot of options on the tourney page.

bananalive 07-20-2009 02:41 PM

Quote:

Originally Posted by jetgaming (Post 1852228)
Is there a way to create a tournament but put it as teams but not require a full team to signup, so people will join and then they will be put into teams..

Or how do you even create teams?

You could create a team tournament with min members 1 max members 10 (hoping for teams of ten). Then write in the description...
Quote:

join empty teams by clicking on the team you wish to join and then clicking Join team on next page (requires confirmation by team leader).
If you wish to create your own team, click here and join tournament.
(Members would need to be given usergroup permission to create teams)

820Media 07-20-2009 03:22 PM

Thanks ive fixed it a top nav bar appeared i probably thought it would create a new navbar above the current one with tourney links.

Great Mod, voted for MOTM

Covert-OPs_ 07-22-2009 12:59 AM

I am checking back in to find out if there has been any progress on the following:

Quote:

Originally Posted by Covert-OPs_ (Post 1686519)
Feature Request: Ladder Add-on

1. I think it would be great if there was a way to set a date cut-off for ladders. Once that date is hit then the ladder gives the admin/mod the ability to create a tournament based on the results of the ladder. The top teams would be placed high on the bracket with bye's into the second round/third round depending on the number of participants. It would also matchup teams based on their record from the ladder, so the lowest ranked teams would face the strongest teams(assuming that a bye system is not possible or doesn't make sense). This would create a league/playoff atmosphere around the mod and would be VERY helpful in my opinion.

2. Challenge Details are needed for the ladder. Basically, a place to put in the details of the match in question. A few suggestions would be Map Name, Mode, Number of players needed, Date & Time, Notes.

Feature Request: Tournament Add-on

The ability to seed players/teams in the tournament bracket.


MotMann 07-23-2009 03:55 PM

• The URL to the Avatar is wrong.

• And the Text is not full phrased. Maybe "Current Tournament Datum in your Timezone" is not to translate in the ACP (Phrase).

• How i can reset the results?
• The Time is wrong.

What shell i do?

masterwebguy 07-27-2009 07:23 PM

great!

zombietom 07-29-2009 04:35 AM

I have trouble with people being able to access the page with tournaments. It says they dont have access. Even if I have given them access. What am I missing? are there any more options somewhere?

zombietom 07-29-2009 04:51 AM

I figured it out. Just had a setting wrong...thanks it seems to be very good .

bananalive 07-29-2009 06:15 PM

Quote:

Originally Posted by MotMann (Post 1854240)
? The URL to the Avatar is wrong.

? And the Text is not full phrased. Maybe "Current Tournament Datum in your Timezone" is not to translate in the ACP (Phrase).

? How i can reset the results?
? The Time is wrong.

What shell i do?

The avatar url is based around the folder selected in vbulletin options.

Added as phrase for next version.

You cannot reset user's wins/ joins tournaments.

Which time?

BlueNinjaGo 08-04-2009 01:20 PM

Quote:

Originally Posted by bananalive (Post 1858007)
You cannot reset user's wins/ joins tournaments.

I actually managed to do this in the database...

Assuming you don't have to change a lot of people's, it's not that big of a deal. There should be a way to reset the field for everyone to 0, but I'm not that familiar with database coding.

KoV Mr Awesome 08-04-2009 05:39 PM

I followed the instructions in the read-me that came with the download, but I cannot find a link or anything to the tournaments/ladders on my website. I can see the tournament/ladder permissions for user groups in my admincp. Anyone have an idea of what's going on?

EDIT: My vB is set up in a forum sub-directory folder. That is where I installed the files, was this correct? I also contacted my webhost and had them change the \image\teamlogos directory to CH MOD 777) and still couldn't find anything on my site

BlueNinjaGo 08-04-2009 07:58 PM

go to YourSiteURL.com/subfolder/competitions.php

KoV Mr Awesome 08-05-2009 02:50 AM

BlueNinjaGo... Thanks man. LOL, this is my first time ever working with vBulletin. Again, thanks for the help, I appreciate it

zombietom 08-05-2009 07:14 PM

I have some tournaments and ladders up if you want to view it...You don't have to reg. unless you want to joina tounrament or ladder..These are live active ladders for gamers ..so only join if you really are going to play.

See how it looks
www.tzaclan.net/forum/competitions.php

Phalynx 08-11-2009 09:26 AM

Quote:

Originally Posted by Gn_Snake (Post 1635498)
For future Release its possible to integrate it with VbExperience ?? :p

Forum Tournaments & Ladders is now included as CDP as a part of the final vBExperience 3.8.4 package:
https://vborg.vbsupport.ru/showthread.php?t=199556

MotMann 08-17-2009 07:27 AM

Quote:

Originally Posted by bananalive (Post 1858007)
Which time?

German +1 :-) for the turniersystemstart

And when comes the Update, because i can't start the Turnier if some Phrases in wrong language..

Nice job :)

baco84 08-17-2009 12:53 PM

hi! do you can create on this mod a mvp list on the team ladder?

cbehan 08-17-2009 04:02 PM

I might sound dumb in asking this....but I'm still trying to figure it out.

How are winners decided in a tournament?

a marked man 70 08-26-2009 03:42 PM

Quote:

Originally Posted by bananalive (Post 1852128)
Permissions are set in Usergroup Permissions.

Make sure you have the modification enabled and Banned Users is empty both in Tournament and Ladder Options.

ok, as admin, i can access the tournaments/ladders bit, but no other groups can, even though i have given them all the same permissions as i have. the mod is enabled and the banned users is empty, but still no other groups can access the page. it just comes up with "you do not have permission to access this page, bla, bla, bla"

Can somebody help us out. i am using 3.8.4

a marked man 70 08-26-2009 05:44 PM

ok, finally got it working. nice mod

LWS 08-27-2009 07:18 PM

is there any way to clear the tournament stats ? I cant seem to find where to do it...


All times are GMT. The time now is 05:32 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.06402 seconds
  • Memory Usage 1,849KB
  • 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
  • (3)bbcode_html_printable
  • (4)bbcode_php_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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