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

Reply
 
Thread Tools
vbCasino 3 (fixed) Details »»
vbCasino 3 (fixed)
Version: 3.00, by adamgessel adamgessel is offline
Developer Last Online: Aug 2007 Show Printable Version Email this Page

Version: 3.0.8 Rating:
Released: 08-03-2005 Last Update: Never Installs: 32
DB Changes
Code Changes Additional Files Is in Beta Stage  
No support by the author.

First I'd like to apologize for the last release. I thought it was ready but it wasn't working right like it should. This version is fixed and everything should be working right, I've gone through it completely.

This version is extremely easy to install, if you installed the last beta, the installer will do everything else for you!

This is mainly fixes, but also includes and about and a plugins page (for right now really just file edits). You can make your own modifications and put your custom made games on that page. Maybe in the future we'll have a simple plugin system you can use. If you make a plugin, I'd be happy to feature it on this page.

This installer can uninstall both beta 1 and beta 2, making it extremely simple to upgrade.

The phrases should be fixed in this version! (Waiting for it to be confirmed, but everything worked fine on an install on the test board!)

What's New:

-Tons of spelling errors fixed.
-Phrases fixed.
-About vbCasino created
-Plugins page created
-More phrases
-AdminCP phrases fixed
-Installer now uninstalls all BETAs
-Installer fixed from MySQL errors after uninstalling
-Files updated


This is considered a release canidate, like the last one (even though it didn't end up working ), but will be posted as a beta anyways.

Thanks to everyone who tried to help get the last version working.

DEMO BOARD:
(Will only be up for a few hours)

http://www.a-d-a-m.com/forum

FILE EDITS AND PLUGINS:

Already some file edits and plugins are being made! Make yours, submit it to the DEMO board, and I will feature it here on vbulletin.org!

-Add card images to your hi / low game!

-Addon vbCasino hack (default payouts) - micheal332001

-Roulette Image for Winning/Losing Number - micheal332001

Both me and waza are willing to install this on any board for $5. PM me if you're interested.

I can also install any other hacks (that are on vbulletin.org) for $5, you can PM if you're interested in this.

Please click install!!!

Supporters / CoAuthors

Show Your Support

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

Comments
  #102  
Old 09-17-2005, 05:43 PM
xtreme-mobile xtreme-mobile is offline
 
Join Date: Jul 2004
Posts: 366
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ive got this installed and looks good BUT

when im trying to test it on high/low it says i dont have any money how do i get cash for it lol

do i have to have the shop hack installed or is there a hack i can install that works with this

many thanks
dean
Reply With Quote
  #103  
Old 09-18-2005, 03:40 PM
waza waza is offline
 
Join Date: Apr 2005
Location: Belgium
Posts: 341
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You need a kind of a money system....
Ucash/Ushop has a money system
Vbookie en vbpetz also.
If you only want the casino, you can always just make a row in you user database and give every user a certein amount of money/credits/points/....

grz,
seba
Reply With Quote
  #104  
Old 09-19-2005, 05:40 PM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To make the vbcasino work with out a money system run this in your phpmyadmin

Remember to change the vb3_ to your prefix

PHP Code:
ALTER TABLE `vb3_userADD `uttpointsVARCHAR20 ) DEFAULT '500' NOT NULL 

Then to give everyone 500 money/credits/points/....
Run this in your phpmyadmin

Again change the vb3_ to your prefix

PHP Code:
 UPDATE `vb3_userSET `uttpoints` = '500' 
Hope this helps
Reply With Quote
  #105  
Old 09-21-2005, 07:15 PM
HHU HHU is offline
 
Join Date: Sep 2005
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This looks nice, going to install it when I get home in a few hours... question - anywhere I can download some games for it? Poker, Blackjack etc...

Nice job
Reply With Quote
  #106  
Old 09-21-2005, 10:57 PM
HHU HHU is offline
 
Join Date: Sep 2005
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Using version 3.07 and I'm getting this error on step 3 of the installation (never had this installed before):

Database error in vBulletin 3.0.7:

Invalid SQL:
INSERT INTO `lottery_settings` VALUES (1, 0, 'uttpoints', 3, '50,30,10', 1, 1, 1, 1, 1, '1,2,5,10', 1);

mysql error: You have an error in your SQL syntax near ';
' at line 2

mysql error number: 1064

Do you have any idea of what could be causing this problem?

Thanks
Reply With Quote
  #107  
Old 09-22-2005, 07:46 AM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HHU

Invalid SQL:
INSERT INTO `lottery_settings` VALUES (1, 0, 'uttpoints', 3, '50,30,10', 1, 1, 1, 1, 1, '1,2,5,10', 1);
What version of the vbcasino are you using.

From the looks of what you are trying to insert is wrong its to long.
This is trying to insert 12 fields and there is only 6 for the lottery_setting table.

In the casino_install.php file look for this on link 430 i think.

PHP Code:
 INSERT INTO " . TABLE_PREFIX . "lottery_settings 
It should look like this

PHP Code:
$DB_site->query("
INSERT INTO " 
TABLE_PREFIX "lottery_settings (active,lotteryactive,slotsactive,cashrow,winners,winamount) VALUES ('1','1','1','".$cashrow."','1','60')
"
); 
If it dont look like this try putting that in and run the install again.
Let me know if this fixs your problem.

Mike
Reply With Quote
  #108  
Old 09-22-2005, 09:32 PM
HHU HHU is offline
 
Join Date: Sep 2005
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, Not Sure If Im Actually Going To Try To Reinstall This.. Seems Like Theres Too Many Errors For The Time Being And Not Enough Games, So Im Hesitant At This Time... Really Want A Casino Feature Though, Would Be Great
Reply With Quote
  #109  
Old 09-24-2005, 01:12 PM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HHU

I have just tested the install script on my test site and it all installs fine.
There is no errors as i can see.

Download this version and all should be fine
https://vborg.vbsupport.ru/attachmen...chmentid=32887



Mike


Here is the install file i used put this file in your admincp folder and run it from the admin screen
Reply With Quote
  #110  
Old 09-24-2005, 02:26 PM
lewisbee lewisbee is offline
 
Join Date: Jul 2005
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this hack has overwritten my shoutbox
is there a way of having both working at the same time?
Reply With Quote
  #111  
Old 09-24-2005, 08:10 PM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi there

There is no way this should overright your shoutbox hack in any way as the casino uses diffarent sql tables and the code edits have nothing to do with the shoutbox.
I will test this out can you tell me what shoutbox hack you are using.
Post the link here to the hack forum and i will try it out.

Mike
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 08:38 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.08589 seconds
  • Memory Usage 2,316KB
  • 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
  • (4)bbcode_php
  • (1)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