You can make a hack for that. For example if you're leeching from warez-bb open the Warez_BB.xml file and find this:
replace with:PHP:return base.GetTopic(url);
You can basically manipulate the topic in any way you like trough the plugins.PHP:// Config string findTag = "code"; string replaceTag = "hide-reply"; // Don't edit below string pattern = @"(?i)\[" + findTag + @"\]" + @"([\s\S]*)\[/" + findTag + @"\]"; string replace = "[" + replaceTag + "]${1}[/" + replaceTag + "]"; SiteTopic topic = base.GetTopic(url); if (topic == null) return null; topic.Content = System.Text.RegularExpressions.Regex.Replace( topic.Content, pattern, replace ); return topic;
I can't say what's going on in the case of a crash trough the logs. Because if it crashes it means whatever error occurred wasn't caught and so not logged.
You may want to try leeching with a pause value of 1.
hey. okay it didnt work. this is what i did
PHP:
public override string[] GetTopicUrls(string html)
// Config
string findTag = "code";
string replaceTag = "hide-reply-thanks";
// Don't edit below
string pattern = @"(?i)\[" + findTag + @"\]" +
@"([\s\S]*)\[/" + findTag + @"\]";
string replace = "[" + replaceTag + "]${1}[/" + replaceTag + "]";
SiteTopic topic = base.GetTopic(url);
if (topic == null) return null;
topic.Content = System.Text.RegularExpressions.Regex.Replace(
topic.Content,
pattern,
replace
);
and now Sharpleech doesnt recognize it