vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Integration with vBulletin - Soccer Betting Game ("Fussball-Tippspiele") (https://vborg.vbsupport.ru/showthread.php?t=238043)

Antonio Pereira 04-18-2010 06:36 PM

In Usergroup Maganer have 2 Options.
Quote:

Is allowed to submit bets?
Is allowed to submit match results?
What this means?

The first one i understand but the other i dont understand....


Best Regards

Bacon Butty 04-18-2010 07:05 PM

Quote:

Originally Posted by AA_ (Post 2023284)
Incorrect results are automatically corrected later. do not worry, that's all well thought out and secured.

I dont think you understood me.

I meant I hope the dedication behind it continues. In other words, you good folks keep kindly updating it as often as you do! :)

AA_ 04-19-2010 05:35 AM

We started in 2004. We have not found any reliable free services for an automation.
so we have our own service programmed and started.
the alpha / beta phase has started in november 2008. the first public version there since January 2009. without problems, and reliable.
will continue to do so, because this is not a one-man-show.

I understand you correctly? :)

share4vn.com 04-19-2010 10:41 AM

Thanks for great mod :)

I have a idea, can u combine the cumulative points for the ucash points system?

im sorry if it annoys u. thanks :)

AliMadkour 04-20-2010 09:49 AM

excellent mod !

can I add Egyptian league! :D:D:D

IR15H 04-20-2010 03:25 PM

I think there's a problem if you add the same league for different seasons.

To reproduce;
  1. ADMIN CP > Fussball-Tippspiele > Navgroups/Categories > Title: Test
  2. ADMIN CP > Fussball-Tippspiele > League Manager> Add League > Select "1. Bundesliga 2009/2010" > Import
  3. ADMIN CP > Fussball-Tippspiele > League Manager> Add League > Select "1. Bundesliga 2008/2009" > Import
  4. ADMIN CP > Fussball-Tippspiele > League Manager> Edit (either league) > Change Navgroup/Category to Test > Save

Both leagues will be in the Test category, despite only moving one. This appears to happen with all the 2009/10 leagues that have 2008/09 seasons.

Apart from that, looks good so far on my test site! :)

AA_ 04-20-2010 05:13 PM

Quote:

Originally Posted by IR15H (Post 2024381)
I think there's a problem if you add the same league for different seasons.

To reproduce;
  1. ADMIN CP > Fussball-Tippspiele > Navgroups/Categories > Title: Test
  2. ADMIN CP > Fussball-Tippspiele > League Manager> Add League > Select "1. Bundesliga 2009/2010" > Import
  3. ADMIN CP > Fussball-Tippspiele > League Manager> Add League > Select "1. Bundesliga 2008/2009" > Import
  4. ADMIN CP > Fussball-Tippspiele > League Manager> Edit (either league) > Change Navgroup/Category to Test > Save

Both leagues will be in the Test category, despite only moving one. This appears to happen with all the 2009/10 leagues that have 2008/09 seasons.

Apart from that, looks good so far on my test site! :)

yes this is an intelligent system - no error.
the same happens even with the change of display order.

IR15H 04-20-2010 05:46 PM

Quote:

Originally Posted by AA_ (Post 2024428)
yes this is an intelligent system - no error.
the same happens even with the change of display order.

Hmm okay then, is there a way I can separate them so I can display it by seasons to the end user (on forum/vbsoccer.php) rather than by leagues?

I want to have a layout something like;
  • Current Season (2009/10)
    • League 1
    • League 2
    • League 3
  • Last Season (2008/09)
    • League 1
    • League 2
    • League 3
  • Older Seasons (<2008)
    • League 1
    • League 2
    • League 3
  • etc.

If I try to move a 2008/09 league to my new 08/09 category then it moves the 09/10 league to it as well which I'm trying to avoid.

AA_ 04-20-2010 06:07 PM

Quote:

Originally Posted by IR15H (Post 2024446)
Hmm okay then, is there a way I can separate them so I can display it by seasons to the end user (on forum/vbsoccer.php) rather than by leagues?

I want to have a layout something like;
  • Current Season (2009/10)
    • League 1
    • League 2
    • League 3
  • Last Season (2008/09)
    • League 1
    • League 2
    • League 3
  • Older Seasons (<2008)
    • League 1
    • League 2
    • League 3
  • etc.

If I try to move a 2008/09 league to my new 08/09 category then it moves the 09/10 league to it as well which I'm trying to avoid.

find in 'admincp/vbsoccer_admin.php' (line ~1039):

