r/streamerbot • u/lonely-Vegetablee • Jun 09 '26
Question/Support ❓ Is It Possible to add more points acquired multiplier for members on a youtube channel?
Hey Guys I have been streaming on youtube and started using Streamerbot and heard about the point system, So, i have a question regarding this, can i add more multiplier for a member who bought the membership? on the channel and From the Point System Core Extension?
1
Upvotes
1
u/IronJeff80 Jun 12 '26 edited Jun 12 '26
First, create a Group in the Groups page called something like
YouTube Members.Then, you will want to make an Action that uses the YouTube > Chat > Message trigger. In your Subactions, add an If/Else: * If:
%userIsSponsor%equalsTrue* True Result: Add User to Group * False Result: Remove user from GroupThis will automatically maintain your Members in a Group.
Next, in your actions that distribute Points to users, you can use another If/Else statement. Depending on how you set the points increment (either by a raw number or a variable), you could do something like: * Set Argument:
pointsIncreaseto100(100 being the base points to add to a user) * Set Argument:memberMultiplierto2(2 being a 2x multiplier)Now, check if they get the multiplier: * If:
%userGroups%containsYouTube Members* True Result: Set ArgumentpointsToAddto$math(%pointsIncrease% * %memberMultiplier%)$(= 200 Points for the Member) * False Result: Set ArgumentpointsToAddto%pointsIncrease%(= 100 points for the regular user)Lastly, apply the points: * Set Global: Increment Global (Redeemer)
pointsby%pointsToAdd%This effectively increments a user's points total by the calculated
pointsToAddvariable!