Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

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

+- Forum Stats

Members
Total Members: 4253
Latest: Ineedsmfhelp
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43242
Total Topics: 7516
Most Online Today: 126
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 99
Total: 99

Author Topic: KARMA Badge  (Read 9040 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: 16428
    • 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: 16428
    • 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: 16428
    • 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: 16428
    • 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
3960 Views
Last post November 19, 2007, 11:51:41 am
by jasonwatkins
1 Replies
4592 Views
Last post April 05, 2009, 08:56:50 am
by SMFHacks
1 Replies
3646 Views
Last post June 07, 2012, 05:40:14 pm
by SMFHacks
1 Replies
4029 Views
Last post March 09, 2013, 06:17:38 pm
by RC Storick
5 Replies
5702 Views
Last post May 06, 2015, 08:14:55 pm
by Empire

+- Recent Topics

is it possible to add support for odysee.com by SMFHacks
March 13, 2024, 10:53:28 pm

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

User Gallery Feature: move / bulk move images by SMFHacks
January 30, 2024, 05:48:25 pm

In the future it may be for smf 2.1.x? by smithloo
January 30, 2024, 12:55:34 am

Powered by EzPortal