PHP Code:

    $db->query_write("
        UPDATE `" 
TABLE_PREFIX "soccer_league`
        SET `visible`=" 
$vbulletin->GPC['visible'] . ",
            `description`='" 
$db->escape_string(trim($vbulletin->GPC['description'])) . "',
            `showteamicons`=" 
$vbulletin->GPC['showteamicons'] . $unset_logo_sql ",
            `readonly`=" 
$vbulletin->GPC['readonly'] . "
        WHERE `id`=" 
$vbulletin->GPC['leagueid'] . "
        "
);

    
// navigationsgruppe aller wettbewerbe gleichen types updaten
    
$db->query_write("
        UPDATE `" 
TABLE_PREFIX "soccer_league`
        SET `groupid`=" 
$vbulletin->GPC['groupid'] . "
        WHERE `sd_shortname`='" 
$db->escape_string($leagueinfo['sd_shortname']) . "'
        "
); 

... and replace with:

PHP Code:

    $db->query_write("
        UPDATE `" 
TABLE_PREFIX "soccer_league`
        SET `visible`=" 
$vbulletin->GPC['visible'] . ",
            `description`='" 
$db->escape_string(trim($vbulletin->GPC['description'])) . "',
            `showteamicons`=" 
$vbulletin->GPC['showteamicons'] . $unset_logo_sql ",
            `readonly`=" 
$vbulletin->GPC['readonly'] . ",
            `groupid`=" 
$vbulletin->GPC['groupid'] . "
        WHERE `id`=" 
$vbulletin->GPC['leagueid'] . "
        "
); 

in the next update this is optional as a feature (no automatic assignment).

IR15H 04-20-2010 07:23 PM

Quote:

Originally Posted by AA_ (Post 2024456)
find in 'admincp/vbsoccer_admin.php' (line ~1039):

PHP Code:

    $db->query_write("
        UPDATE `" 
TABLE_PREFIX "soccer_league`
        SET `visible`=" 
$vbulletin->GPC['visible'] . ",
            `description`='" 
$db->escape_string(trim($vbulletin->GPC['description'])) . "',
            `showteamicons`=" 
$vbulletin->GPC['showteamicons'] . $unset_logo_sql ",
            `readonly`=" 
$vbulletin->GPC['readonly'] . "
        WHERE `id`=" 
$vbulletin->GPC['leagueid'] . "
        "
);

    
// navigationsgruppe aller wettbewerbe gleichen types updaten
    
$db->query_write("
        UPDATE `" 
TABLE_PREFIX "soccer_league`
        SET `groupid`=" 
$vbulletin->GPC['groupid'] . "
        WHERE `sd_shortname`='" 
$db->escape_string($leagueinfo['sd_shortname']) . "'
        "
); 

... and replace with:

PHP Code:

    $db->query_write("
        UPDATE `" 
TABLE_PREFIX "soccer_league`
        SET `visible`=" 
$vbulletin->GPC['visible'] . ",
            `description`='" 
$db->escape_string(trim($vbulletin->GPC['description'])) . "',
            `showteamicons`=" 
$vbulletin->GPC['showteamicons'] . $unset_logo_sql ",
            `readonly`=" 
$vbulletin->GPC['readonly'] . ",
            `groupid`=" 
$vbulletin->GPC['groupid'] . "
        WHERE `id`=" 
$vbulletin->GPC['leagueid'] . "
        "
); 

in the next update this is optional as a feature (no automatic assignment).

Excellent, thanks :).

Antonio Pereira 04-21-2010 06:13 AM

In Usergroup Maganer have 2 Options.

Is allowed to submit bets?
Is allowed to submit match results?


What this means?

The first one i understand but the other i dont understand....

Someone can explain to me?

Best Regards

AA_ 04-21-2010 07:05 AM

1 Attachment(s)
Quote:

Originally Posted by Antonio Pereira (Post 2024726)
In Usergroup Maganer have 2 Options.

Is allowed to submit bets?
Is allowed to submit match results?


What this means?

The first one i understand but the other i dont understand....


Someone can explain to me?

Best Regards

the data-service updates its data every 5 minutes. the live scores (betting game) are updated every 10 minutes.
users can also report results directly to data service. these results are then validated in the data service (errors are ignored or corrected) ... and then passed on to other betting games.
the feature also offers an extra ranking list for the fastest reporter. this should be a little motivation to help us keep the data current.

Attachment 116120

when a user logs often incorrect results, is not a problem but you should kill him ;)

and the most important: this is a fall-back feature, if the data service is unavailable or busy (knock on wood, throw salt over your shoulder, rub your lucky rabbits foot, cross your fingers :D).

MaxInfinity 04-21-2010 01:00 PM

first off great job on a great mod I thank you for your hard work.

Ive installed on my test forum everything seems to be ok
running vb 4.0.3. with vbadvanced.

