• We just launched and are currently in beta. Join us as we build and grow the community.

How to clean Millions of Combos in seconds | Remove all the shit out of them

AudioGuy

Affiliate Campaign Manager
A Rep
0
0
0
Rep
0
A Vouches
0
0
0
Vouches
0
Posts
57
Likes
127
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 200 XP
So first of all you need to have EM editor
Download here if not having:
Then you have to open new file as ?
Now paste below script there and save with .jsee extension
Code:
document.DeleteDuplicates("",0);
document.selection.Replace("::",":",eeReplaceAll,0);
document.selection.Replace("^www\\.","",eeReplaceAll | eeFindReplaceRegExp,0);
document.selection.Replace("\\:$","",eeReplaceAll | eeFindReplaceRegExp,0);
document.selection.Find(":$HEX[",eeFindNext | eeFindBookmark,0);
document.selection.Find("&amp",eeFindNext | eeFindBookmark,0);
document.selection.Find("<",eeFindNext | eeFindBookmark,0);
document.selection.Find("&#",eeFindNext | eeFindBookmark,0);
document.selection.Find("\\:www\\.",eeFindNext | eeFindReplaceRegExp | eeFindBookmark,0);
document.selection.Find("\\:http",eeFindNext | eeFindReplaceRegExp | eeFindBookmark,0);
document.selection.Find(":.*?:",eeFindNext | eeFindReplaceRegExp | eeFindBookmark,0);
editor.ExecuteCommandByID(4589);
document.selection.Find("^.{0,4}:",eeFindNext | eeFindReplaceRegExp | eeFindBookmark,0);
document.selection.Find("^.{30,}:",eeFindNext | eeFindReplaceRegExp | eeFindBookmark,0);
document.selection.Find("\\:.{0,4}$",eeFindNext | eeFindReplaceRegExp | eeFindBookmark,0);
document.selection.Find("\\:.{40,}$",eeFindNext | eeFindReplaceRegExp | eeFindBookmark,0);
editor.ExecuteCommandByID(4589);
document.selection.Find(":",eeFindNext | eeFindBookmark,0);
editor.ExecuteCommandByID(4588);
editor.ExecuteCommandByID(4589);
document.DeleteDuplicates("",0);
//Randomly shuffle lines
document.selection.SelectAll();
strSelText = document.selection.Text;
strLinebreak = "\r\n";
arrLinesArray = strSelText.split(strLinebreak);
arrLinesArray.sort(function random(){return 0.5 - Math.random()});
arrOut = arrLinesArray.join(strLinebreak);
document.selection.Text = arrOut;
document.selection.Replace("^[ \\t]*$\\n","",eeFindNext | eeFindSaveHistory | eeReplaceAll | eeFindReplaceRegExp);
editor.ExecuteCommandByID(4099);
Everytime you need to clean your Combos, paste them in EMeditor and go to macros tab andrun the macros you saved(this script is called macros)
DON'T Leach
 

452,292

323,690

323,699

Top