It works with phpbay sites too but you need to replace this code:
function edit($text)
{
$letters1="abcde";
$letters2="fghij";
$letters3="klmno";
$letters4="pqrst";
$letters5="uvwxy";
srand((float) microtime() * 10000000);
$the_letter=rand(0,4);
$text=str_replace($letters1[$the_letter],"&#".ord($letters1[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters2[$the_letter],"&#".ord($letters2[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters3[$the_letter],"&#".ord($letters3[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters4[$the_letter],"&#".ord($letters4[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters5[$the_letter],"&#".ord($letters5[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters1[$the_letter]),"&#".ord(strtoupper($letters1[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters2[$the_letter]),"&#".ord(strtoupper($letters2[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters3[$the_letter]),"&#".ord(strtoupper($letters3[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters4[$the_letter]),"&#".ord(strtoupper($letters4[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters5[$the_letter]),"&#".ord(strtoupper($letters5[$the_letter])),$text);
return ">".$text."<";
}
with this
function edit($text)
{
$pos=strpos($text,"phpbay");
if ($pos === false)
{
$letters1="abcde";
$letters2="fghij";
$letters3="klmno";
$letters4="pqrst";
$letters5="uvwxy";
srand((float) microtime() * 10000000);
$the_letter=rand(0,4);
$text=str_replace($letters1[$the_letter],"&#".ord($letters1[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters2[$the_letter],"&#".ord($letters2[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters3[$the_letter],"&#".ord($letters3[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters4[$the_letter],"&#".ord($letters4[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace($letters5[$the_letter],"&#".ord($letters5[$the_letter]),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters1[$the_letter]),"&#".ord(strtoupper($letters1[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters2[$the_letter]),"&#".ord(strtoupper($letters2[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters3[$the_letter]),"&#".ord(strtoupper($letters3[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters4[$the_letter]),"&#".ord(strtoupper($letters4[$the_letter])),$text);
$the_letter=rand(0,4);
$text=str_replace(strtoupper($letters5[$the_letter]),"&#".ord(strtoupper($letters5[$the_letter])),$text);
return ">".$text."<";
}
else
{
return ">".$text."<";
}
}
Hope this helps!