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)

Maxman1544 11-11-2007 07:06 AM

Quote:

Integrating with other cash systems
Can you use vcash with this? If so -- what needs to be modified?

Thanks for a great mod! :)

Maxman1544 11-11-2007 07:16 AM

Quote:

Originally Posted by Maxman1544 (Post 1380188)
Can you use vcash with this? If so -- what needs to be modified?

Thanks for a great mod! :)

Actually just looking at the admin panel here I would rather use your cash. Can anyone tell me how to change the cash system on my board?

I would basically like to preserve everyones vcash amount and just use this instead? Should be able to do this through mysql, I just don't know the syntax.

Thanks!

Jynxx 11-11-2007 10:17 AM

My guys absolutely love this mod......so thank you

In fact Im afraid I have created a forum of gambling addicts

One small bug that I have noticed is this:

In the updated casino stats.......when you click on the link to "richest users" it actually shows the table for one of the slot machines

This means that it is actually not possible to manually view the Richest Users

Any hints?

evesve 11-11-2007 10:22 AM

This is what I did to change my Casino:

New vbphrase (Text: Casino Games):
Code:

casino_casino_games
New vbphrase (Text: More Stats):
Code:

casino_more_stats
Find in Template: casino_index_main
Code:

<td class='tcat' colspan='2'>Games</td>
Change to:
Code:

<td class='tcat' colspan='2'>$vbphrase[casino_casino_games]</td>
Find in Template: casino_index_main
Code:

<p style='text-align:center'><a href='casino.php?do=stats'>More Stats</a></p>
Change to:
Code:

<p style='text-align:center'><a href='casino.php?do=stats'>$vbphrase[casino_more_stats]</a></p>
Find in Template: casino_index_main
Code:

<div style='text-align:center;font-size:16pt;font-weight:bold'>You have: $vbphrase[casino_currency_marker]$cash</div>
Change to:
Code:

<div style='text-align:center;font-size:16pt;font-weight:bold'>$vbphrase[casino_youhave]: $vbphrase[casino_currency_marker]$cash</div>
Find in template casino_stats_main
Code:

<table class='tborder' align='center' border='0' cellpadding='6' cellspacing='0' width='100%'>
        <thead>
                <tr>
                        <td class='thead'>Statistics</td>
                </tr>
        </thead>
        <tbody>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(1)'>Your Stats</td>
                </tr>
                <tr>
                        <td class='alt2' style='cursor:pointer' onclick='loadstats(2)'>Total Stats</td>
                </tr>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(3)'>Most Won</td>
                </tr>
                <tr>
                        <td class='alt2' style='cursor:pointer' onclick='loadstats(6)'>Most Lost</td>
                </tr>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(4)'>Luckiest People</td>
                </tr>
                <tr>
                        <td class='alt2' style='cursor:pointer' onclick='loadstats(7)'>Unluckiest People</td>
                </tr>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(105)'>Richest Players</td>
                </tr>
$gamestats
        </tbody>

</table>

Change to:
Code:

<table class='tborder' align='center' border='0' cellpadding='6' cellspacing='0' width='100%'>
        <thead>
                <tr>
                        <td class='thead'>$vbphrase[casino_statistics]</td>
                </tr>
        </thead>
        <tbody>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(1)'>$vbphrase[casino_yourstats]</td>
                </tr>
                <tr>
                        <td class='alt2' style='cursor:pointer' onclick='loadstats(2)'>$vbphrase[casino_totalstats]</td>
                </tr>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(3)'>$vbphrase[casino_mostwon]</td>
                </tr>
                <tr>
                        <td class='alt2' style='cursor:pointer' onclick='loadstats(6)'>$vbphrase[casino_mostlost]</td>
                </tr>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(4)'>$vbphrase[casino_luckiestpeople]</td>
                </tr>
                <tr>
                        <td class='alt2' style='cursor:pointer' onclick='loadstats(7)'>$vbphrase[casino_unluckiestpeople]</td>
                </tr>
                <tr>
                        <td class='alt1' style='cursor:pointer' onclick='loadstats(5)'>$vbphrase[casino_richest_players]</td>
                </tr>
$gamestats
        </tbody>

</table>

Find in casino/stats.php
Code:

$stitle = $vbphrase[casino_richest_players];
$col1 = $vbphrase[casino_name];

Change to:
Code:

$stitle = $vbphrase[casino_richest_players];
$scol1 = $vbphrase[casino_name];

Find in casino/stats.php (if you want Richest player as default in mainpage):
Code:

$page = (rand() % 7) + 1;
Change to:
Code:

$page = 5;
Find in casino/donate.php (if you want a PM when other members donate to each other):
Code:

$pmdm->set_recipients($giveto, $botpermissions);
Under it add (change ==your username== to your username):
Code:

$pmdm->set_recipients('==your username==;', $botpermissions);
Find in casino/slots_ajax.php:
Code:

else if($slotsgame == 3)
$query = "
        SELECT cs1.switch1 AS gameid, cs2.switch2 AS gameactive
        FROM casino_settings AS cs1, casino_settings AS cs2
        WHERE cs1.settingname='gamefile'
        AND cs1.switch2='bar7slots'
        AND cs1.switch1=cs2.switch1
        AND cs2.settingname='gameactive'
";

under it add:
Code:

else print_no_permission();

Robp57 11-11-2007 11:37 AM

Uploaded the new version and did not get bars and 7's.........
Everything else works, but when I got to bars and 7's it just refreshes the page....
Also, where is the donate option?

Doctor Death 11-11-2007 11:53 AM

Is there a "Who is in the casino" addon for the bottom of forums?

peterpigman 11-11-2007 12:14 PM

Could you add the option to exempt certain forums from casino cash for posts and threads etc? That would be handy.

sandt38 11-11-2007 04:40 PM

Quote:

Originally Posted by stangger5 (Post 1380107)
That has been fixed with the newest version..

Have you changed anything in the casino_stats_main template ??
If so you need to revert before you run the xml file..

Look in the casino_stats_main for
Code:

<td class='alt1' style='cursor:pointer' onclick='loadstats(105)'>Richest Players</td>
Make sure the loadstats is (5),, not (105)..

:)

I just reloaded everything and the same error is present. Is that supposed to be in row 433 and row 434? I see something quite different...

Code:

<td class='alt$i' style='cursor:pointer' onclick='loadstats($gameid)'>$vbphrase[casino_topplayers] - $gamename</td></tr>";
}


sandt38 11-11-2007 04:44 PM

Quote:

Originally Posted by Robp57 (Post 1380272)
Uploaded the new version and did not get bars and 7's.........
Everything else works, but when I got to bars and 7's it just refreshes the page....
Also, where is the donate option?

Reload your casino.php, slots.php and slots_ajax.php. files. Also, be certain you loaded your casino product and allowed overwrite. I had a similar issue and reloaded these and fixed the issue, as per Mr. Green's advice.

NFLfbJunkie 11-11-2007 07:57 PM

Is there a way to reset all of the game stats?


All times are GMT. The time now is 02:15 AM.

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.02690 seconds
  • Memory Usage 1,769KB
  • 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
  • (20)bbcode_code_printable
  • (4)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