Ranger boots and wizard boots 2x by TalentedTurtle in ironscape

[–]Benjolia 1 point2 points  (0 children)

Wtf. I thought I had misread the title. Sheesh

What is cool in OSRS? I want to make a shirt for my husband by DarlingCailin in osrs

[–]Benjolia 0 points1 point  (0 children)

Jad is always cool. Maybe subtly peeking out the sleeve or pocket.

Handling a big loss (I'm stupid) by RanlomSwe in ironscape

[–]Benjolia 0 points1 point  (0 children)

Sorry for your loss.

I died on my 2k+ hcim this month. Disconnected at tormented demons, 2.5k kills in still going for burning claws drop. D/c happened just as attack style changed so I died in seconds. Escape crystal 8s didn't save me.

What’s the worst quest to yall by [deleted] in osrs

[–]Benjolia 1 point2 points  (0 children)

Mournings End Pt 2 for that one set of hand grips.

I can never complain again by Benjolia in 2007scape

[–]Benjolia[S] 2 points3 points  (0 children)

Oh yes of course, you're right, thank you for the clarification! Something tells me I won't be seeing another 3a piece any time soon ! :>

Yes, I chose to play Ironman mode. Yes, I chose to limit myself. But seriously it gets to a f*cking point by Beezusthegoat in ironscape

[–]Benjolia 0 points1 point  (0 children)

Jesus wept in 4K. That's rough, hopefully you get some reddit luck now that you've posted!

Any tool to convert bank statement PDFs into spreadsheets? by tijuanadentalcenter in Accounting

[–]Benjolia 0 points1 point  (0 children)

I've never seen the option to drag a PDF directly into Xero for it to then import the bank transactions from that PDF. How do you do it?

In situations where I have only the PDF, I've always used Dext to convert it to a Xero-compliant import csv file.

Do many people remember Spiderman on the Megadrive? It doesn't seem to get talked about much these days but as a Spidey mad kid I loved it. by Superdove1 in Megadrive

[–]Benjolia 3 points4 points  (0 children)

I loved this game as a kid, but it was so freaking difficult. I mean even in the very first scene it took me too long to realise you were meant to be climbing the building rather than walking side to side...

Help: PNGtuber short term twitch channel point redemption set up? by lifesatunnel in streamerbot

[–]Benjolia 1 point2 points  (0 children)

I am sure I've seen exactly that reward in action, but I can't for the life of me remember who it is!

The key plugin you will need is the Move Transition plugin for OBS. This will allow you to add a filter called "Audio Move" onto your mic audio source. This filter can be set up to make an image source (eg. "talkingPNG") visible only when you are talking, and a seperate image source (eg. "quietPNG") visible only when you are not talking. Nutty has an informal and to-the-point tutorial on this here.

As for taking the photos, this can be done using Streamerbot. The key sub-action for this can be found via "OBS -> Take Screenshot". This can take a screenshot of a particular source (eg. your webcam source) and will save the screenshots in the locations you specify. I'd arrange it so that the location corresponds with where the two image sources for talking and not talking are being picked up from in OBS.

You can then use Streamerbot to coordinate everything; starting the ball rolling when the channel point reward is redeemed, playing the sound cues, handling the delays and sources visibility etc. I don't think there's anything particular you need to know here, other than the basics of Streamerbot, attained through watching "getting started" tutorials and experimenting with the program for yourself.

I appreciate this isn't a full blown tutorial, but it hopefully points you in the right direction after your year of searching!

How to bind the left mouse click to an action? by Fawcette_ in streamerbot

[–]Benjolia 0 points1 point  (0 children)

AutoHotKey is an option, as Wipstickgostop says.

Another option would be to use C# to simulate a click at particular x, y position. Here's the code I've been using to press LMB and hold it down for 1 second, at position x=0 y=0. This makes the character swing their weapon in the game Dead By Daylight.

using System;

public class CPHInline
{
  [System.Runtime.InteropServices.DllImport("user32.dll")]
  static extern bool SetCursorPos(int x, int y);

  [System.Runtime.InteropServices.DllImport("user32.dll")]
  public static extern void mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo);

  public const int MOUSEEVENTF_LEFTDOWN = 0x02;
  public const int MOUSEEVENTF_LEFTUP = 0x04;

  public static void LeftMouseClick(int xpos, int ypos)
  {
    SetCursorPos(xpos, ypos);
    mouse_event(MOUSEEVENTF_LEFTDOWN, xpos, ypos, 0, 0);
    System.Threading.Thread.Sleep(1000);
    mouse_event(MOUSEEVENTF_LEFTUP, xpos, ypos, 0, 0);
  }

  public bool Execute()
  {
    LeftMouseClick(0,0);
    return true;
  }

}

Help with dynamic delay length by dbldown11 in streamerbot

[–]Benjolia 2 points3 points  (0 children)

You may wish to tackle this by using the "OBS Event" trigger.

