The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Yet Another Awards System [1.2.1] Details »» | |||||||||||||||||||||||||
Yet Another Award System 1.2.1 ? by HacNho Hack Version: 1.2.1.050818Copyright (C) 2005 by HacNho, All rights reserved. Compatible vB version: 3.0.8. It should work with all vB 3.0.x versions. Support: https://vborg.vbsupport.ru/showthread.php?t=78934 For vBulletin 3.5.0, please check the other version: https://vborg.vbsupport.ru/showthread.php?t=94836 DESCRIPTION: This is a Medals/Awards system. Admin can give members awards, and award icons will be displayed in member's profile, posts, as well as in a award list. FEATURES: In ACP - Can Create/Edit/Delete/Reorder categories/sub-categories in ACP (with category name and description) - Can Create/Edit/Delete awards in ACP (with Award Name, Description, Icon URL, Image URL) - Can Move one (or all) award(s) from one category to another - Can set some awards un-classified (not displayed for public) - Can re-order awards in awards showcase + Issue awards to members, based on username or userid, with Issue Reason + Remove awards from members - [1.2] Options to set number of awards displayed in postbit - [1.2] Options to turn on/off showing award icon, images, award requests in awards list, awards icons in memberlist Front page - Display awards list in with: Award Name, Description, Icon, Image, and Members who get each award. - Display awards showcase in profile, with Award information, Issue time and reason - Display award icons in postbit (showthread, showpost, announcement, private) [1.2] Display limit awards in postbit, with total awards, and a link to awards showcase in member profiles. [1.2] Award request, link to a form sending to email/PM/new thead or post (based on Dr Erwin Loh's Form hack) [1.2] Display award on Memberlist page (by trulylowcarb) CHANGES/MODIFICATION: - Tables to add: 3 (award, award_user, award_cat) - Files to add: 4 (/awards.php, /award_request.php, /admincp/award.php, /admincp/award_cat.php) - Files to edit: 8 (/admincp/index.php, member.php, showthread.php, showpost.php, announcement.php, private.php, memberlist.php, /include/functions_online.php) - Templates to add: 9 ('AWARDS', 'awards_awardbit','awards_awardusers_bit','awards_ bit','awards_userawards_bit','awards_category','aw ards_categorybit', 'awards_request_form', 'awards_request_formanswers') - Templates to edit: 5 (MEMBERINFO, postbit, postbit_legacy, memberlist, memberlist_resultsbit ) - Phrases to add: 49 DIFFICULTY: Easy-medium Time: about 5-10 minutes Installer is included HISTORY: For detail, please click here 2005.08.18: Version 1.2.1 2005.04.14: Version 1.2.02005.04.03: Version 1.1 2005.03.29: Version 1.0.1b 2005.03.28: Version 1.0.1 2005.03.28: Initial release FUTURE PLAN: - Allow comments on user's award (by Arial) - PM/Email user when he/she get an award. - Allow voting on user's award (by Arial) ADD ONs CREDIT: Idea has been carried on by many people, here are some: - Lesane for original Award hack for vB2, eventhough I've never use his hack - AnimeWebby for Awards/ Medals/ Cards Hack [vB3], which I write new code based on his. - Mac ycl6 for phpBB Medal System for phpBB forum - Dr Erwin Loh for FORM TO THREAD/ FORUM/ PM/ EMAIL hack - and all others for supports and ideas IMPORTANT: - BACKUP modified files and templates before making changes. - Backup database is recommended. - This hack is NOT compatible with AnimeWebby's Awards/Medals/CardsHack [vB3], you need to UNINSTALL his hack, before installing this one. INSTALLATION: Read HERE: https://vborg.vbsupport.ru/showthrea...316#post632316 UNINSTALL: Read HERE: https://vborg.vbsupport.ru/showthrea...316#post632316 MANUAL: Included in zip file SCREENSHOT: https://vborg.vbsupport.ru/showpost.php?p=632316 DEMO: http://www.global-army.com/forum/awards.php http://www.global-army.com/forum/sho...=9253#post9253 http://www.global-army.com/forum/member.php?u=22#award There's some custom modification on this site, but you have the idea. DONATIONS: YAAS is free, but a donation of any amount is much appreciated. SERVICE: Installation service is available upon request Show Your Support
|
Comments |
#32
|
|||
|
|||
It's not a function we would want but I can see how some would require it as a function. I presumed this to mean that members can request an award for another member not for themselves.
Say for instance you have a large group of individuals say over a 100 or so and many of them are in different sub groups etc, only they know whether somebody is deserving of a medal not one potentially aloof admin. , so the system allows the admin to see 'votes' if you like , that a certain member has had for an award from other members then he can authorise it or decline it. I guess that is the meaning, however I think its of secondary importance to issues like allowing members to comment on awards given etc. I will get this new version with posbit installed basically now and put up a link shortly. |
#33
|
||||
|
||||
thanks for the upgrade mtha .. installed with no problems
|
#34
|
||||
|
||||
Quote:
Quote:
Can I borrow your site as a demo? :> |
#35
|
||||
|
||||
2005.03.29 - Version .1.0.1b
+ Display awards in postbit for hybrid and threaded mode + Display award users for each awards in ACP/Award Manager - Upgrade instruction: /docs/UPGRADE2.txt - Replace /admincp/award.php with the one in zip file |
#36
|
||||
|
||||
Well, the only thing I could ask for which was included in my add-on to Animewebby's hack is teh ability to request awards
|
#37
|
|||
|
|||
Quote:
PHP Code:
|
#38
|
||||
|
||||
Quote:
[sql] CREATE TABLE award ( award_id smallint(5) unsigned NOT NULL auto_increment, award_cat_id smallint(5) NOT NULL default '1', award_name varchar(50) NOT NULL default '', award_desc varchar(250) NOT NULL default '', award_icon_url varchar(250) NOT NULL default '', award_img_url varchar(225) NOT NULL default '', award_displayorder smallint(5) NOT NULL default '0', PRIMARY KEY (award_id) ) TYPE=MyISAM; [/sql] there's a list of SQL queries in my "Notes.txt", could you try that manually, and see if you can do it. BTW, do you have the right to CREATE TABLE in the database? |
#39
|
|||
|
|||
I got a message 'effected rows: 0'
I used the vbulletin admin cp to run it. would I have gotten an error or message if it didnt take? |
#40
|
||||
|
||||
Quote:
Is there any different from the query you ran and the one in the installation file? Or if you are the only one who get this error, I just have you to create the tables manually. Execute the following queries: (if you run in AdminCP, you need to run each of them individually) [sql] DROP TABLE IF EXISTS `award`; [/sql] [sql] CREATE TABLE `award` ( `award_id` smallint(5) unsigned NOT NULL auto_increment, `award_cat_id` smallint(5) NOT NULL default '1', `award_name` varchar(50) NOT NULL default '', `award_desc` varchar(250) NOT NULL default '', `award_icon_url` varchar(250) NOT NULL default '', `award_img_url` varchar(225) NOT NULL default '', `award_displayorder` smallint(5) NOT NULL default '0', PRIMARY KEY (`award_id`) ) TYPE=MyISAM; [/sql] [sql]DROP TABLE IF EXISTS `award_user`;[/sql] [sql]CREATE TABLE `award_user` ( `issue_id` smallint(5) NOT NULL auto_increment, `award_id` smallint(5) NOT NULL default '0', `userid` int(10) NOT NULL default '0', `issue_reason` varchar(255) NOT NULL default '', `issue_time` int(10) NOT NULL default '0', PRIMARY KEY (`issue_id`) ) TYPE=MyISAM; [/sql] and then go to the next step: /admincp/awards_install.php?step=dofileedits You may also create the award_cat table, for future development: [sql] REMOVED [/sql] |
#41
|
|||
|
|||
Got it all working by doing it manually - I was going to ask if a single user can get the same award more then once...that would make this hack everything I needed - well you can - Thanks!
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|