I've been using this script to see what resp is storing. It basically sendalls the resp variable. For some cases, resp is containing the content of the page - but for other cases, it isn't. Code (text): ({ afterNewMessage: function(message){ if (message == "Script Check: OK"){ sys.webCall(url, "sys.sendAll(resp);"); } } }) For example: http://pokemon-online.eu/ works. http://www.pokemon-online.eu/forums/forum.php doesn't work. Any ideas on what prevents the resp variable from storing the content?
Try http://pokemon-online.eu/forums/forum.php If it works it may have something to do with redirecting. Or it may be the forum avoiding bots.
I solved the bug. It was because some sites used windows line break instead of unix line breaks. ... not an intuitive answer at all, but that was the reason.