Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Clanbase v1.1 Hack (upgrade) Details »»
Clanbase v1.1 Hack (upgrade)
Version: 1.00, by Gohan Gohan is offline
Developer Last Online: Apr 2008 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 08-28-2002 Last Update: Never Installs: 8
 
No support by the author.

Hi folks :bunny:,

I haven't stolen java code but I only modified to vbb!

Copyright (c) 2001 - Clanbase Javascript by David Hinchliffe !!!

Are your members too lazy to check the clanbase agenda? If this is the case, your members can still access clanbase site through this site and don't have to open new window.


Clanbase v1.1 Hack for all vbb version!! (don't need to test the old vbb version )

Demo: Click here

==================
Edit: Better English, Thanks to my friend [94th] Gen. Akira
==================

Upgrade to v1.1 (add ladder ID number)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 08-30-2002, 04:29 PM
Ninth Dimension's Avatar
Ninth Dimension Ninth Dimension is offline
 
Join Date: Oct 2001
Location: London, England.
Posts: 739
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok, i'm only going to be quick explaining this because I'm short on time (but can come back and help you more later).

all the clanbase.php files does is set the number of the clan, and displayes the template, it has power to do far far more.

what I'd suggest you do is remove the clan's id number from the file itself, but insted have it assigned via the URL:

eg, clanbase.php?clanid=12345

then all you do is some simple code like this:

PHP Code:
if (!$clanid) {

    
// display welcome page listing clans available

} else {

    
// display clan page


then all you would need is another template that would list your clan's, and use the correct links.

With a hack this small there is no need to go in too deep with anything like database support, etc... so the welcome page can be customiused by the hack user to fit in with there clan (i.e. about us, members, how to join, etc...)

Like i said, I don't have time at the moment to do it myself, but maybe later if you want a hand or some help, let me know
Reply With Quote
  #23  
Old 08-30-2002, 04:30 PM
Ninth Dimension's Avatar
Ninth Dimension Ninth Dimension is offline
 
Join Date: Oct 2001
Location: London, England.
Posts: 739
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PS, I used $clanid because I could not remember what your variable name was, just replace it with whatever it was
Reply With Quote
  #24  
Old 08-30-2002, 05:07 PM
Crazy Mofo Crazy Mofo is offline
 
Join Date: Nov 2001
Location: Newcastle,UK
Posts: 91
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

but what happens if you got a clan in clanbase but in multiple leagues like sof2,rtcw,cs how could u get it too only show it for only 1 game coz it would just add them all up then give u a total ranking for all the gaems and not for the indvidual game which is not what i wont
Reply With Quote
  #25  
Old 08-30-2002, 05:15 PM
Ninth Dimension's Avatar
Ninth Dimension Ninth Dimension is offline
 
Join Date: Oct 2001
Location: London, England.
Posts: 739
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you need to ask the author of the javascript to find that out, i'm not even sure that it's possable. (sorry to the author, i just like getting involved)
Reply With Quote
  #26  
Old 08-30-2002, 05:22 PM
Gohan's Avatar
Gohan Gohan is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Crazy Mofo
but what happens if you got a clan in clanbase but in multiple leagues like sof2,rtcw,cs how could u get it too only show it for only 1 game coz it would just add them all up then give u a total ranking for all the gaems and not for the indvidual game which is not what i wont
well possilbe.. i'll make upgrade later
Reply With Quote
  #27  
Old 08-30-2002, 05:23 PM
Gohan's Avatar
Gohan Gohan is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@Ninth Dimension , thank ya.. if i need helped, i'll ask to you
Reply With Quote
  #28  
Old 08-30-2002, 05:28 PM
Intex Intex is offline
 
Join Date: Apr 2002
Posts: 576
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Gohan - forgot to ask actually, I assume that the data just gets pulled from the CB database?

Tips for Improvement: Wonder whether you could add a column to hold screenshots links of the relevant war and another one for recorded demo links of the war. Just an idea ,
Reply With Quote
  #29  
Old 08-30-2002, 11:10 PM
Gohan's Avatar
Gohan Gohan is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Gohan - forgot to ask actually, I assume that the data just gets pulled from the CB database?
Yeah

Quote:
Tips for Improvement: Wonder whether you could add a column to hold screenshots links of the relevant war and another one for recorded demo links of the war. Just an idea ,
You mean a column from CB?
Reply With Quote
  #30  
Old 08-30-2002, 11:12 PM
Gohan's Avatar
Gohan Gohan is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 141
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Ninth Dimension
ok, i'm only going to be quick explaining this because I'm short on time (but can come back and help you more later).

all the clanbase.php files does is set the number of the clan, and displayes the template, it has power to do far far more.

what I'd suggest you do is remove the clan's id number from the file itself, but insted have it assigned via the URL:

eg, clanbase.php?clanid=12345

then all you do is some simple code like this:

PHP Code:
if (!$clanid) {

    
// display welcome page listing clans available

} else {

    
// display clan page


then all you would need is another template that would list your clan's, and use the correct links.

With a hack this small there is no need to go in too deep with anything like database support, etc... so the welcome page can be customiused by the hack user to fit in with there clan (i.e. about us, members, how to join, etc...)

Like i said, I don't have time at the moment to do it myself, but maybe later if you want a hand or some help, let me know
You may modify it.. I want seen your better hack
Reply With Quote
  #31  
Old 08-31-2002, 12:16 AM
Ninth Dimension's Avatar
Ninth Dimension Ninth Dimension is offline
 
Join Date: Oct 2001
Location: London, England.
Posts: 739
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK, i'm just headed off to sleep now, but i'll work on Clabase v2.0 when I wake up, it's not going to be anything special, infact most of your code is going to stay the same, but i'll do it anyway
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:23 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.10711 seconds
  • Memory Usage 2,314KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete