Log in

View Full Version : Clanbase for vb??


Hialls
05-02-2004, 11:09 AM
Currently im coding a match/game section into my website that will be based around vbulletin, im just curious if anyone would be intrested if i made a clanbase version of this? With multiple clans and ladders...

13th_Disciple
05-02-2004, 12:46 PM
there is a system somewhat similar to what you are doing.. vBwar.. but those of us waiting on it are wondering if it will ever be done.. :(

but yes, there are tons of folks that would be interested in a system like this, imo..

Hialls
05-02-2004, 01:12 PM
Hmm so there would be no point be competeing with this system? Well if vbwar is never released i will release mine :P

13th_Disciple
05-03-2004, 12:40 AM
quite the opposite.. compete.. there is nothing wrong with many choices.. also, vBwar will just be a clan information center, more or less.. the ladder deal, AFAIK, won't be a part of it.. so please, make and release your hack.. I for one would be exteremly interested in it..

tempest
05-29-2004, 07:50 AM
i'd be keen on checking it out if you develop it.

patja2
07-15-2004, 02:31 PM
Currently im coding a match/game section into my website that will be based around vbulletin, im just curious if anyone would be intrested if i made a clanbase version of this? With multiple clans and ladders...

i used gohans for a long time on my site ,but with vb3 it wont work anymore ,so i decided to change the code myself ,unfortunatly something is wrong cause the page loads but its not showing any date ,the layout and everything works tho

i have used for a long time the clanbase hack from gohan version 1.1

<?
// Clanbase v1.0 Hack by Saxxon (aka Gohan)

//----- Config -----
$clanid = 000000; // Your Clanbase ID Number
$clanladder = 000; // Your Clan Ladder ID Number (e.g. Quake3,Medal of Honor,etc..)
$clanresultlistlimit = 100; // Limit of Result List
$clanupcominglistlimit = 10; // Limit of Upcoming List
//----- End -----

error_reporting(7);

$templatesused.='clanbase_home,clanbase_upcoming,c lanbase_result';

require("./global.php");

eval("\$clanbase_upcoming = \"".gettemplate("clanbase_upcoming")."\";");
eval("\$clanbase_result = \"".gettemplate("clanbase_result")."\";");
eval("dooutput(\"".gettemplate("clanbase_home")."\");");

?>



the code i changed (cause gettemplate is not used anymore dooutput either)
<?
// Clanbase v1.0 Hack by Saxxon (aka Gohan)

//----- Config -----
$clanid =xxxx; // Your Clanbase ID Number
$clanladder =xxx; // Your Clan Ladder ID Number (e.g. Quake3,Medal of Honor,etc..)
$clanresultlistlimit =100; // Limit of Result List
$clanupcominglistlimit =10; // Limit of Upcoming List
//----- End -----

error_reporting(7);

$templatesused.='clanbase_home,clanbase_upcoming,c lanbase_result';

require("./global.php");

eval('$clanbase_upcoming .= "'. fetch_template('clanbase_upcoming') . '";');
eval('$clanbase_result .= "'. fetch_template('clanbase_result') . '";');
eval('print_output("' . fetch_template('clanbase_home') . '");');

?>

Mr Footlong
07-27-2004, 02:30 PM
* Mr Footlong watches this thread with heavy interest :)

Hialls
07-27-2004, 10:58 PM
hmm ok i guess i will compete, i just need to find out exactly what features are needed :D as mine is suited to only my clan and therefore extra features/options would need to be added.