A picture is worth a thousand words so heres my problem.

https://vborg.vbsupport.ru/

as you can see the link backgrounds are not the same size.

thanx in advanced

AA_ 04-21-2010 01:20 PM

Quote:

Originally Posted by MaxInfinity (Post 2024892)
first off great job on a great mod I thank you for your hard work.

Ive installed on my test forum everything seems to be ok
running vb 4.0.3. with vbadvanced.

A picture is worth a thousand words so heres my problem.

https://vborg.vbsupport.ru/

as you can see the link backgrounds are not the same size.

thanx in advanced

my addon causes this? are you sure?

AA_ 04-21-2010 01:24 PM

1 Attachment(s)
original vbulletin style without changes:

Attachment 116127

MaxInfinity 04-21-2010 05:09 PM

I only have vbadvanced installed i'll try disabling it and see what happens. all vbulletin settings are at default. so if disabling vbadvanced has no effect it could be a prob with IE 8.

edit
ok disabled vbadvanced and its still the same, all other navbars work fine its just the one on the vbsoccer page.

zane99 04-21-2010 06:24 PM

all i get when trying to import product is:

The following dependencies were not met:

1. This product is not compatible with version 4.0.1 of vBulletin. (Compatible starting with 3.7.0 / Incompatible with 4.0.0 Alpha 1 and greater)

MaxInfinity 04-21-2010 06:33 PM

Ok the problem i have seems to be with IE 8 as I just installed firefox and its fine viewed with it.
marked installed, this is a great addition to VB thanx again and keep up the good work.

AA_ 04-21-2010 06:53 PM

Quote:

Originally Posted by zane99 (Post 2025039)
all i get when trying to import product is:

The following dependencies were not met:

1. This product is not compatible with version 4.0.1 of vBulletin. (Compatible starting with 3.7.0 / Incompatible with 4.0.0 Alpha 1 and greater)

that's the message from vbsoccer for vbulletin 3.x. wrong topic? wrong download? too much beer?

note: vbulletin4 < 4.0.2 is not supported.

xTREKKERx 04-22-2010 12:09 AM

hi, great mod.
definatly the best........
is it possible to change the links associated with each club to an internal link?
what i meen is, if you click on man united, instead of it going to their club, can the link be changed so it directs to a man united section on my site?

Antonio Pereira 04-22-2010 07:01 AM

Quote:

Originally Posted by xTREKKERx (Post 2025169)
hi, great mod.
definatly the best........
is it possible to change the links associated with each club to an internal link?
what i meen is, if you click on man united, instead of it going to their club, can the link be changed so it directs to a man united section on my site?

This Suggestion is good, but i have another one.
Before one week at the game the system create a thread like this:

Title: "FC Chelsea vs Manchester United 12-05-2010"
Content Post:
FC Chelsea vs Manchester United 12-05-2010 at 12:30 you can make your bets here(link)

After this wen the game close the system make one post in the same thread indicating the result.

Best Regards

AA_ 04-22-2010 08:00 AM

Quote:

Originally Posted by xTREKKERx (Post 2025169)
hi, great mod.
definatly the best........
is it possible to change the links associated with each club to an internal link?
what i meen is, if you click on man united, instead of it going to their club, can the link be changed so it directs to a man united section on my site?

:up:
I will add this in the team-editor.
"override the team-homepage-url with url: <inputfield>"

Quote:

Originally Posted by Antonio Pereira (Post 2025276)
This Suggestion is good, but i have another one.
Before one week at the game the system create a thread like this:

Title: "FC Chelsea vs Manchester United 12-05-2010"
Content Post:
FC Chelsea vs Manchester United 12-05-2010 at 12:30 you can make your bets here(link)

After this wen the game close the system make one post in the same thread indicating the result.

Best Regards

:up:
I will add this in the liga-editor.
"Create a Thread <inputfield> days before kick-off time in the forum <forumselector>" and "Create a post after final whistle in this Thread"
The templates for titles and content can be changed.

you have good ideas :)

xTREKKERx 04-22-2010 12:48 PM

Quote:

Originally Posted by AA_ (Post 2025287)
:up:
I will add this in the team-editor.
"override the team-homepage-url with url: <inputfield>"



:up:
I will add this in the liga-editor.
"Create a Thread <inputfield> days before kick-off time in the forum <forumselector>" and "Create a post after final whistle in this Thread"
The templates for titles and content can be changed.

you have good ideas :)

wow, now we are cooking with gas.........

if these ideas can be impemented, well, this mod just goes from strength to strength.

MOD OF THE MONTH!! NO!, BUT MOD OF THE YEAR?? OH YES.....:D

MarceloS 04-22-2010 01:17 PM

