Normal
Just wait a little, I'm doing little changes in script so it can be compatible with all versions of MP, also rating will be USA as default if user country rating isn't listed (little team discussion). User review is separated from plot in version 1.2.0 Beta (new button in Movie Info screen).For q 1 and 2 it's not easy to answer you really need to do it by yourself (need some regex knowledge and little C# coding skill).For q 5 there short summary is already inside script and the database:[code]// Plot shortregexPattern = @"<h5>Plot:</h5>[^>]+>\s+?(?<moviePlotShort>.+?)(?: \|)?\s+?<a|Users:.*?<p>(?<moviePlotShort>.+?)</p>";string shortPlot = Regex.Match(strBody, regexPattern, RegexOptions.Singleline).Groups["moviePlotShort"].Value;movieDetails.PlotOutline = HttpUtility.HtmlDecode(Utils.stripHTMLtags(shortPlot));[/code]
Just wait a little, I'm doing little changes in script so it can be compatible with all versions of MP, also rating will be USA as default if user country rating isn't listed (little team discussion). User review is separated from plot in version 1.2.0 Beta (new button in Movie Info screen).
For q 1 and 2 it's not easy to answer you really need to do it by yourself (need some regex knowledge and little C# coding skill).
For q 5 there short summary is already inside script and the database:
[code]
// Plot short
regexPattern =
@"<h5>Plot:</h5>[^>]+>\s+?(?<moviePlotShort>.+?)(?: \|)?\s+?<a|Users:.*?<p>(?<moviePlotShort>.+?)</p>";
string shortPlot = Regex.Match(strBody, regexPattern, RegexOptions.Singleline).Groups["moviePlotShort"].Value;
movieDetails.PlotOutline = HttpUtility.HtmlDecode(Utils.stripHTMLtags(shortPlot));
[/code]