Originally posted by ouroborosI've got this installed but it's not doing anything for me. The others still work, when I installed it I was told to update Greasemonkey which I did.
If you are using Firefox and have the Greasemonkey extension loaded you can use the script at http://members.shaw.ca/ouroboros/RHP/private_forums.user.js to add private clan forum's to the 'Forums' pulldown menu.
Originally posted by XanthosNZEnter 'about:config' in the location bar and do a search for 'greasemonkey'. It will give you a list of variables set for the scripts. There should be one for each of the clans that you are a member of, a list of clan cids, and the last time data was pulled from RHP directly. Let me know if those values are set.
I've got this installed but it's not doing anything for me. The others still work, when I installed it I was told to update Greasemonkey which I did.
Originally posted by ouroboroshttp://img.photobucket.com/albums/v694/XanthosNZ/greasemonkey.jpg
Enter 'about:config' in the location bar and do a search for 'greasemonkey'. It will give you a list of variables set for the scripts. There should be one for each of the clans that you are a member of, a list of clan cids, and the last time data was pulled from RHP directly. Let me know if those values are set.
The problem is it isn't setting the forum number flag to anything (I tried looking at your code but can't spot what you are calling it). I can do this manually via the about:config page.
As you can see in the picture all of mine are set to zero whereas two of them should be the number of the forums.
I think the problem must lie somewhere in here:
GM_xmlhttpRequest({
method: 'GET',
url: lookupClan,
onload: function(responseDetails) {
if (responseDetails.status == 200) {
var text = responseDetails.responseText;
var end = text.indexOf('forum-clansforum-mini.gif'😉;
if (end != -1) {
var start = text.lastIndexOf('forumid', end);
var link = text.substring(start, end);
var forumid = link.match(/forumid=(\d+)/);
clans[i ].forumid = forumid[1];
}
else {
clans[i ].forumid = 0;
}
getForumId(clans);
}
}
});
I haven't been able to reproduce this problem. Try setting the 'clans' variable to 0 and the 'updated' variable to 0 and reload a RHP page. Also, you have to wait for it to load since it has to go back to the server once for each clan that you are a member of so you might want to idle for a 10-20 seconds before doing anything else after loading.
Also, check the 'JavaScript Console' under 'Tools' for any error messages.
Originally posted by ouroborosIt hasn't returned since. I don't really know what caused it. I can't tell if my manually changing the flags has meant that I have bypassed the part that caused the fault or if it just had a momentary error.
I haven't been able to reproduce this problem. Try setting the 'clans' variable to 0 and the 'updated' variable to 0 and reload a RHP page. Also, you have to wait for it to load since it has to go back to the server once for each clan that you are a member of so you might want to idle for a 10-20 seconds before doing anything else after loading.
Also, check the 'JavaScript Console' under 'Tools' for any error messages.