The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Jujubins Lottery Details »» | ||||||||||||||||||||||||||||||||||||||
Coder(s): jujubins (Nando)
Compatibility: 3.6.x, 3.7.x, 3.8.x Product Info: Files to upload - 2 Files to import - 1 Templates - 8 Plugins - 2 Phrases - 33 Languages: English Portuguese Purpose: Drawn awards for your forum users or if you want, just to one usergroup. How it works: The users whom have permission to participate, those who have more than "x" posts, registered before "y" and members of "z" group, can take one ticket for day, until the day you set your scheduled tasks of your forum to close the lottery and drawn. As soon as drawn, there will be a congratulation message to the winner and disseminating him. Demo: http://forum.glords.com/lottery.php Installing:
Go to Admin CP > vBulletin Options > Jujubins Lottery and type in the fields:
Requirements: PHP 4.3.3 and MySQL 4.0.16 or later. History: v0.5.0 - Dec 29. 2008 First Release v0.7.0 - Dec 31. 2008 Added Phrases v0.7.1 - Jan 01. 2009Added option to reset when repeated the scheduled task Correction in the variables of phrases Correction in pharses Added language in Portuguese v0.8.0 - Jan 10. 2009 Added option to choose which usergroups can participate Compatible with version 3.8.0 v1.0.0 - Jan 11. 2009 Added auto-link in the quick links, pop-up of community and navbar Added option of types of drawn, "per day", "per drawn", "without limits"v1.1.0 - Jan 12. 2009 Fixed: SQL table prefix v1.2.0 - Jan 12. 2009 Added "see all" tickets link Added option to enable link to see all tickets v1.2.5 - Feb 1. 2009 Fixed: Show winners v1.2.6 - Feb 6. 2009 Fixed: Winner link (member.php) v1.2.6 - Feb 6. 2009 Fixed: Winner link (member.php) v2.0.0 - Out 27. 2009 Re-writted the mod's intire code Simplified code SQL with fewer fields 2 new settings: Round tickets and moderators Now you reset in lottery's page Fixed: All known bugs v2.1.0 - Out 29. 2009 Added: Automatic congratulations post in the thread (editable) (thanks paul41598) Fixed: Some insignificant bugs v2.1.1 - Out 30. 2009 Fixed: Posts limit (thanks pipibunny) v2.1.3 - Out 30. 2009 Fixed: Usergroups colors in "See all" (thanks kalisekj) Fixed: Links in menu (thanks kalisekj) Fixed: Reset link to moderators (thanks kalisekj) Fixed: Update version 2.0.0 to above will not reset your lottery (thanks kalisekj) Quick support in english/portuguese: http://forum.glords.com/showthread.php?t=8927 Quote:
Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
Comments |
#2
|
||||
|
||||
Demo has no permission for visitors.
Also, can you share in English? |
#3
|
||||
|
||||
The default language is English.
Added screenshot in English. |
#4
|
|||
|
|||
Você não tem permissão para participar.
yeah i got that ?? do i have to register to see ur demo ? |
#5
|
|||
|
|||
great but i have problem in SQL
PHP Code:
|
#6
|
|||
|
|||
Not Supported !!!
|
#7
|
|||
|
|||
15 minutes between your two posts? and you declare it unsupported?
|
#8
|
||||
|
||||
Oh man, that's funny. I doubt even a paid modification would manage 15 minute support.
Looks like he just forgot to use the tableprefix when initially installing (and also uninstalling) the database table. A simple edit should fix it. Note: It's probably best to uninstall before you make this change, then re-install the product again, otherwise the old db table probably won't be removed. Open the product and find: Code:
<codes> <code version="1.0.0"> <installcode><![CDATA[$db->reporterror = false; $db->query("CREATE TABLE `jlottery` ( `ticket` int(8) NOT NULL AUTO_INCREMENT, `userid` varchar(500) NOT NULL, `username` varchar(500) NOT NULL, `email` varchar(500) NOT NULL, `usertitle` varchar(500) NOT NULL, `time` int(10) NOT NULL, `day` int(2) NOT NULL, `winner` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`ticket`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1"); $db->reporterror = true;]]></installcode> <uninstallcode><![CDATA[$db->reporterror = false; $db->query("DROP TABLE `jlottery`"); $db->reporterror = true;]]></uninstallcode> </code> </codes> Code:
<codes> <code version="1.0.0"> <installcode><![CDATA[$db->reporterror = false; $db->query("CREATE TABLE " . TABLE_PREFIX . "jlottery ( ticket int(8) NOT NULL AUTO_INCREMENT, userid varchar(500) NOT NULL, username varchar(500) NOT NULL, email varchar(500) NOT NULL, usertitle varchar(500) NOT NULL, time int(10) NOT NULL, day int(2) NOT NULL, winner int(1) NOT NULL DEFAULT '0', PRIMARY KEY (ticket) ) ENGINE=MyISAM DEFAULT CHARSET=latin1"); $db->reporterror = true;]]></installcode> <uninstallcode><![CDATA[$db->reporterror = false; $db->query("DROP TABLE " . TABLE_PREFIX . "jlottery"); $db->reporterror = true;]]></uninstallcode> </code> </codes> |
#9
|
||||
|
||||
@cafenetland:
My demo is being used in a draw. If someone who has installed and doesn't use the Jujubins Lottery, please post a demo link for me to post here. @adhmwagde: Fixed. |
#10
|
||||
|
||||
Congrats jujubins!
Installed ! all the best beduino |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|