Hier kannst meinen haben und anpassen funzt bestens
PHP-Code:import "iUtils.js"
if(IType == "PCGames")
{
print(ITitle + " - " + copy(IRELEASENAME, Pos("-", IRELEASENAME) + 1, 85));
}
else if((IType == "PlayStation3") || (IType == "Xbox360"))
{
print(ITitle);
}
else if(IType == "Movie")
{
s = IReleaseName;
if( CharCount("_", s) > CharCount(".", s) )
s = StringReplace(s, "_", " ");
else
s = StringReplace(s, ".", " ");
s = StringReplace(s, "-", " - ");
print(copy(s , 1 , 85));
}




Zitieren