Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
European Cup 2008 Bet Game Details »»
European Cup 2008 Bet Game
Version: 1.7.7, by Fraxter Fraxter is offline
Developer Last Online: Oct 2015 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.7.x Rating:
Released: 06-05-2008 Last Update: 06-16-2008 Installs: 60
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

Works for vBulletin 3.6.x too!

Description:

This modification is a Addon for the European Cup 2008. You can bet and win with it, see screens.

Functions:
  • TV channel, Date / Time / Games you can change in the AdminCP
  • Roster you can edit in the AdminCP
  • View you can edit in the AdminCP
  • Information for unauthorized Users you can change in the AdminCP
  • Bets per page adjustable
  • Countrie Flags enable/disable
  • Bets of all members you can see ( THX @Tal )
  • Moderators can edit the results
Install:

--> Read the installation.txt in the zip archiv.

Update:

Import only the product xml again and set overwrite "yes".

The coder of the Hack is Tyran, i?m only the translator!

Note:
In this Hack are two TV channels, which called "ARD" and "ZDF". I can?t edit this for every country, you can do it in the database or in the xml file before installation.

Special Thanks to:

Mr.Zeropage (fixed security bugs), Janka, J?rn & entertain

And last but not least:

My english isn?t perfect, but i think the most phrases are correctly. Please post translation bugs or other forgotten things. We have time until sunday.

Please click install to support the coder of this great modification!

Update - 16.06.08 - Bug Fix (Table calculation)

Please overwrite your EM2008.php in the root folder with the new file in the zip archiv!

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 06-15-2008, 06:52 AM
weedheaven weedheaven is offline
 
Join Date: Jan 2007
Posts: 97
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is a very nice addon! My users like it, and i got no problems with timezone's (live in the netherlands) europe time
Reply With Quote
  #93  
Old 06-15-2008, 09:08 AM
Rat1972 Rat1972 is offline
 
Join Date: Jun 2005
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

same for me if that addon is made, i give also a donation
Reply With Quote
  #94  
Old 06-15-2008, 09:53 PM
GaiLoan GaiLoan is offline
 
Join Date: Dec 2007
Location: California,US
Posts: 133
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks for the great mod, "install"
Reply With Quote
  #95  
Old 06-16-2008, 03:31 AM
socalrico socalrico is offline
 
Join Date: Jul 2007
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[QUOTE=mcyates;1542462]Thank you, installed [QUOTE]

Love it! Greatmnod! Thanks!
Reply With Quote
  #96  
Old 06-16-2008, 01:12 PM
fulviods fulviods is offline
 
Join Date: Jan 2005
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

perfect!! thanks!
Reply With Quote
  #97  
Old 06-17-2008, 01:10 PM
M-Tuning's Avatar
M-Tuning M-Tuning is offline
 
Join Date: Jul 2005
Location: Winschoten (NL)
Posts: 275
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Which table was wrong?

As I have translated EM2008.php
Reply With Quote
  #98  
Old 06-17-2008, 03:31 PM
PiTXI PiTXI is offline
 
Join Date: Apr 2008
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by M-Tuning View Post
Which table was wrong?

As I have translated EM2008.php
me too
Reply With Quote
  #99  
Old 06-17-2008, 03:43 PM
Fraxter Fraxter is offline
 
Join Date: Jul 2007
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No sql table, the group table calculation (A-D) was wrong. Take a look into your tables and you will see that for example switzerland before czech is display (thats wrong).

If you have translated your em2008.php file, you can change it manuell with this:

Find:

PHP Code:
$sql "SELECT t.name, t.shortname, t.groupname, gs.match_played, gs.won, 
                    gs.drawn, gs.lost, gs.goal_plus, gs.goal_minus, gs.goal_diff, gs.points 
                    FROM " 
TABLE_PREFIX "rth_em08_teams AS t 
                    LEFT JOIN " 
TABLE_PREFIX "rth_em08_group_scores AS gs ON ( t.team_id = gs.team_id ) 
                    ORDER BY t.groupname, gs.points DESC, gs.goal_diff DESC, gs.goal_plus DESC"

Replace with:

PHP Code:
$sql "SELECT t.name, t.shortname, t.groupname, gs.match_played, gs.won, 
                    gs.drawn, gs.lost, gs.goal_plus, gs.goal_minus, gs.goal_diff, gs.points 
                    FROM " 
TABLE_PREFIX "rth_em08_teams AS t 
                    LEFT JOIN " 
TABLE_PREFIX "rth_em08_group_scores AS gs ON ( t.team_id = gs.team_id ) 
                    ORDER BY t.groupname, gs.points DESC, gs.goal_plus DESC, gs.goal_minus ASC"

That?s all. Only a little sql query bug.

best regards

Pander23
Reply With Quote
  #100  
Old 06-18-2008, 04:53 PM
M-Tuning's Avatar
M-Tuning M-Tuning is offline
 
Join Date: Jul 2005
Location: Winschoten (NL)
Posts: 275
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks
Reply With Quote
  #101  
Old 06-18-2008, 07:06 PM
Bobbrown Bobbrown is offline
 
Join Date: Mar 2008
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has been working on my site since day 1 but now I can not select the next stages (quarters,semis,final)
The drop down list has never hyperlinked to the desired places.
Any fixes please.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:06 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06949 seconds
  • Memory Usage 2,313KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete