Hi, i was trying to award points for changing user profile pic for first time, useravatar.beforeupdate event is working only if we upload pictures but not for selecting avatar icons.
for that i have added user.beforeupdate event such that for user icon change this automation should execute...but for user.beforeupdate event automation is executing multiple times
#set($avatarUrl = "$core_v2_user.Accessing.AvatarUrl")
#set($avatarArray = $core_v2_utility.Split('/',$avatarUrl))
#set($avatar = $core_v2_utility.AsArray($avatarArray))
#set ($min = $avatar.Length - 1)
#set($userResponse = $core_v2_user.Get("%{ Id = $context_v2_automationTrigger.Arguments.UserId }"))
#set($ans='0')
#foreach ( $each in $userResponse.ProfileFields )
#if($each.Label=='testing')
#set($ans=$each.Value)
#end
#end
#if($avatar.Get($min) == "anonymous.gif" && $ans!= '1')
$core_v2_pointTransaction.Create("User updated profile", $context_v2_automationTrigger.Arguments.UserId, 10, $core_v2_user.Accessing.ContentId, $core_v2_user.ContentTypeId, "%{}")
#set($options = "%{}")
$options.Add('_ProfileFields_testing', '1')
$options.Add('Id', $context_v2_automationTrigger.Arguments.UserId)
$core_v2_user.Update($options)
#end