Can I ask you this again? Didn't get a response last time.
  • Can I run leagues restricted to usergroup?
  • Can I run two competitions for one league? I mean for world cup could I make two scoreboards, for two different usergroups of the forum?

The idea here is to have like a newbies league, and advanced league. Like two divisions of players for example.

Again, thanks for the mod, it is awesome!

AA_ 04-22-2010 01:27 PM

Quote:

Originally Posted by MarceloS (Post 2025378)
Can I ask you this again? Didn't get a response last time.
  • Can I run leagues restricted to usergroup?
  • Can I run two competitions for one league? I mean for world cup could I make two scoreboards, for two different usergroups of the forum?

The idea here is to have like a newbies league, and advanced league. Like two divisions of players for example.

Again, thanks for the mod, it is awesome!

Currently no and no.
the group permissions per league perhaps later.
different scoreboards for each league: no.

zane99 04-22-2010 04:22 PM

sorry it says: vB Version: 4.0.2

at the top so i assumed it would work on 4.02...............

AA_ 04-22-2010 05:12 PM

Quote:

Originally Posted by zane99 (Post 2025039)
all i get when trying to import product is:

The following dependencies were not met:

1. This product is not compatible with version 4.0.1 of vBulletin. (Compatible starting with 3.7.0 / Incompatible with 4.0.0 Alpha 1 and greater)

Quote:

Originally Posted by zane99 (Post 2025459)
sorry it says: vB Version: 4.0.2

at the top so i assumed it would work on 4.02...............

what problem you have exactly?

xTREKKERx 04-23-2010 08:47 PM

Quote:

Originally Posted by AA_

I will add this in the team-editor.
"override the team-homepage-url with url: <inputfield>"
dont meen to be pushy but any idea when this could be done.

thanks.

AA_ 04-23-2010 08:58 PM

next Tuesday or Wednesday
I am already working on version 1.4.13.

xTREKKERx 04-23-2010 09:10 PM

Quote:

Originally Posted by AA_ (Post 2026184)
next Tuesday or Wednesday
I am already working on version 1.4.13.

thank you very much for what you are doing..

imported_hbs 04-23-2010 10:04 PM

Is it possible to add the Israeli league ?

ProFifaLeagues 04-23-2010 10:43 PM

How do i link this please
((((((then create a new forum with a link to the file 'vbsoccer.php' (necessary!)))))))

MaxInfinity 04-24-2010 10:47 AM

Yeah its definately IE8 the whole board has many problems visualy under IE i have disabled it and downloaded firefox eveything is perfect now.

when i posted the pic of my problem its huge how do i make it a thumbnail.

One thing I would like to see on this mod is a more advanced betting system hopefully linked with vbcredits2 when its released with configurable odds and bet any amount of credits you have, but still a fantastic mod.

AA_ 04-24-2010 11:20 AM

regardless of the browser: this is not a problem of this add-on.

ProFifaLeagues 04-25-2010 05:35 AM

then create a new forum with a link to the file 'vbsoccer.php' (necessary!)

So to make this link would it be just vbsoccer.php or my website address /vbsoccer.php???

blue6995 04-25-2010 05:53 AM

Quote:

Originally Posted by rammieone (Post 2026878)
then create a new forum with a link to the file 'vbsoccer.php' (necessary!)

So to make this link would it be just vbsoccer.php or my website address /vbsoccer.php???

Yes, create a new forum (for instance, Soccer Game).

In the Forum Link enter the link to the vbsoccer.php. Enter the web address (eg. http://www.rwfforum.co.uk/vBulletin/vbsoccer.php)

ProFifaLeagues 04-25-2010 06:02 AM

Thanks working superb,Top mod

kotlt 04-25-2010 11:05 AM

err, for knock-out cup like Champion League, does I tip for 90' match or for the whole match (extra time, pen,...)

For example: Barca-Inter, if Barca wins 3-1 then the match will proceed to extra time. Which results should I tip for?

xTREKKERx 04-25-2010 12:12 PM

hello, having another little problem?
every now and then, we get this error?
Quote:

Fatal error: Cannot redeclare construct_matchbit() (previously declared in
/includes/functions_vbsoccer.php:39) in
includes/functions_vbsoccer.php on line 152
any ideas on how to fix this.

Thanks.

xabo 04-25-2010 02:29 PM

Hello! Thanks for a super addon.

Any chance to add the Norwegian "Adecco Ligaen" and Danish "SAS ligaen" ? :)

Thanks in advance.

\\ x


All times are GMT. The time now is 05:59 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.02657 seconds
  • Memory Usage 1,886KB
  • 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
  • (4)bbcode_php_printable
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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