TheShiningOne
TheShiningOne
  • Видео 919
  • Просмотров 372 862
New library for Streamer.Bot's OBS Raw
New library for Streamer.Bot's OBS Raw
Просмотров: 292

Видео

Streamer.Bot: How to use global variables in C#.
Просмотров 1 тыс.7 месяцев назад
Streamer.Bot: How to use global variables in C#.
Security risks with Streamer.Bot
Просмотров 450Год назад
Security risks with Streamer.Bot
Streamer.Bot New features - Huge update
Просмотров 554Год назад
Streamer.Bot New features - Huge update
Snooze Twitch Ads, again
Просмотров 452Год назад
Snooze Twitch Ads, again
Get access to Streamer.Bot database
Просмотров 604Год назад
Get access to Streamer.Bot database
Control your stream with a joystick
Просмотров 1772 года назад
Control your stream with a joystick
Your chat will love this minigame
Просмотров 5772 года назад
Your chat will love this minigame
Twitch broke tags - I broke Twitch
Просмотров 2092 года назад
Twitch broke tags - I broke Twitch
Automatically switch channel points per game
Просмотров 2142 года назад
Automatically switch channel points per game
Semiautomatic channel points switch
Просмотров 3422 года назад
Semiautomatic channel points switch
Snooze Twitch Ads (OUTDATED)
Просмотров 9152 года назад
Snooze Twitch Ads (OUTDATED)
Streamer.Bot doesn't see a YouTube livestream
Просмотров 1112 года назад
Streamer.Bot doesn't see a RUclips livestream
Get your own theme song for the stream
Просмотров 3262 года назад
Get your own theme song for the stream
Inject DLL Windows intended way
Просмотров 1172 года назад
Inject DLL Windows intended way
Stream overlay (Theme Hospital)
Просмотров 472 года назад
Stream overlay (Theme Hospital)
I have a bad case of diarrhea (Theme Hospital)
Просмотров 422 года назад
I have a bad case of diarrhea (Theme Hospital)
Disastrous viewers (Theme Hospital)
Просмотров 382 года назад
Disastrous viewers (Theme Hospital)
Emergency call from the viewer (Theme Hospital)
Просмотров 512 года назад
Emergency call from the viewer (Theme Hospital)
Twitch viewers are causing natural cataclysms (Theme Hospital)
Просмотров 482 года назад
Twitch viewers are causing natural cataclysms (Theme Hospital)
Your viewers are inside your game and judging you (Theme Hospital)
Просмотров 1052 года назад
Your viewers are inside your game and judging you (Theme Hospital)
Get vision correction by your Twitch audience
Просмотров 552 года назад
Get vision correction by your Twitch audience
Shake it up! Viewers help improve your game
Просмотров 1052 года назад
Shake it up! Viewers help improve your game

