Use custom scripts in PR Emulator
sashilover
China
I urgently need to have an option to filter PR with custom formula which is used to PRJacker:
----------------
if(TF<15)
{
if(UniqueDomains<1000)
return 1;
else
return 0;
}
else if(TF>=15&&TF<20)
{
if(UniqueDomains<1000)
return 2;
else if(UniqueDomains<=3000)
return 1;
else
return 0;
}
else if(TF>=20)
{
if(UniqueDomains<((TF/10)*1500))
return 3;
else
return 1;
}
else
return 0;
--------------
Let me explain a little bit, I use TF to identify authority site, and use "UniqueDomains" variable from Majestic to filter "over spammy" site, it used to work great with PRJacker which is unfortunately shut down, please help, @sven.
Thanks in advance.
Comments