vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   vBookie for vBulletin 3.5 (https://vborg.vbsupport.ru/showthread.php?t=94128)

VerkroostJ 02-24-2006 09:59 AM

What's the code for adding 1 to the above bits to sort out the odds? I'm afraid I don't really know much in the way of coding.

Cheers.

dxguru 02-24-2006 10:07 AM

Quote:

Originally Posted by VerkroostJ
What's the code for adding 1 to the above bits to sort out the odds? I'm afraid I don't really know much in the way of coding.

Cheers.

Place an open bracket '(' after the '=' and ')+1' before the ';' on the end of the line.

dxguru 02-24-2006 10:09 AM

After upgrading to 1.0.7 I now get repeated ...

Warning: Division by zero in /showthread.php(1909) : eval()'d code on line 78

... when viewing a closed vBookie event thread, and also on new event threads.
Looks like it appears once per outcome.

Please can someone help me this time :)

argash 02-24-2006 10:32 AM

im lazy and didnt feel like searching through all 643 posts (though I did search the thread and couldnt find anything) but has parimutual or real time odds been implemented or would I need to hack it myself?

Andreas 02-24-2006 02:18 PM

@dxguru

I don't think I changed anything to the showthread plugins.
What's on line 78?

@argash
I don't even know what this is. So I guess it's not.

dxguru 02-24-2006 02:37 PM

Quote:

Originally Posted by Andreas
@dxguru

I don't think I changed anything to the showthread plugins.
What's on line 78?

It actually turned out to be in the Show Events in Showthread plugin

Original code
PHP Code:

$outcome['odds_decimal'] = (sprintf("%0.2f", ((float)$outcome['odds_against']/(float)$outcome['odds_for'])))+1

although I added the (...)+1

Changed this to
PHP Code:

if ((float)$outcome['odds_for'] > 0) {
   
$outcome['odds_decimal'] = (sprintf("%0.2f", ((float)$outcome['odds_against']/(float)$outcome['odds_for'])))+1;
} else {
   
$outcome['odds_decimal'] = 0;


and it seems to be working :)

Andreas 02-24-2006 02:55 PM

Erm ... the odds should be always > 0.
Doesn't make sense to have an outcome that could never win.

dxguru 02-24-2006 03:41 PM

I've seen odds of 1:2 on the betting sites before .. ie a $1 winning bet would return you $1.50 including your original bet (that's right isn't it?)

Andreas 02-24-2006 03:47 PM

Yes, that's correct IMHO.
Though as said before, I don't have the slightest clue of gambling :D

robdawg 02-24-2006 04:23 PM

anyone having trouble with the permission not saving properly?

vBulletin Version: 3.5.4

Andreas 02-24-2006 04:37 PM

Yes, that's a bug in the installation routine.
Just import the XML again or call admincp/index.php?do=buildbitfields

robdawg 02-24-2006 04:42 PM

yeah as soon as I posted that and dug through the forum a little I found that bit, but thanks for the fast response.

RTFM

Thanks. :)

robdawg 02-24-2006 05:24 PM

Just wondering if you will ever have something with las vegas betting lines where you can change the lines and people bet different lines when they change.

Or a parley system?

Thanks.

argash 02-25-2006 05:02 AM

Quote:

Originally Posted by Andreas
@dxguru

I don't think I changed anything to the showthread plugins.
What's on line 78?

@argash
I don't even know what this is. So I guess it's not.

https://vborg.vbsupport.ru/showpost....8&postcount=44

That post shows the basic forum of how it would work. Theres a few posts prior to it that go into a bit more detail.

dxguru 02-25-2006 06:29 AM

Quote:

Originally Posted by Andreas
Yes, that's correct IMHO.
Though as said before, I don't have the slightest clue of gambling :D

For someone who admits to not having "the slightest clue of gambling" you have done an awesome job Andreas.
Thanks :)

PaceAdvantage 02-25-2006 09:10 AM

Is there anyway to have the bets settle at the FINAL odds?

Currently, a user is paid at whatever the odds were at the time of the bet. I want to be able to go in after the event is over and edit the odds to reflect what the odds actually were at the END of the event, and have user bets paid off at the FINAL odds, which means every winner should be paid at the final odds, not the odds at the time the bet was made.

This is akin to pari-mutuel wagering ala Horse Racing.

Any idea how to alter the vbookie.php in order to payoff on whatever the FINAL odds were?

Thanks in advance.

dxguru 02-25-2006 10:54 AM

Quote:

Originally Posted by PaceAdvantage
Is there anyway to have the bets settle at the FINAL odds?

Currently, a user is paid at whatever the odds were at the time of the bet. I want to be able to go in after the event is over and edit the odds to reflect what the odds actually were at the END of the event, and have user bets paid off at the FINAL odds, which means every winner should be paid at the final odds, not the odds at the time the bet was made.

This is akin to pari-mutuel wagering ala Horse Racing.

Any idea how to alter the vbookie.php in order to payoff on whatever the FINAL odds were?

Thanks in advance.

IF this was to be implemented it would definately have to be optional. We don't have this kind of betting that I am aware of and cannot really understand why anyone would want to place a bet on something when they have no control over what odds they are betting on.

Why would you bat on something at odds of 5:1 when you know that after the event you may only be paid 1:1 (or worse)?

bashy 02-25-2006 11:12 AM

I always thought that once you made a bet at X odds then no matter
how the odds change you will always be paid at X odds....??

