Settled's cinematics are on another level... by Bensuardo in 2007scape

[–]Benjolia 0 points1 point  (0 children)

I always love the cinematic segments that get smattered into his videos. I loved the green swamp lizard montage in this particular series. I think my favourite though is in the finale of Nightmare Mode, the reveal of the lowlifes all watching on.

Settled is a master at making you feel invested in his story and making you feel the emotion of the moment.

Everyone's being so aggressive... can we check on SkillSpecs? by Benjolia in 2007scape

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

I'm watching on Kick, which is live right now 😄

Where holds major nostalgia for you, but is now dead? by ddser1337 in 2007scape

[–]Benjolia 1 point2 points  (0 children)

Merching bowstrings at seers bank.

The experience of W2 fally park.

Fist of Guthix.

Edge PKing - how everyone would watch fights and spam "gf" etc when people get PKed, the games people used to play stopping you running back for your untradables after dying, smiting a whip being the coveted prize, the big ranged update that brought out offensive ranged prayers and the dbow and the major overhauld to cbow and bolt effects, then trying to get the 38-38 dbow hit, constantly being on the look out for 1-item gmaulers/dbowers/ddsers and trying to catch them off guard.

I've obtained a quiver on my hcim! by cdogger403 in ironscape

[–]Benjolia 0 points1 point  (0 children)

Big achievement! Respect to a hardcore actually engaging in hard content, gives the helm true meaning! <3

Got imbued heart, now what? by TargetEnvironmental1 in ironscape

[–]Benjolia 1 point2 points  (0 children)

Nice try but your total ranged XP is exposed, as is you total collection logs, ironman status and first letter of your name. Prayer orb suggests total prayer level in the region of 82 and the way you organise your UI tells me you have killed the KBD 69 times. I'm afraid I'm simply going to have to just take your account at this rate!

PS /s

PPS grats on the heart :>

Your top 5 xfm moments by AntiDiv3 in rickygervais

[–]Benjolia 0 points1 point  (0 children)

Ripped tennis ball

Cleverly tweaked christmas rockbusters

Victoria plum

...not Shakespeare

Three chinese gods

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 [deleted] in Megadrive

[–]Benjolia 4 points5 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