The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Yet Another Awards System Details »» | |||||||||||||||||||||||||||||||||||
vBulletin 4 version can be found here: https://vborg.vbsupport.ru/showthrea...highlight=YAAS
DESCRIPTION: This is a Medals/Awards system. Admin/Mods can give members awards, and award icons will be displayed in member's profile, posts, as well as in a award list. FEATURES: In AdminCP - 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) + Issue awards to members, based on username or userid, with Issue Reason + Recommend awards for members based on username, with Recommend Reason + Remove awards from members + Issue Point Values to awards (Recommended that you are running mySQL 5.0 or higher, will not work correctly with lower versions of mySQL) + Award automation In ModCP + Issue awards to members, based on username or userid, with Issue Reason + Remove awards from members Front page - Display awards list in with: Award Name, Description, Icon, Image, and Members who get each award. - Display awards showcase in profile within a TAB, with Award information, Issue time and reason - Display award icons in postbit or under sig. CHANGES/MODIFICATION: 3.8.4: * Fixed - Issuing Awards to users with ' in usernames. * Fixed - "Award System Settings" SettingGroup name. * Fixed - Phrases for Award Request/Recommendation Settings. * Fixed - All templates should be properly cached. * Fixed - Inactive awards no longer display in postbit. * Improved - Version Information in AdminCP. * Improved - Award Name is added to Post/PM Title Recommendations/Requests. * Improved - Postbit Display Location descriptions. * Improved - Cleaner awards layout display. * Improved - Award Submissions Post/PM layout. 3.8.3 Patch 1: * Fixed - SQL Group By Syntax when Points are enabled DIFFICULTY LEVEL: Easy Time: about 5 minutes Installer is included (1 product XML) Upload files and import xml. When upgrading: re-upload ALL files and re-import XML This MOD is 100% Supported. Authors of YaAS 3.8: Xanlamin CypherSTL Current Release: v3.8.4 Newest Release Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
4 благодарности(ей) от: | ||
Erica1977, Panzer Max, Razta, xorex |
Comments |
#562
|
|||
|
|||
There's some error when sending your award request. Please contact site's administrator for assistant.
This is the error that I get when I recommend the award. All the settings for the (recommend Awards) is set to Yes, the one in the Award System Settings & Admin user group ! Best regards |
#563
|
|||
|
|||
Has anyone got a fix for this:
I kept getting this Fatal Error message: Quote:
But I really want to use both of these mods, has anyone got a fix please? |
#564
|
|||
|
|||
Quote:
https://vborg.vbsupport.ru/showpost....&postcount=539 |
#565
|
|||
|
|||
Thanks there... Not sure what he meant but i deleted what was on the line that was apparently causing the fatal error and it just ended up causing a fatal error on the whole of the forum lol.
Can you please explain to me what I need to do, thanks |
#566
|
|||
|
|||
Hi, i have one problem with show awards in postbit.
Firefox is ok, but chrome and opera no See the image for example Any idea for resolve this? Thanks 1) Firefox 2) Chrome 3) Opera |
#567
|
||||
|
||||
Quote:
Quote:
Any help would be greatly appreciated!! thank you in advance!! (vb ver 3.8.6.pl1) |
#568
|
||||
|
||||
See the award showcase? It's right next to the username
How do I make it go there? and not under the reputation as usual? |
#569
|
|||
|
|||
I second this request...
|
#570
|
|||
|
|||
Am I missing the instructions? Do not see them in the zip file??
|
#571
|
|||
|
|||
Thank you for this, my members love it. Is there a way to make the awards show randomly in the postbit and on the profiles?
Basically I want to add the setting here, that way the awards are shown randomly- I know if people have the same awards and never get more, that icon will set there forever and it would be nice if it rotated their awards... I know I need to edit a plugin (awards_userawards_bit) and that I need to change one of these sql queries to pull randomly. Could someone help me out? Code:
// [START HACK='Yet Another Award System' AUTHOR='HacNho'] if ((THIS_SCRIPT == 'showpost') OR (THIS_SCRIPT == 'private') OR (THIS_SCRIPT == 'showthread') OR (THIS_SCRIPT == 'announcement') OR (THIS_SCRIPT == 'newreply')) { global $db, $vbulletin; { if (THIS_SCRIPT == 'private') { $this->post['userid'] =& $post['fromuserid']; } if (($vbulletin->options['aw_postbit']) AND ($this->post['userid'])) { $post['userawards'] = ''; // Obtain list of awards for current user $alluserawards = $db->query_read(" SELECT a.*, au.* FROM " . TABLE_PREFIX . "award a, " . TABLE_PREFIX . "award_user au WHERE (au.userid = ".$this->post['userid'].") AND (a.award_id=au.award_id) AND (a.award_active=1) ORDER BY ".$vbulletin->options[aw_awardorder]." "); $post['showuserawards'] = false; if ($post['num_awards'] = $db->num_rows($alluserawards)) { $aw_i = 0; while ($award = $db->fetch_array($alluserawards)) { $aw_i++; if ($aw_i <= $vbulletin->options['aw_display_limit']) { eval('$post[userawards] .= "' . fetch_template('awards_bit') . '";'); } } if (($vbulletin->options['aw_points']) AND ($this->post['userid'])) { $userpoints = $db->query_read(" SELECT a.*, au.*, SUM(award_pointvalue) AS TotalPoints FROM " . TABLE_PREFIX . "award a, " . TABLE_PREFIX . "award_user au WHERE (au.userid = ".$this->post['userid'].") AND (a.award_id=au.award_id) AND (a.award_active=1) GROUP BY au.userid "); while ($array = $db->fetch_array($userpoints)) { $post['total_points'] = $array['TotalPoints']; } } $post['showuserawards'] = true; $db->free_result($alluserawards); } } } } // [END HACK='Yet Another Award System' AUTHOR='HacNho'] |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|