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)

Shazz 04-04-2008 04:03 AM

Quote:

Originally Posted by hIBEES (Post 1478380)
Acoording 1 user that's having the prob it's happening 10/10 times :confused:

firefox and bt internet default (IE)

Not if you exit out and get back in
Thats 1/10

gravy 04-06-2008 11:24 AM

i want to display how much money a user has on another part of my site, outside of the forums...

how do i go about this??

i believe this is the code:
Code:

$vbphrase[casino_currency_marker]$cash

Our House 04-06-2008 01:45 PM

For those with the "scalar" error message in slots.php, I had a similar problem with video poker.

Open the slots.php file. Find (ending on line 85):

PHP Code:

for($x=1;$x<4;$x++)
{
    
$ypos = (rand() % 6) * -75 -45;
    
$y[$x-1]= $ypos

Add ABOVE it:

PHP Code:

$y = array(); 

That should work.

Our House 04-06-2008 02:20 PM

A bunch of people asked about how users can track their own sports pool activity. One person mentioned PMs. This should do the trick:

*HOW TO AUTOMATICALLY PM SPORTS POOL WINNERS*

Open sportspool.php and find:

PHP Code:

<?php

...at the very top. Add this below it:

PHP Code:

function sendWinnerPM($eventname$outcome$userid$amountWon$originalBet)
{
    global 
$vbulletin;
    require_once(
'includes/class_dm.php');
    require_once(
'includes/class_dm_pm.php');

    
$botpermissions['adminpermissions'] = 1;
    
$host['userid'] = 1;
    
$host['username'] = "USERNAME";
    
$recip fetch_userinfo($userid);
    
$recipname $recip['username'];
     
$message "
        
$recip[username],

        You have just won \$
$amountWon in the Sports Pool.

        [b]Original Bet:[/b] \$
$originalBet
        [b]Event Name:[/b] 
$eventname
        [b]Winning Outcome:[/b] 
$outcome
    "
;

    
$pmdm =& datamanager_init('PM'$vbulletinERRTYPE_SILENT);
    
$pmdm->set('fromuserid'$host['userid']);
    
$pmdm->set('fromusername'$host['username']);
    
$pmdm->set_info('receipt'false);
    
$pmdm->set_info('savecopy'false);
    
$pmdm->set('title'"Sports Pool Payout");
    
$pmdm->set('message'$message);
    
$pmdm->set_recipients($recipname$botpermissions);
    
$pmdm->set('dateline'TIMENOW);
    
$pmdm->set_info('overridequota'true);
    
$pmdm->save();


Be sure to replace these variables in the above code with your own info:
$botpermissions['adminpermissions'] = your admin userid;
$host['userid'] = userid of PM sender;
$host['username'] = "username of PM sender"; (leave the quotes)

Then find:

PHP Code:

if($result == $outcome['outcomeid'])
    
$share $outcome['totalbets'];
$total += $outcome['totalbets']; 

Replace with:

PHP Code:

if($result == $outcome['outcomeid'])
{
    
$thisOutcome $outcome['outcomename'];
    
$share $outcome['totalbets'];
}
$total += $outcome['totalbets']; 

Finally, find:

PHP Code:

$query "UPDATE " TABLE_PREFIX "user SET $cashtype = $cashtype + $w WHERE userid = $u";
$db->query($query); 

Add below:

PHP Code:

sendWinnerPM($eventname$thisOutcome$u$w$b); 

This will send a PM out to the winner(s) of each event that doesn't result in a draw. It will be executed when the event is settled in the sports pool section of the casino.

Sample PM:

Quote:

username,

You have just won $250 in the Sports Pool.

Original Bet: $50
Event Name: Baseball Game
Winning Outcome: Yankees

Our House 04-06-2008 04:49 PM

Hi Andrew,

Great Job on this mod!!

Feature request: "Repeat Bet" button for Blackjack, Let It Ride, and Roulette. Carpal tunnel users are looking for relief. :)

Our House 04-06-2008 04:57 PM

Oh, and +1 to everyone who asked for displayed results after the ball lands in Roulette. Would really be useful.

I may try to do a few other things on my own, but don't hold me to it.

1) added displays for Blackjack and Let It Ride (current bet, profit, etc.)
2) a way to request a PM with your current lottery numbers.

If they work out, I'll post the results and/or tutorials.

Our House 04-07-2008 09:29 AM

Quote:

Originally Posted by Our House (Post 1484494)
Feature request: "Repeat Bet" button for Blackjack, Let It Ride, and Roulette.

Quote:

Originally Posted by Our House
I may try to do a few other things on my own, but don't hold me to it.

1) added displays for Blackjack and Let It Ride (current bet, profit, etc.)

Ignore my feature request for Let It Ride. I added a repeat bet button and changed the display a little to provide the players some more info:

http://img181.imageshack.us/img181/439/letemridenr9.png

Here's how:

Open letmeride_deal.php

Find:

PHP Code:

<?php

Add below:

PHP Code:

session_start(); 

Find:

PHP Code:

if (($bet $vcash) || ($bet $tablelimit)) 

Add above:

PHP Code:

$_SESSION['letemride_lastbet'] = $bet

Find:

PHP Code:

$playeract "<div style='font-weight:bold; text-align:center; font-size: 18pt;'>$hand<br />$vbphrase[casino_currency_marker]$cash</div>"

Replace with:

PHP Code:

$playeract "<div style='font-weight:bold; text-align:center; font-size: 18pt;'><img style='cursor:pointer;' onclick='clearbet(); placebet(\"$_SESSION[letemride_lastbet]\"); playhand()', filen);' src='casino/cards/repeatbet.png' alt='repeat bet'/><br />$hand<br />Bet: $vbphrase[casino_currency_marker]$bet<br/>Won: $vbphrase[casino_currency_marker]$cash</div>"

The button doesn't really match the others, so you might want to photoshop/paint it up a little bit.

Our House 04-07-2008 09:59 AM

Here's the Repeat Bet button/feature for Blackjack. Use the same attached image from my above post or make your own if you want.


Open the FILE blackjack_deal.php


Find:

PHP Code:

<?php

Add below:

PHP Code:

session_start(); 

Find:

PHP Code:

for($i 0$i 52$i++) {
    
$card[$i]=$i;


Add below:

PHP Code:

$_SESSION['blackjack_lastbet'] = $bet

Open the TEMPLATE casino_blackjack_play


Find:

Code:

<img  style='cursor:pointer;' src='casino/cards/clear.png' alt='$vbphrase[casino_clear]' onclick='action(11,0)'/>
Add below:

Code:

<br /><img  style='cursor:pointer;' src='casino/cards/repeatbet.png' alt='repeat bet' onclick='action(11,0); action(0,$_SESSION[blackjack_lastbet]); action(10,0)'/>

Our House 04-07-2008 04:51 PM

*LOTTERY TICKETS PM'D TO USERS*

This will add a link that allows your members to request a PM of their tickets before the drawing makes them disappear.

http://img402.imageshack.us/img402/4023/lottopm2fo0.png

http://img402.imageshack.us/img402/4238/lottopmmi2.png


STEP ONE - Add a NEW PHRASE in your AdminCP:

Languages & Phrases -> Phrase Manager
- Select "Casino" from the dropdown
- Click "Add New Phrase"
Varname: casino_send_lottery_tickets
Text: PM Tickets To Me



STEP TWO - Open and edit the FILE lottery.php

Find:

PHP Code:

<?php


Add below (be sure to customize the adminpermission and host/sender settings!):

PHP Code:

function PMtickets($userid$username$title$message)
{
    global 
$vbulletin;
    require_once(
'includes/class_dm.php');
    require_once(
'includes/class_dm_pm.php');

    
$botpermissions['adminpermissions'] = 1//your admin userid
    
$host['userid'] = 1//userid PM is to be sent from
    
$host['username'] = "username"//username PM is to be sent from

    
$pmdm =& datamanager_init('PM'$vbulletinERRTYPE_SILENT);
    
$pmdm->set('fromuserid'$host['userid']);
    
$pmdm->set('fromusername'$host['username']);
    
$pmdm->set_info('receipt'false);
    
$pmdm->set_info('savecopy'false);
    
$pmdm->set('title'$title);
    
$pmdm->set('message'$message);
    
$pmdm->set_recipients($username$botpermissions);
    
$pmdm->set('dateline'TIMENOW);
    
$pmdm->set_info('overridequota'true);
    
$pmdm->save();



Find:

PHP Code:

while ($ticket $db->fetch_array($tickets))
{
    
$t explode(",",$ticket['ticketnumbers']);
    
sort($t);
    
    if(
$s == 1$s 2;
        else 
$s 1;
        
    for (
$i=0;$i<$numbers;$i++)
    {    
        
$y $t[$i];
        eval(
'$yourtickets .= "' fetch_template('casino_lottery_yourtickets') . '";');
    }
    
$y NULL;
    eval(
'$yourtickets .= "' fetch_template('casino_lottery_yourtickets') . '";');



Replace with:

PHP Code:

$counter 0;
$PMtext "$username,\n\nHere are your Lottery Tickets for the next drawing:\n\n";
while (
$ticket $db->fetch_array($tickets))
{
    
$t explode(",",$ticket['ticketnumbers']);
    
sort($t);

    if(
$s == 1$s 2;
        else 
$s 1;

    for (
$i=0;$i<$numbers;$i++)
    {
        
$y $t[$i];
        
$PMnumbers .= $i == ($numbers-1) ? "[b]{$y}[/b]" "[b]{$y}[/b]-";
        eval(
'$yourtickets .= "' fetch_template('casino_lottery_yourtickets') . '";');
    }

    
$PMtext .= "Ticket ".($counter+1).": $PMnumbers\n";
    
$PMnumbers "";
    
$y NULL;
    eval(
'$yourtickets .= "' fetch_template('casino_lottery_yourtickets') . '";');
    
$counter++;
}

if (
$counter 0)
{
    
//send PM if requested
    
if ($_GET['private_message'] == "send")
    {
        
$formatted_drawdate preg_replace("/\<br\/\>/"," - ",$drawdate);
        
$PMtitle "Lottery Tickets for $formatted_drawdate";
        
PMtickets($userid$username$PMtitle$PMtext);
    }

    
$alt = (fmod($counter,2) == 0) ? 2;
    
$yourtickets .= "
        <td class='alt
$alt' colspan='$i' align='center'><a href='casino.php?do=lottery&private_message=send'>$vbphrase[casino_send_lottery_tickets]</a></td>
    "
;



peterpigman 04-09-2008 12:24 AM

I used the repeat bet buttons very nice ty.


All times are GMT. The time now is 07:40 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.04755 seconds
  • Memory Usage 1,843KB
  • 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
  • (3)bbcode_code_printable
  • (22)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)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