Quote:
Originally Posted by HighJinx
I'm shockingly bad at coding, using firebug to implement images underneath the rounds, this is a request to have an option to insert different maps/images at different rounds when creating tournaments.
Is this possible?
Keep up the good work 
|
v4.4.1+ (to be released...)
Create vBulletin Hook in AdminCP with hook location
tll_tmnt_view_post_query and the following php code
PHP Code:
if ($tid==45)
{
$template_hook['round1'] .= "<br />Map 1";
$template_hook['round2'] .= "<br />Map 2";
$template_hook['round3'] .= "<br />Map 3";
$template_hook['round4'] .= "<br />Map 4";
$template_hook['round5'] .= "<br />Cup";
}
45 is the tournament id