Version: 1.4.25, by AA_
Developer Last Online: Aug 2013
Category: Integration with vBulletin -
Version: 4.0.3
Rating:
Released: 03-10-2010
Last Update: 08-29-2012
Installs: 446
DB Changes Uses Plugins
Additional Files Is in Beta Stage
No support by the author.
More than 20 soccer leagues and competitions in a single Bet!
FEATURES
No results input by administrators or moderators! Results and fixtures come from our own data service
Configurable scoring
Season archives with all schedules, tips and points
League tables, crosstabs, group tables
Configurable Match Preview (Next x Days)
Rankings
Hall of Fame of the best 3 tipsters from all competitions and seasons
Result entry by user Users can also report results for current games themselves. These results will be reported to the data service, which these other forums is directly available. Distributed reporting game results!
E-mail reminder
Users can even select it to see what competitions
Users can determine the color of the points themselves
Modification or translation of any team name and the name of competition
Configurable menu grouping for Competitions
Details of fixtures
Interface to report false results or fixtures in our data service
Show the tips of other users
Optional integration of club logos and association logos
Available in multiple languages and character encodings
activation of the navbar alert for players without individual vbsoccer settings:
Code:
UPDATE tableprefixusertextfield
SET vbsoccernotify=1
WHERE vbsoccerprefs IS NULL AND EXISTS
(SELECT * FROM tableprefixsoccer_user_bet
WHERE userid=tableprefixusertextfield.userid
LIMIT 1);
EMail-Notification for all unbetted matches for players without individual vbsoccer settings:
Code:
INSERT IGNORE INTO tableprefixsoccer_league_subscribe
(userid, abo_type)
SELECT userid, 2 FROM tableprefixusertextfield
WHERE `vbsoccerprefs` IS NULL AND EXISTS
(SELECT * FROM tableprefixsoccer_user_bet
WHERE userid=tableprefixusertextfield.userid
LIMIT 1);
OR (not recommended!!) EMail-Notification for all matches for players without individual vbsoccer settings:
Code:
INSERT IGNORE INTO tableprefixsoccer_league_subscribe
(userid, abo_type)
SELECT userid, 1 FROM tableprefixusertextfield
WHERE `vbsoccerprefs` IS NULL AND EXISTS
(SELECT * FROM tableprefixsoccer_user_bet
WHERE userid=tableprefixusertextfield.userid
LIMIT 1);
I am looking for reliable employees for translations German / English.
Advantages: access to alpha and beta versions.
The German version 1.4.20 with new features is already published.
activation of the navbar alert for players without individual vbsoccer settings:
Code:
UPDATE tableprefixusertextfield
SET vbsoccernotify=1
WHERE vbsoccerprefs IS NULL AND EXISTS
(SELECT * FROM tableprefixsoccer_user_bet
WHERE userid=tableprefixusertextfield.userid
LIMIT 1);
so we need to run this query into out php admin? anyway i've activated this option but i never see the notification running ...