Damaged - Embrace the Infinite

Step into the world of endless opportunities and unlock the gateway to virtual transactions.

  • Domain Update: Our Forum has moved! Please visit us at Damaged.gg for the latest updates.

how do i remove capture from combo

Lucian

Divine
Divine Contributor Premium Reverser

0

0%

Status

Offline

Posts

4,241

Likes

211

Rep

49

1

Years of Service

title
[Image: vXMweB7.png]
 

0

0%

Status

Offline

Posts

1

Likes

0

Rep

0

Bits

0

2

Years of Service

(24 October, 2019 - 08:38 PM)Lucian Wrote: Show More
title

you can just do the replace thing in notepad, and replace it with nothing
DISCORD:Kunaii#8179
If you have any questions about me, ask. Fiesta
 

Ulysses

Royal
Royal Elite member

0

0%

Status

Offline

Posts

1

Likes

0

Rep

0

Bits

0

3

Years of Service

narcorp

Guest
PowerShell yo.

Code:
Code:
$InputPath = "C:\temp\ComboWCapture.txt"
$OutputPath = "C:\temp\ComboNoCapture.txt"

$sw = New-Object System.IO.StreamWriter $OutputPath
$cnt = 0
foreach ($line in [System.IO.File]::ReadLines($InputPath))
{
$cnt++
if($cnt % 1000 -eq 0) #only show progress every 1000...more frequent progress updates will slow things down
{
Write-Progress -Activity "Processing File $InputPath" -Status "Current Line: $cnt"
}
$splitline = $line.Split('|')
$sw.WriteLine(([string]$splitline[0]).Trim())
}

$sw.Close()
 

48,670

38,233

238,380

Top