Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4229
Latest: Ghost
New This Month: 0
New This Week: 0
New Today: 0
Stats
Total Posts: 43080
Total Topics: 7493
Most Online Today: 108
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 105
Total: 105

Author Topic: KARMA Badge  (Read 7870 times)

0 Members and 1 Guest are viewing this topic.

Offline FrizzleFried

  • Full Member
  • ***
  • Posts: 120
    • View Profile
KARMA Badge
« on: August 09, 2012, 01:49:07 pm »
My users are getting the karma badge automatically when they first sign in.  I am guessing this is because I use the advanced reputation mod that starts everyone with 100 karma points.  I'd like to set that limit from 0 to 101 so they get the badge when someone gives them karma rather than up front...

I found this line:

Code: [Select]
if ($memberContext[$memberID]['karma']['good'] != 0 && !in_array($badgeAction,$currentBadges))
Would I be correct in assuming I could change that 0 to 101 to accomplish what I am looking to do?

Thanks!

Offline FrizzleFried

  • Full Member
  • ***
  • Posts: 120
    • View Profile
Re: KARMA Badge
« Reply #1 on: August 10, 2012, 03:04:41 pm »
Oh... and to be clear... the advanced rep mod does use the "stock" karma string... but like I said,  I have it starting folks with 100 karma to begin with.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16356
    • View Profile
Re: KARMA Badge
« Reply #2 on: August 10, 2012, 03:23:40 pm »
I would change != 0 to > 100
I think that would work.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline FrizzleFried

  • Full Member
  • ***
  • Posts: 120
    • View Profile
Re: KARMA Badge
« Reply #3 on: August 10, 2012, 04:29:05 pm »
Yeah... that works... sort of.  Unfortunately the Advanced Rep System also gives karma for posting... so as soon as I posted while testing my karma went to 102 from 100 and... welp,  I got the karma badge.

Bummer... maybe I will just change it to 200 and in the description change it to "Recipient of this badge has earned 200 Karma Points or more" or something generic...

Offline nonono12

  • Member
  • *
  • Posts: 15
    • View Profile
Re: KARMA Badge
« Reply #4 on: October 13, 2018, 08:33:30 pm »
how to set badge for a certain amount of
giving good karma
giving bad karma
and number of topics started ?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16356
    • View Profile
Re: KARMA Badge
« Reply #5 on: October 14, 2018, 11:19:42 am »
You would have to create  a new badge in the badge awards admin area.

