Advertisement
Guest User

vote_up_down + points for up vote

a guest
May 29th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. { "rules_adiciona_pontos_comments" : {
  2.     "LABEL" : "Adiciona Pontos Comments",
  3.     "PLUGIN" : "reaction rule",
  4.     "OWNER" : "rules",
  5.     "REQUIRES" : [ "rules", "voting_rules", "userpoints_rules" ],
  6.     "ON" : { "voting_rules_insert_comment" : [] },
  7.     "IF" : [
  8.       { "user_has_role" : { "account" : [ "vote:user" ], "roles" : { "value" : { "2" : "2" } } } },
  9.       { "voting_rules_condition_check_vote_value" : { "vote" : [ "vote" ], "operator" : "\u003E", "value" : "0" } }
  10.     ],
  11.     "DO" : [
  12.       { "userpoints_action_grant_points" : {
  13.           "user" : [ "comment:author" ],
  14.           "points" : "5",
  15.           "tid" : "0",
  16.           "entity" : [ "" ],
  17.           "operation" : "Insert",
  18.           "display" : "1",
  19.           "moderate" : "approved"
  20.         }
  21.       }
  22.     ]
  23.   }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement