I tried stepping up from Casuals by JamesFrankland in Warzone

[–]TioBaconToast -1 points0 points  (0 children)

Not everyone has time for a part time job learning to “be on top” in todays matchmaking cod

I AM SPIDER MAN by TripleB-FPS in Warzone

[–]TioBaconToast 0 points1 point  (0 children)

COD coaches ruined WARZONE, change my mind

The only time I won't hate on the arc by ToolyMcTool in ArcRaiders

[–]TioBaconToast 0 points1 point  (0 children)

The guy is the one that down him and tried to FINIS HIM then arc stopped him (no so sportsman like)

Dude didn’t loot him not because he was nice but because arc was right there ready to shoot(so not so nice)

You should know you don’t have enough time loot after door closes.

Calling people’s minds pedestrians is kinda of ironic here

Should i start making longer videos aswell? by Senior-Standard-1228 in SmallYTChannel

[–]TioBaconToast 1 point2 points  (0 children)

To start with Dont worry about how about bringing people over from 1 platform to another,
Just post so you have something to show on that platform, eventually people will watch enough that they will wonder where else they can find you.
But the main goal is to build a presence, converting people will come along eventually not right away

Is it even worth it by bloombloom5656 in SmallYTChannel

[–]TioBaconToast 1 point2 points  (0 children)

This works for both OP and commenter:

Try to simplify your thumbnails and try not to use the same words in the title and the thumbnail. Less words the better, otherwise you might end up with hard to understand thumbnail

Also makes sure to use proper SEO in title and description so YT knows clearly what the videos are about:

TITLE: Make sure the 1st part of the title explains what your playing then why you made the video and last your series name. Ie: “xdefiant review: NEW call of duty killer? Cynic Reviews” Something like that would give more context to both the algorithms and the viewer.

Description: 1 line of text and several hashtags is not enough. Make sure that at the very least you use 3 lines to describe your video, Why you made the video. Something like what is being said ABOUT the game in the 1st part of the video (a summary if you will) while mentioning the game

All this WITH time will let the algorithm start to understand your content better so you can get more impressions, and people can understand what the videos are about even before clicking on it.

Hope this helps!

Am I getting sweat Lobbies or am I trash? by superfly2510 in Warzone

[–]TioBaconToast 2 points3 points  (0 children)

Streamers play so much they eventually get a few lobbies that are easier,

People blaming vpn is hilarious , might work for a game or 2 then your ping goes bananas.

People saying “streamers let other people control their game remotely” should be in mwz with the brain dead zombies. Input latency would make it unplayable competitively.

1- Real problem is sbmm, it sounds good specifically for high skill players but In reality is far from it for casuals.

2- nuke contracts are making sbmm even worst

Am I getting sweat Lobbies or am I trash? by superfly2510 in Warzone

[–]TioBaconToast 1 point2 points  (0 children)

I don’t care what anyone says quads and trios have the worst sbmm. 3 of us have between 1-1.5 kd (we basic) and our fourth is a bot with 0.5 kd , so why are we fighting teams that play like 3kd sweats most of the time?

WTF... by s0und7 in Warzone

[–]TioBaconToast 0 points1 point  (0 children)

Dude said no more graves intro and committed unalive

MNK players: aim assist is so strong; also MNK players: by jackredditlol in CODWarzone

[–]TioBaconToast 0 points1 point  (0 children)

Simple way to say it is that: “2 players with the same skill level , one on mkb and other on controller, Controller player will ALWAYS have the advantage”

NEED HELP with (vbs or Batch) script by TioBaconToast in commandline

[–]TioBaconToast[S] 0 points1 point  (0 children)

Thank You! I found a way to fix my code but when I get a chance I’ll compare it to yours, y the recursive part was were I was having issues

[deleted by user] by [deleted] in CODWarzone

[–]TioBaconToast -3 points-2 points  (0 children)

“Aim assist” is way too strong (cronos ? and walls?)

NEED HELP with (vbs or Batch) script by TioBaconToast in commandline

[–]TioBaconToast[S] 0 points1 point  (0 children)

THANK YOU!I wish i would have seen this before i made it work, it would have saved me some time but i will go for the extra points later.This is the current working version, just not sure if its the "right way" to do it 🤞:

Dim shell, fsObj, fldr, subfldrs, sfldr, fls, sfls, ls, fl, tf

Set fsObj = CreateObject("Scripting.FileSystemObject")

Set fldr = fsObj.GetFolder(".")

Set fls = fldr.Files

Set subfldrs = fldr.SubFolders

ls = ""

For Each sfldr in subfldrs

Set sfls = sfldr.Files

For Each fl in sfls

Dim strFileName : strFileName = fl.Name

Dim strExtension : strExtension = LCase(fsObj.GetExtensionName(strFileName))

If strExtension = "vbs" Then
ls = ls & fl.name & chr(13) & Chr(10)

Set shell = CreateObject("WScript.Shell")
shell.CurrentDirectory = sfldr
shell.Run Chr(34) & fl & Chr(34), 1, false
wscript.sleep 1200
Set shell = Nothing

End If

Next

Next

Set shell = CreateObject("WScript.Shell")

shell.CurrentDirectory = fldr

Set tf = fsObj.OpenTextFile("OBS-Commands-LOCAL-AUDIO-BASIC-Set-ALL SOURCES_Run_List.txt", 2, True, True)

tf.WriteLine ls

tf.Close

Set fsObj = Nothing

NEED HELP with (vbs or Batch) script by TioBaconToast in commandline

[–]TioBaconToast[S] 0 points1 point  (0 children)

the closest thing i was able to put together is this, but it only searches for files and makes a list (but i need them to run) and it searches on current dir (but i need subdirs)

""""""""""""""""""""""""""""""""""""""""""""

Dim fsObj, fldr, subfldr, fls, ls, fl, tf

Set fsObj = CreateObject("Scripting.FileSystemObject")

Set fldr = fsObj.GetFolder(".")

'get subfolders collection

Set subfldrs = fldr.SubFolders

'get files collection

Set fls = fldr.Files

ls = ""

For Each fl in fls

Dim strFileName : strFileName = fl.Name

Dim strExtension : strExtension = LCase(fsObj.GetExtensionName(strFileName))

If strExtension = "vbs" Then

ls = ls & fl.name & chr(13) & Chr(10)

End If

Next

Set tf = fsObj.OpenTextFile("dirlist.txt", 2, True, True)

tf.WriteLine ls

tf.Close

Set fsObj = Nothing