Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBookie for vBulletin 3.5 Details »»
vBookie for vBulletin 3.5
Version: 1.0.7, by Andreas Andreas is offline
Developer Last Online: Jan 2023 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 08-11-2005 Last Update: 02-17-2006 Installs: 633
DB Changes Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

vBookie

Introduction

This is a Port of the original vBookie Hack created by tdjrico; full credits to him for the idea and the kind permission to port his work

A t t e n t i o n
This Hack is unsopported and incompatible with vBulletin 3.6+
You are hereby advised to not use it.
Please do not ask me about support and/or updates - there will be none.

Supporters / CoAuthors

Show Your Support

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

Comments
  #1632  
Old 10-18-2007, 03:53 PM
SA_TGAZ SA_TGAZ is offline
 
Join Date: Aug 2007
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a max amount that can be bet??? or any limitations on the size?
Reply With Quote
  #1633  
Old 10-18-2007, 07:10 PM
DS MrSinister DS MrSinister is offline
 
Join Date: Dec 2002
Location: the burgh
Posts: 553
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by SA_TGAZ View Post
Is there a max amount that can be bet??? or any limitations on the size?
yes


https://vborg.vbsupport.ru/showpost....&postcount=775
Reply With Quote
  #1634  
Old 10-18-2007, 07:54 PM
SA_TGAZ SA_TGAZ is offline
 
Join Date: Aug 2007
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DS MrSinister View Post
Thanks! I had tried to search for it but didn't have much like... I guess my keywords suck!
Reply With Quote
  #1635  
Old 10-20-2007, 01:06 PM
slickdawg slickdawg is offline
 
Join Date: May 2006
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First, I want to thank Sblueman and Kylek for their help !!!

I got vbookie running just fine on vb 3.6.7 PL1 - I uninstalled, and reinstalled, and the things that WERE supposed to be there WERE THERE, they were not before.

Now I have two questions:

1) On each user it lists their vcash total twice. How do I get rid of one of them?

2) How can I increase all the users vcash?

Thanks again for your help !
Reply With Quote
  #1636  
Old 10-22-2007, 12:00 PM
gatorenvy gatorenvy is offline
 
Join Date: Dec 2006
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I had a Moderator wrongly settle bets.

I can't find any way to go back and edit the the settled bets? Anything I'm missing, or is it once the bets are settled that's it?
Reply With Quote
  #1637  
Old 10-22-2007, 12:29 PM
Maxman1544 Maxman1544 is offline
 
Join Date: Jan 2006
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can anyone tell me the mysql syntax to use if I want to bump everyones vcash by x amount. I see the command to reset everyone to 500. WHat do I need to do if I want to keep everyone at the same level but add 2,500 to it?

Any help would be appreciated.

Thanks!
Reply With Quote
  #1638  
Old 10-24-2007, 01:22 PM
timnp timnp is offline
 
Join Date: Sep 2007
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bobster65 View Post
This is what I came up with. It involves 1 file edit and 2 template edits. The result is vcash showing up in the member list and is sortable...

Step 1: Edit memberlist.php

PHP Code:
================================
File Editmemberlist.php
================================
FIND:
--------------------------------
        case 
'posts':
            
$sqlsort 'user.posts';
            break;
--------------------------------
ADD BELOW:
--------------------------------
        case 
'vbookie_cash':
            
$sqlsort 'user.vbookie_cash';
            break; 

Step 2: Edit memberlist Template

PHP Code:
================================
Template Editmemberlist
================================
FIND:
--------------------------------
    <if 
condition="$show['postscol']"><td class="thead" nowrap="nowrap"><a href="$sorturl&amp;order=DESC&amp;sort=posts&amp;pp=$perpage$usergrouplink">$vbphrase[posts]</a$sortarrow[posts]</td></if>
--------------------------------
ADD BELOW:
--------------------------------
    <if 
condition="$vboptions['vbookiecashon']"><td class="thead" nowrap="nowrap"><a href="$sorturl&amp;order=DESC&amp;sort=vbookie_cash&amp;pp=$perpage$usergrouplink">$vbphrase[vbookie_vcash]</a$sortarrow[vbookie_cash]</td></if> 

Step 3: Edit memberlist_resultsbit Template

PHP Code:
================================
Template Editmemberlist_resultsbit
================================
FIND:
--------------------------------
    <if 
condition="$show['postscol'] AND exec_switch_bg()"><td class="$bgclass">$userinfo[posts]</td></if>
--------------------------------
ADD BELOW:
--------------------------------
    <if 
condition="$vboptions['vbookiecashon'] AND exec_switch_bg() "> <td class="$bgclass">$userinfo[vbookie_cash]</td></if> 

Tested on my site and works perfectly...
Hi. Thanks for this info. It was enough for me to write a product that does this task. You still need to make the two template changes that you mentioned but there is no need to edit the hard code. Attached is the product that you need to import.

Don't forget, you still need to edit the templates as you detailed above. This product just replaces having to edit the hard code.

Regards,

Tim.

(my first product so please be kind )
Reply With Quote
  #1639  
Old 10-25-2007, 07:27 AM
mathias mathias is offline
 
Join Date: Feb 2002
Posts: 102
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

someone release a 3.6.8 come on...
Reply With Quote
  #1640  
Old 10-25-2007, 07:53 AM
timnp timnp is offline
 
Join Date: Sep 2007
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Maxman1544 View Post
Can anyone tell me the mysql syntax to use if I want to bump everyones vcash by x amount. I see the command to reset everyone to 500. WHat do I need to do if I want to keep everyone at the same level but add 2,500 to it?

Any help would be appreciated.

Thanks!
Try:

UPDATE user SET vbookie_cash = vbookie_cash + 2500

Reply With Quote
  #1641  
Old 10-25-2007, 08:52 AM
TTG's Avatar
TTG TTG is offline
 
Join Date: May 2004
Location: Sth London
Posts: 1,042
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mathias View Post
someone release a 3.6.8 come on...
Would be appreciated :up:
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 02:24 AM.


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.05479 seconds
  • Memory Usage 2,332KB
  • Queries Executed 26 (?)
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
  • (3)bbcode_php
  • (5)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
  • (5)pagenav_pagelinkrel
  • (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