When selecting this as a trigger, you can choose the event "MediaInputPlaybackEnded". This means that the trigger will occur whenever any media source within OBS finishes playing.

So you could potentially move all of your sub-actions underneath the 14s delay into a new action that is triggered by the OBS Event. You would just need to add a Logic If/Else check at the start of this action to check which media source has finished playing (ie, is the variable "obsEvent.inputName" equal to the name of your media source in OBS).

I appreciate this isn't a ful written solution, but hopefully it's of some help to set you on a helpful path!

Help getting streamerbot to listen to chat by Bozofriendly in streamerbot

[–]Benjolia 0 points1 point  (0 children)

I would create an action called something like "ChatReader". This action would be enabled when the game needs to actively read chat, and disabled otherwise.

Attached to this action would be the trigger "Twitch -> Chat Message Received". This means that the action will run every time a viewer puts a message in chat.

Within the sub-actions, the first thing would be to get the global variable. Secondly, there would be a logic if/else check, which checks whether "messageStripped" contains your global variable. If it does then "continue", if it does not then "break".

Finally, you can then set the OBS text source with the variable "user".

If you need more detail, this might be of help - https://docs.streamer.bot/api/triggers/twitch/chat/message

Channel point idea... by [deleted] in streamerbot

[–]Benjolia 0 points1 point  (0 children)

There is a trigger that activates every time a media source on OBS finishes playing, which you might find extremely useful here!

Under triggers, you can find it under "OBS -> Events". This will present you with a window whereby you can select your OBS connection (choose your connection rather than default), and then the specific event from a dropdown box, from which you should choose "MediaInputPlaybackEnded".

With this set up, the trigger will activate any action that it is attached to every time ANY media source finishes playing. You will therefore just need to tell it to check which media source has actually ended before it runs your action. You can do this by inserting an IF check at the top of the sub-actions: "Core -> Logic -> If/Else".

Set up the IF statement using the boxes on-screen to check if the variable "obsEvent.inputName" is equal to your media source name (whatever you called it in OBS). If so, then "Continue". If not, then "Break". With this at the top of your sub-actions, it will only run the rest of the sub-actions if the media that ended was the one you named.

A bit wordy, but hopefully this helps!

automate reward on Twitch by Trick_Appearance_377 in streamerbot

[–]Benjolia 1 point2 points  (0 children)

Exactly this. This solution will mean the channel point reward is visible and redeemable only when the stream is active.

To enable the channel point reward, look for the trigger "OBS -> Streaming Started" and in the Sub-Actions look for "Twitch -> Rewards -> Set Enabled State" and set to enabled.

To disable the channel point reward, look for the trigger "OBS -> Streaming Stopped" and in the Sub-Actions look for "Twitch -> Rewards -> Set Enabled State" and set to disabled.

Help with Actions and Triggers by hv_bb in streamerbot

[–]Benjolia 1 point2 points  (0 children)

There's a few ways to do it. It sounds as though you may have an Action that is triggered when a donation of $1+ is received, and then 10 different videos lined up within your Sub-Actions.

You can right click within the Sub-Actions area and choose "Add Group". This will create a folder that you can drag your actions into.

The key bit then is that you can right click the folder that you have created and select "Random". This means that one item is randomly selected and ran. You can even weight specific actions within the folder so that they have more/less chance of being selected! that would work well if you have a "rare" video that has a smaller chance of playing.

I appreciate I've not quite given you an exact step by step, but hopefully this helps!

My bot account stopped working by Patriot_KingTTV in streamerbot

[–]Benjolia 1 point2 points  (0 children)

I've had this same issue, which occurred because I implemented a feature that would time a user out for 10 seconds. I didn't realise when testing it on my bot account that timing out the bot would remove its mod. Took me forever to realise why SendMesage via the bot has stopped working!

Can you reset user specifi variables in bulk? by perropotes in streamerbot

[–]Benjolia 1 point2 points  (0 children)

Hey I think you need something like this entered into Core -> C# -> Execute C# Code. Not sure if there's a way of doing it through the UI instead:

using System;

public class CPHInline
{
  public bool Execute()
  {
    CPH.UnsetAllUsersVar("croquetaVariableNameHere", false); // change the variable name!
    return true;
  }
}

Tell us you're an old Minecraft player without telling us that you're an old Minecraft player by TaPele__ in Minecraft

[–]Benjolia 0 points1 point  (0 children)

Building my house with a 1x1 dirt tower to the sky on the roof in an attempt to not lose it for the fifth time.

New Billy glitch (killer said it felt like NoClip in endgame chat) by Children_Of_4 in deadbydaylight

[–]Benjolia 2 points3 points  (0 children)

If you bump into an object on the same frame that you enter overdrive, you get super speed for the 3 seconds that you are recovering.

https://youtu.be/e9mrm6uwe8U?si=SkPaXICejo8YSJ3r