vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - Casino (w/ 10 player poker) (https://vborg.vbsupport.ru/showthread.php?t=159151)

Andrew Green 10-25-2007 07:40 PM

Quote:

Originally Posted by ry215 (Post 1368598)
I've been craving for this option since the first version of casino. I also like to have wheels that suit my forum. Please let me and the rest know of your progress. Thanks.

You can just edit the image files & payout chart, just keep in mind that the payouts would still match up with the locations on the wheel.

ry215 10-25-2007 07:42 PM

I thought about that, too, but was afraid of messing up my forum, :erm: Thanks for the confirmation.

edytwinky 10-25-2007 07:42 PM

Is there a way to Just at the Texas Hold Em part?

Andrew Green 10-25-2007 07:45 PM

All of the games can be turned on / off individually in the admincp.

ry215 10-25-2007 08:09 PM

Here is another very easy game to play and quite popular in my community:

It's call "3 Cards Vpoker", up to 10 players can play. From 52 cards deck, each of the players is deal 3cards, after they put in a fixed-option bet to a total pool (10 players x $10bet = $100 pool).

If the player's 3 cards add up to the highest points, he/she will win the pool. Highest point being 3 faces, and 0 point being the lowest....

For ex: J K Q = 3 faces (highest point)
9 J K = 9 points (second high)
8 A K = 9 points
6 A A = 6 points
5 2 10 = 7 points
7 2 2 = 1 point
10 K J = 0 point

If there are more than 1 highest point players, they split the pool.

The cards are faced down, the players can view their cards and points adding up when they open each of the cards.

It would be nice to have this game, Andrew! :-).

Rushty 10-25-2007 08:14 PM

any chance in the next version you can escape out `range` in the lottery sql, got .5 installed on my forums by correcting this for mysql5.1 but would be nice if I dont have to go re-do it on installing the next version.

prity please

Andrew Green 10-25-2007 08:17 PM

it will :)

towermatt 10-25-2007 09:33 PM

I'm hoping to get the ability to delete sports events too.

My tests are piling up. :D

NeilK 10-25-2007 11:23 PM

Stupid question of the day... How do I change the text color in the sportsbook? Things like Recent Events, Add Events, etc are invisible as they match the background color in my skin.

Thanks,

-noob

csavern 10-25-2007 11:40 PM

Replace ninja slots With 7'S Slots

You will Need to Download slotwheel2 Add to casino/cards Folder and overwrite Then Make A Template Change

In a few secs i will show pictures of the new Reel but to make this correct you will need to Go to your Admincp - Styles and Templates - Edit templates - Casino Templates then edit your casino_slots_main Template

Find
Code:

<if condition="$slotsgame==2">
                                                <table class='tborder' >
                                                        <thead>
                                                                <tr>
                                                                        <td class='thead' colspan='2'>Payout chart</td>
                                                                </tr>
                                                        </thead>
                                                        <tbody>
                                                                <tr>
                                                                        <td class='alt1'>3 x Black Ninjas</td>
                                                                        <td class='alt1'>1000</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt2'>3 x Blue Ninjas</td>
                                                                        <td class='alt2'>200</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>3 x Green Ninjas</td>
                                                                        <td class='alt1'>50</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt2'>3 x Red Ninjas</td>
                                                                        <td class='alt2'>20</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>3 x Stars</td>
                                                                        <td class='alt1'>10</td>
                                                                </tr>                                                       
                                                                <tr>
                                                                        <td class='alt2'>3 x Ninjas</td>
                                                                        <td class='alt2'>3</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>2 x Stars</td>
                                                                        <td class='alt1'>2</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt2'>1 x Star</td>
                                                                        <td class='alt2'>1</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>3 x Blanks</td>
                                                                        <td class='alt1'>1</td>
                                                                </tr>
                                                </table>

                                        </td>
                                </tr>
                        </table>


</if>

Replace with
Code:

<if condition="$slotsgame==2">
                                                <table class='tborder' >
                                                        <thead>
                                                                <tr>
                                                                        <td class='thead' colspan='2'>Payout chart</td>
                                                                </tr>
                                                        </thead>
                                                        <tbody>
                                                                <tr>
                                                                        <td class='alt1'>3 x Gold 7</td>
                                                                        <td class='alt1'>1000</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt2'>3 x Blue 7</td>
                                                                        <td class='alt2'>200</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>3 x Grey 7</td>
                                                                        <td class='alt1'>50</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt2'>3 x Red 7</td>
                                                                        <td class='alt2'>20</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>3 x Cherrys</td>
                                                                        <td class='alt1'>10</td>
                                                                </tr>                                                       
                                                                <tr>
                                                                        <td class='alt2'>3 x Any 7's</td>
                                                                        <td class='alt2'>3</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>2 x Cherrys</td>
                                                                        <td class='alt1'>2</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt2'>1 x Cherrys</td>
                                                                        <td class='alt2'>1</td>
                                                                </tr>
                                                                <tr>
                                                                        <td class='alt1'>3 x SingleBar</td>
                                                                        <td class='alt1'>1</td>
                                                                </tr>
                                                </table>

                                        </td>
                                </tr>
                        </table>
</if>

https://vborg.vbsupport.ru/

https://vborg.vbsupport.ru/

Also Added a New Set of Poker Chips

https://vborg.vbsupport.ru/

Can be downloaded here

https://vborg.vbsupport.ru/showpost....&postcount=962

If anyone would like to see the slot in action visit http://www.rotormadness.com


All times are GMT. The time now is 02:55 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03618 seconds
  • Memory Usage 1,788KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete