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
  #112  
Old 09-25-2005, 03:29 PM
xtreme-mobile xtreme-mobile is offline
 
Join Date: Jul 2004
Posts: 366
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is there anyway of making it so it would do the following

show a message saying "forums richest member" and then when they lose their title it goes on the next persons profile

is this possible

many thanks

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

Quote:
Originally Posted by xtreme-mobile
is there anyway of making it so it would do the following

show a message saying "forums richest member" and then when they lose their title it goes on the next persons profile

is this possible

many thanks

dean

Whats the point in this as the ucash/ushop has this.
If the casino had its own cash system then yes it would be a good idea.
This could be done yourself all you need to do is insert a new table into the users then cakk the top 10 so you could show the to 10 richest.

Mike
Reply With Quote
  #114  
Old 09-26-2005, 05:04 PM
xtreme-mobile xtreme-mobile is offline
 
Join Date: Jul 2004
Posts: 366
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ucash tells you how many points you have but i was thinking more like the arcade hack there was that displayed the arcade champ with a little trophy
Reply With Quote
  #115  
Old 09-26-2005, 06:12 PM
micheal332001 micheal332001 is offline
 
Join Date: Apr 2004
Posts: 1,112
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi again m8

Like i said it could not be done with the ucash/ushop addon as you can earn points in just about any where.
You would have to make your own cash tabel up to be able to do this.
I do like the idea.

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

Ok, going to install this with the file you put up here...

Also add a cron job to includes/cron/lottery_cron.php choose a date, whenever you want the lottery to be reset.

^^ How do I go about doing this?

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

Quote:
Originally Posted by micheal332001
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
Ok I took the new install file you provided and rar for casino and did all the changes etc... Same thing when I install, step three gives me the same error.

So then I did what this post here instructed.. although what you wanted me to change didn't quite look like what you said, and it was line 758.

It looked like this:

Code:
	$DB_site->query("
		INSERT INTO `".TABLE_PREFIX."lottery_settings` VALUES (1, 0, '".$cashrow."', 3, '50,30,10', 1, 1, 1, 1, 1, '1,2,5,10', 1);
	");
(Thats in the install you provided)

But when I did change that, I got this error on step 3 of install...

Invalid SQL:
INSERT INTO `lottery_slots_stats` VALUES (1, 1, 1, 1, 1, 1, 1);

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

mysql error number: 1064

I really would like to install this... but what could be the problem?

Thanks for the help

Its the "Apply Default Settings" Step



So now, its "installed" but not sure how much its working...

The phrases are not showing up anywhere... I'll screenshot it:

http://img14.imageshack.us/my.php?image=casino12hq.png

And...

http://img14.imageshack.us/my.php?image=casino28ba.png

And same for Roulette etc...

Would really like to have this installed...
Reply With Quote
  #118  
Old 09-28-2005, 11:44 AM
waza waza is offline
 
Join Date: Apr 2005
Location: Belgium
Posts: 341
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm, Try the following:
Go to your admincp -> languages & phrases -> click ' rebuild all languages '

This will probably fix it.
Reply With Quote
  #119  
Old 09-28-2005, 04:24 PM
HHU HHU is offline
 
Join Date: Sep 2005
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by waza
Hmm, Try the following:
Go to your admincp -> languages & phrases -> click ' rebuild all languages '

This will probably fix it.
Ok, well I don't have that option in my Languages and Phrases section.

Using VB 3.0.7

Also... is that all Step 3 does? The Phrases?

Is there nothing else done in that step?
Reply With Quote
  #120  
Old 09-29-2005, 02:23 PM
T_Montana T_Montana is offline
 
Join Date: Mar 2005
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this work for 3.0.7?

no template edits?
Reply With Quote
  #121  
Old 09-29-2005, 05:51 PM
waza waza is offline
 
Join Date: Apr 2005
Location: Belgium
Posts: 341
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HHU
Ok, well I don't have that option in my Languages and Phrases section.

Using VB 3.0.7

Also... is that all Step 3 does? The Phrases?

Is there nothing else done in that step?
I attached a screen from vb 3.0.7, If you did't remove the option, you must have it:
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:59 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.06187 seconds
  • Memory Usage 2,317KB
  • 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
  • (1)bbcode_code
  • (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
  • (1)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