Andreas 02-25-2006 12:59 PM

The users will always be paid with the odds they bet on, no matter if you change the odds or not.

PaceAdvantage 02-25-2006 03:15 PM

Yes I know this, but I want my users to be able to bet on a horse race using virtual cash....when you bet on horseracing in America, you are never really sure what the final odds will be until betting is closed. There can be major swings if you bet early. I want to simulate the pari-mutuel style of betting in order to run a contest.

My plan was to put up a morning line, have people bet, then when the race is closed, change the odds to the actual OFF odds of the race in question, and then people will be paid in virtual cash the same exact amount of money had they bet on the race in real life.

Aren't there a few lines of code that can be added or changed to vBookie.php to have it calculate payouts based on the final odds instead of what the odds were when the person placed the bet?

argash 02-25-2006 06:13 PM

Even in pari mutuel style of betting your still paid at the odds you bet on at the time

PaceAdvantage 02-25-2006 06:22 PM

Not anywhere in the U.S. If I bet on a horse race at 10 minutes to post, and the odds on my horse are 5-1, and when the race is finished and the betting is closed, the final odds are 3-1, I get paid at 3-1.....that's the way it has always been.....

Can anyone help me here? [PRIOR OFFER RECINDED]

With my very limited knowledge of SQL and php coding, this doesn't seem like it should be that difficult a change....

FROGGYJ 02-25-2006 08:47 PM

Well this seems strange. I uploaded the files, imported the plugin, changed the permissions to the usergroups, but I only made the template change to newthread because I use ebux and don't need the postbit changes and my nav bar is cutom so don't really need that either......but yet when I make a new thread I can't get vbookie to show at the bottom so I can make a vbookie event. Any ideas?

Andreas 02-25-2006 08:56 PM

Maybe https://vborg.vbsupport.ru/showpost....&postcount=651
?

FROGGYJ 02-25-2006 09:07 PM

weird I tried that before and nothing....but this time I re-imported it and then rebuil the bitfields and voila. Thanks.

FROGGYJ 02-25-2006 09:14 PM

oh I found what the problem was. I have a forum for mods only, and I cannot post a vbookie event in there.....however if I try to do it in any public forum it works fine.

FROGGYJ 02-25-2006 09:19 PM

hey andreas how can I make a link to vbookie.php in my quick links menu options?

I see in the instructions

In Template navbar
FIND
--------------------------------------------------
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>
--------------------------------------------------

BELOW that ADD
--------------------------------------------------
<td class="vbmenu_control"><a href="vbookie.php?$session[sessionurl]">$vbphrase[vbookie]</a></td>

is that the answer? cause I don't have that line in my navbar.

Andreas 02-25-2006 09:23 PM

You do have, it's just slightly different ... search for calendar.php

PaceAdvantage 02-27-2006 10:59 PM

OK, I was able to find someone who altered the script for me to do what I required.....so cash offer now off the table....

trigon 03-01-2006 03:24 AM

Quote:

Originally Posted by PaceAdvantage
OK, I was able to find someone who altered the script for me to do what I required.....so cash offer now off the table....

@Andreas, kann man das auch mit einer Art "Belohnungssystem f?r Messages/Topics" erweitern? Dass zb. jeder, der auf ein best. Thema antwortet, x Punkte/dollars bekommt?
sorry but my German is better then my english. :)

grains 03-02-2006 12:08 AM

Everytime I update the forum permissions and then go back and view the permissions I set, the changes dont show up... :(

I dont want to have to do this by hand in the DB...

grains 03-02-2006 12:11 AM

hell...i wouldnt even know how...*sigh*....

please help...

grains 03-02-2006 12:15 AM

figured it out...read the thread...lol

psybernaut 03-02-2006 08:38 AM

How hard would it be to add an option to use the bookie's money when settling bets? ie. when you lay a bet the bookie receives the money, and then when you pay out the bets the winnings come out of the bookie's cash.

Some of my users have been taking advantage of a 'loophole' where they make their own events with big odds, bet on them themselves, then collect heaps of winnings. The money appears out of nowhere, so it's easily exploited, and means the site admin needs to keep a close eye on vbookie events. I think it would be more realistic if the bookie was the one who had to pay the winnings :)

NoRespect 03-02-2006 07:14 PM

Andreas,

Is there a way I can disable the anon bet button?

Thanks!

NitroSimSev 03-02-2006 10:39 PM

Andreas how can I querry the DB to pull the top 10 people who have the most vcash or ebux?

Oddjob 03-04-2006 04:12 AM

I have a problem.

My bookie is not allowing people to bet, one a staff member and the other a regular member with no permissions and no other usergroup.

I made a test account and it allowed me to bet.

I dont know whats wrong, all of my settings appear correct.

Oddjob 03-04-2006 03:54 PM

Any help????????

Steve The Plank 03-04-2006 07:48 PM

I have a sort've similar problem. My staff and admins can bet, but regular users cannot. Any ideas?

Zowners 03-05-2006 02:29 AM

i have a small problem :(. I just installed it, BUT when i got to USERGROUP --> USERGROUP MANAGER, and i try to change the vBookie permissions, it always resets itself to everything "no." so even if i check something as yes, when i click "ok" and then return again to that page, it will still be no

ANYONE KNOW WHATS HAPPENING?


All times are GMT. The time now is 07:17 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.02909 seconds
  • Memory Usage 1,826KB
  • 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_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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