Then check sources/badgeawards2.php  and you will need to copy and change code such as
Code: [Select]
$badgeAction = 'topic';
if ($memberContext[$memberID]['posts'] != 0 && !in_array($badgeAction,$currentBadges))
{
$result = $smcFunc['db_query']('', "
SELECT COUNT(*) AS total FROM {db_prefix}topics 
WHERE ID_MEMBER_STARTED = $memberID
"); 
$totalRow = $smcFunc['db_fetch_assoc']($result);

if ($totalRow['total'] > 0)
{
$badgeID = GetBadgeIDByAction($badgeAction);
$ret = AddBadgeToMember($memberID,$badgeID,false);
if ($ret == true)
{
$currentBadges[] = $badgeAction;
$newBadges[]  = $badgeAction;
}
}

}

And
Code: [Select]

$badgeAction = 'karma';
if ($memberContext[$memberID]['karma']['good'] != 0 && !in_array($badgeAction,$currentBadges))
{
$badgeID = GetBadgeIDByAction($badgeAction);
$ret = AddBadgeToMember($memberID,$badgeID,false);
if ($ret == true)
{
$currentBadges[] = $badgeAction;
$newBadges[]  = $badgeAction;
}

}
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline nonono12

  • Member
  • *
  • Posts: 15
    • View Profile
Re: KARMA Badge
« Reply #6 on: October 16, 2018, 04:20:01 pm »
You would have to create  a new badge in the badge awards admin area.

Then check sources/badgeawards2.php  and you will need to copy and change code such as
Code: [Select]
$badgeAction = 'topic';
 if ($memberContext[$memberID]['posts'] != 0 && !in_array($badgeAction,$currentBadges))
 {
 $result = $smcFunc['db_query']('', "
 SELECT COUNT(*) AS total FROM {db_prefix}topics 
 WHERE ID_MEMBER_STARTED = $memberID
 "); 
 $totalRow = $smcFunc['db_fetch_assoc']($result);
 
 if ($totalRow['total'] > 0)
 {
 $badgeID = GetBadgeIDByAction($badgeAction);
 $ret = AddBadgeToMember($memberID,$badgeID,false);
 if ($ret == true)
 {
 $currentBadges[] = $badgeAction;
 $newBadges[]  = $badgeAction;
 }
 }
 
 }

And
Code: [Select]

 $badgeAction = 'karma';
 if ($memberContext[$memberID]['karma']['good'] != 0 && !in_array($badgeAction,$currentBadges))
 {
 $badgeID = GetBadgeIDByAction($badgeAction);
 $ret = AddBadgeToMember($memberID,$badgeID,false);
 if ($ret == true)
 {
 $currentBadges[] = $badgeAction;
 $newBadges[]  = $badgeAction;
 }

 }

but how to say give badge to someone who gave 4 negative karma ?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16356
    • View Profile
Re: KARMA Badge
« Reply #7 on: October 16, 2018, 04:33:37 pm »
I think  I would just change
$memberContext[$memberID]['karma']['good']
To
$memberContext[$memberID]['karma']['bad']

For the check and see if equals 4
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline nonono12

  • Member
  • *
  • Posts: 15
    • View Profile
Re: KARMA Badge
« Reply #8 on: October 17, 2018, 08:02:23 am »
I think  I would just change
$memberContext[$memberID]['karma']['good']
To
$memberContext[$memberID]['karma']['bad']

For the check and see if equals 4

is this for receiving ?
i'm looking to query if they gave good and bad karma

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16356
    • View Profile
Re: KARMA Badge
« Reply #9 on: October 17, 2018, 11:17:16 pm »
I already have actions to give a badge on negative or postiive karma and that is found in sources/Karma.php
Code: [Select]
// Badge Awards
global $sourcedir, $user_info;
require_once($sourcedir . '/badgeawards2.php');
if ($dir == 1)
{
Badges_AwardBadge($user_info['id'],'karmagood');
}
else
{
Badges_AwardBadge($user_info['id'],'karmabad');
}

// End Badge Awards
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
3313 Views
Last post November 19, 2007, 11:51:41 am
by jasonwatkins
1 Replies
3912 Views
Last post April 05, 2009, 08:56:50 am
by SMFHacks
1 Replies
2547 Views
Last post June 07, 2012, 05:40:14 pm
by SMFHacks
1 Replies
3485 Views
Last post March 09, 2013, 06:17:38 pm
by RC Storick
5 Replies
5110 Views
Last post May 06, 2015, 08:14:55 pm
by Empire

+- Recent Topics

Version 6.1.6 issues by SMFHacks
September 30, 2023, 07:54:52 am

Follow / Follower Mod? by SMFHacks
September 23, 2023, 08:44:44 am

Looking for a good video player by replayuk
September 23, 2023, 12:17:39 am

[Mod]Discord Web Hooks by SMFHacks
September 22, 2023, 03:57:28 pm

SMF 2.1.4 Search by Anmer
September 22, 2023, 01:55:15 pm

Error in thise mode by Ghost
September 15, 2023, 08:42:24 am

Gallery Selection List Order by mickjav
September 07, 2023, 12:46:31 pm

[Mod]Tidy Child Boards 2.0 by Norwinjose
September 02, 2023, 11:42:54 am

PrettyUrls SEO Pro: Unable to submit sitemap to google search conmsole by SMFHacks
August 31, 2023, 10:55:22 am

PrettyURL - SEO4SMF Rewrites? by SMFHacks
August 28, 2023, 06:35:33 pm

Powered by EzPortal