Комментарии

  • @Dimkaitak_MSX_FM
    @Dimkaitak_MSX_FM 5 дней назад

    Что за игра?

  • @fantom4191
    @fantom4191 5 дней назад

    Аж по русски заговорил

  • @Jet_set_radio_songsGum
    @Jet_set_radio_songsGum 15 дней назад

    Ok is just mission 😂

  • @nycfanner_205
    @nycfanner_205 Месяц назад

    The game is harder than Cuphead

  • @ejxZvjo
    @ejxZvjo Месяц назад

    timing :D

  • @snmrikki9026
    @snmrikki9026 Месяц назад

    never noticed the MAX PAYNT being a play on Max Payne

    • @TheShiningOne
      @TheShiningOne Месяц назад

      And interesting part that GTA2 was released in 1999 and first Max Payne in 2001. Really interesting Easter egg. 🙃

  • @SadButter
    @SadButter 2 месяца назад

    It's even funnier when you notice it's not even the guy you jacked the car from LOL

  • @adrianaleal6044
    @adrianaleal6044 2 месяца назад

    Damn that’s lucky

  • @CaodeSucks
    @CaodeSucks 2 месяца назад

    I am sorry to report that this no longer can be imported to modern version of the program. :')

    • @TheShiningOne
      @TheShiningOne 2 месяца назад

      Thanks! I'm currently in progress of updating my stuff, so stay tuned for new version. 🙃

    • @TheShiningOne
      @TheShiningOne 2 месяца назад

      I reexported it from the new version of Streamer.Bot and pushed the update to my repo. Now it should work.

  • @Mryamahaz71
    @Mryamahaz71 2 месяца назад

    Wow this takes me back

    • @TheShiningOne
      @TheShiningOne 2 месяца назад

      You also threw Molotov cocktails at your teammates? 🙃

    • @Mryamahaz71
      @Mryamahaz71 2 месяца назад

      @@TheShiningOne just the game in general, played it on the Sega Dreamcast back in highschool

  • @pedrogim6952
    @pedrogim6952 2 месяца назад

    1960s

  • @DidatticaScuola
    @DidatticaScuola 2 месяца назад

    oh nice i was really trying to find someone that make c# tutorials. Idk why youtube really dont recommend some youtube channels and its pretty sad becasue this video is amazing. You are really good at explaining

    • @TheShiningOne
      @TheShiningOne 2 месяца назад

      Glad I could help! YT algo is doing it's thing as usual 🙃

  • @racinracerxp8645
    @racinracerxp8645 3 месяца назад

    Bro, went into the store grabbed 50k worth of landmines and ran out

  • @hustlecrowe
    @hustlecrowe 3 месяца назад

    How would I go about setting up my streamer.bot so that I can see the console log like in your video?

    • @TheShiningOne
      @TheShiningOne 3 месяца назад

      It's a simple script which starts powershell's Get-Content with Tail option. I'm using an action with C# sub-action attached to StreamerBot started trigger, so this console starts with SB. using System; using System.IO; using System.Diagnostics; public class CPHInline { public bool Execute() { var baseDirectory = AppDomain.CurrentDomain.BaseDirectory; char s = Path.DirectorySeparatorChar; string filepath = $"logs{s}"; DateTime datecode = DateTime.Now; string year = datecode.ToString("yyyy"); string month = datecode.ToString("MM"); string day = datecode.ToString("dd"); string filename = "log_" + year + month + day; string path = baseDirectory + filepath + filename + ".log"; Process.Start("powershell.exe", $"Get-Content -Path '{path}' -Tail 10 -Wait"); return true; } }

    • @TheShiningOne
      @TheShiningOne 3 месяца назад

      Just in case code will be broken by YT, here is a link to script. discord.com/channels/834650675224248362/905127939266474015/1140717715284303933

  • @Gotursister
    @Gotursister 5 месяцев назад

    Brings back so many memories

  • @chessforfun3032
    @chessforfun3032 5 месяцев назад

    can you tell how to take userinfo like i want to know when was the account created using c# so that i can do more with it

    • @TheShiningOne
      @TheShiningOne 5 месяцев назад

      Hi! You need TwitchGetExtendedUserInfoById or TwitchGetExtendedUserInfoByLogin method. It will return TwitchUserInfoEx structure, which contains CreatedAt property. docs.streamer.bot/api/csharp/twitch/user#TwitchGetExtendedUserInfoById

    • @chessforfun3032
      @chessforfun3032 5 месяцев назад

      @@TheShiningOne thankyou for telling that actually i was developing something to ban bots do you think streamerbot can handle if there is a big bot follow raid can it ban 1000 people or will it crash

    • @TheShiningOne
      @TheShiningOne 5 месяцев назад

      I think it should do it fine. There is more chances to trigger rate limit on twitch api.

  • @stonedsavage7814
    @stonedsavage7814 5 месяцев назад

    You are taking me way back 😂

    • @TheShiningOne
      @TheShiningOne 5 месяцев назад

      I hope you liked it there 🙃

  • @badroulette
    @badroulette 6 месяцев назад

    Братишка, привет. Напиши ты по-русски, что ты тут намастерил такого, что-то интересное, но пока не понятное.

    • @TheShiningOne
      @TheShiningOne 6 месяцев назад

      Как доберусь документацию сделать продублирую там на русском.

  • @John-hh3dw
    @John-hh3dw 6 месяцев назад

    thank you for making this video - very helpful!

  • @TheFaxMachine69
    @TheFaxMachine69 6 месяцев назад

    Holy moly I never thought I’d see the day, this was my first game I got on my first game console, good ol PS1. Thank you for sharing, needed this :)

  • @streamerdotbot
    @streamerdotbot 6 месяцев назад

    TY for the video

  • @Blairadonna
    @Blairadonna 6 месяцев назад

    Tried Importing this today but the game doesn't seem to start even when enabled, I don't get any replies from the bot or responses. I tried testing some of the solutions in the comments but it seems like they're getting their bot to respond to commands but mine wont. (other streamerbot commands are working fine)

    • @TheShiningOne
      @TheShiningOne 6 месяцев назад

      I assume you added proper paths for sounds, so problem should be in roulette_Engine action inside C# code. Try opening the C# sub-action and compile it. It should give you and error. StreamerBot was updated after creating this game, method for timeout users has been changed. It should be on line 439, you need to change CPH.TimeoutUser to CPH.TwitchTimeoutUser.

  • @cartersheavills2230
    @cartersheavills2230 6 месяцев назад

    ❤ love for the good old times

  • @nycfanner_205
    @nycfanner_205 7 месяцев назад

    In gta 1 we have sliding over cars

    • @TheShiningOne
      @TheShiningOne 7 месяцев назад

      And under also. There is a glitch so you can slide under the fence using a truck.

  • @nycfanner_205
    @nycfanner_205 7 месяцев назад

    when the gang save the day

    • @TheShiningOne
      @TheShiningOne 7 месяцев назад

      I really like this mechanic in GTA2

  • @CubeInspector
    @CubeInspector 7 месяцев назад

    Oh man I had thos game as a kid. Vack when you only had enough HDD space for 1 game at a time 😂

  • @SuSu-gh2jh
    @SuSu-gh2jh 7 месяцев назад

    Gta0

  • @YOLANDAESTRADA-c3j
    @YOLANDAESTRADA-c3j 7 месяцев назад

    yes😊 ooooooo😮

  • @gmdesert3810
    @gmdesert3810 8 месяцев назад

    i tryed this or the 1st one i forgot i neber past the furst mission when i wase young

    • @TheShiningOne
      @TheShiningOne 8 месяцев назад

      Then you definitely should try it again 🙃

  • @michaelmontano4280
    @michaelmontano4280 8 месяцев назад

    Looks a lot like fun!!! "Call up the boys let's go for a joyride"

  • @HarriHaffi
    @HarriHaffi 8 месяцев назад

    Is this the one that’s free to play?

    • @TheShiningOne
      @TheShiningOne 8 месяцев назад

      It's the old one, from 1999.

    • @HarriHaffi
      @HarriHaffi 8 месяцев назад

      @@TheShiningOne Yeah! Remember reading about one of the gta games being free to play like a decade ago, but it didn’t work on my computer after downloading it.

    • @TheShiningOne
      @TheShiningOne 8 месяцев назад

      Yeah, there was a time when Rockstar was giving away classic GTAs for free. You can find instructions how to make them work on modern PC.

    • @HarriHaffi
      @HarriHaffi 8 месяцев назад

      @@TheShiningOne cool! But way too much work for me. If time is money then are they really free? Consider the time you spent trying to make em work.

    • @TheShiningOne
      @TheShiningOne 8 месяцев назад

      Agree. Luckily for me, they worked fine on my machine.

  • @nycfanner_205
    @nycfanner_205 8 месяцев назад

    ayo what 💀🤨📸

  • @eskadoodle23
    @eskadoodle23 9 месяцев назад

    It's super lag when I play, any ideas on how to fix that?

    • @TheShiningOne
      @TheShiningOne 9 месяцев назад

      Do you play on your PC hardware? I used VMware Workstation Player free version with installed Windows XP.

  • @Nololol2939
    @Nololol2939 9 месяцев назад

    How to get golden tank for free without frenzy be like:

  • @360GameTV
    @360GameTV 9 месяцев назад

    It is possible to the other direction? That a button press command from Streamerbot trigger a Button Press on the controller?

    • @TheShiningOne
      @TheShiningOne 9 месяцев назад

      Yes, but not with SB's built-in "Keyboard press" sub-action. You will have to make some C# code.

    • @360GameTV
      @360GameTV 9 месяцев назад

      @@TheShiningOne Ok thanks and unfortunately I can't do that because I have no experience in coding :(

    • @TheShiningOne
      @TheShiningOne 9 месяцев назад

      You can just join my Discord (discord.gg/ZEwBH2NxeV), open a thread there, explain what exactly you want and I will help you.

  • @andersrkeness2721
    @andersrkeness2721 10 месяцев назад

    So many GOOD memories from this game

    • @TheShiningOne
      @TheShiningOne 9 месяцев назад

      For me, it was frustrating, because at the time I first played I didn't understand a word in English 🙃 Now it's much better 😁

  • @nycfanner_205
    @nycfanner_205 10 месяцев назад

    they also have “Porka” as “Porsche” and “Ferocious” as “Ferrari”

  • @nycfanner_205
    @nycfanner_205 10 месяцев назад

    and then flee the scene

  • @skowerek
    @skowerek 10 месяцев назад

    Lmao

  • @fypsfd
    @fypsfd 10 месяцев назад

    😂😂😂

  • @nycfanner_205
    @nycfanner_205 10 месяцев назад

    HOL IT ERE 🗣️🗣️🗣️🗣️🗣️🔥🔥🔥🔥

  • @nycfanner_205
    @nycfanner_205 11 месяцев назад

    never knew you can change radio I thought that a vehicle has their own radio in there

    • @TheShiningOne
      @TheShiningOne 11 месяцев назад

      At least in PC version you can, don't know in others.

    • @nycfanner_205
      @nycfanner_205 11 месяцев назад

      @@TheShiningOne cool feature that i just know by now 🙃

  • @nycfanner_205
    @nycfanner_205 11 месяцев назад

    Aren’t they supposed to shoot or steal the bike 💀

    • @TheShiningOne
      @TheShiningOne 11 месяцев назад

      That's what I thought too, but no, he just ran.

  • @MemeGamerYT261
    @MemeGamerYT261 11 месяцев назад

    r/cursedgta

  • @MemeGamerYT261
    @MemeGamerYT261 11 месяцев назад

    ON FOOT! not by car,bus,truck,wheelchair,or by train,ON FOOT

    • @TheShiningOne
      @TheShiningOne 11 месяцев назад

      Me bad at reading ¯\_(ツ)_/¯

  • @bounty245
    @bounty245 11 месяцев назад

    Top idea. This could be used for all hard missions in Vice City

    • @TheShiningOne
      @TheShiningOne 11 месяцев назад

      Yeah, you can use them each city for some missions.

  • @Toddy_ALl
    @Toddy_ALl 11 месяцев назад

    Long live evolution

  • @menbach4175
    @menbach4175 11 месяцев назад

    It took grand 100 years😮 to finaly make gta 6

  • @GirlyPRO
    @GirlyPRO 11 месяцев назад

    hi, my messages are not being relayed on neither twitch or kick. Are you facing this issue currently? I have spoken to one of the chat support worker and they said they are facing issues with kick as its read only. I don't fully understand. Also, I have enabled the "relay".

    • @TheShiningOne
      @TheShiningOne 11 месяцев назад

      Apparently they broke it (

  • @nycfanner_205
    @nycfanner_205 11 месяцев назад

    does this happen irl when a big vehicle is moving fast and a small car like a police car crashes into the big vehicle and explodes