What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Plugin - Monitoring] BuddyProwl 4

anyone else have the problem with buddy, or is only on me.


[BuddyProwl] - Couldn't push message - System.Net.WebException: The remote server returned an error: (500) Internal Server Error.
at System.Net.HttpWebRequest.GetResponse()
at BuddyProwl.NotifoClient.SendNotification(String msg, String title, String label) in d:\xxx\Plugins\BuddyProwl\Functions.cs:line 146
at BuddyProwl.BuddyProwl.Pulse() in d:\xxx\Plugins\BuddyProwl\BuddyProwl.cs:line 69
 
anyone else have the problem with buddy, or is only on me.
[BuddyProwl] - Couldn't push message - System.Net.WebException: The remote server returned an error: (500) Internal Server Error.
at System.Net.HttpWebRequest.GetResponse()
at BuddyProwl.NotifoClient.SendNotification(String msg, String title, String label) in d:\xxx\Plugins\BuddyProwl\Functions.cs:line 146
at BuddyProwl.BuddyProwl.Pulse() in d:\xxx\Plugins\BuddyProwl\BuddyProwl.cs:line 69

same problem here ;(
 
Are you still having that problem? It's either Notifo's servers that is down or they changed how it works.
I haven't been using HB for a while, but I might take a look soon.
 
The buddy works now thank you for your help. btw i edit the confit to 127.0.0.1 to stop the waith time until the buddy say no update because i see the addon is not updated until now.
 
Is there a problem? The update server should be up and running.

I will take a look at the plugin this weekend.
 
Seems like an old version was on the update server, it's fixed now, sorry.
 
as a suggestion: could you add a stuck notification?
else this plugin is pretty awesome :) does everything it is supposed to do^^
 
Updated to version 5 which is a small rewrite. BuddyProwl is going back to the basics, removing some features that can be found in other plugins.

You have to redownload it from the first post, due to the updater not begin able to handle the process to update to this new version. The updater has been changed to allow changes like these in the future.
 
Hello, 1st: thanks for this plugin.
In the 5.0 version, I'm missing the ability to take screenshots on selected events. "I died" in logs tells me nothing, but screenshot with my death and 2 players (or fel reaver lol) standing above me tells me much more. I havent found any plugin which does this. There're few which take screenshots in selected intervals, but not on death/say/whisper...
So, can you please include it in next version, or put somewhere previous versions for download?
Thanks
 
Hello, 1st: thanks for this plugin.
In the 5.0 version, I'm missing the ability to take screenshots on selected events. "I died" in logs tells me nothing, but screenshot with my death and 2 players (or fel reaver lol) standing above me tells me much more. I havent found any plugin which does this. There're few which take screenshots in selected intervals, but not on death/say/whisper...
So, can you please include it in next version, or put somewhere previous versions for download?
Thanks
I'll take a look at implementing it again, it didn't work really well when I was testing it due to some processing. But just taking a screenshot should be easy.
 
[BuddyProwl] - Checking for updates!
* 1 million years later *
[BuddyProwl] - Couldn't check for updates, maybe the server is down.

Will that be fixed any time or will I have to disable the "update function"? :>
 
Will that be fixed any time or will I have to disable the "update function"? :>
1 million years are a bit much, don't you think? The reason was I forgot to turn on the webserver after a reboot. It should have been fixed, right?
 
I am still getting the following message

[BuddyProwl] - Checking for updates!

[BuddyProwl] - Couldn't check for updates, maybe the server is down.
 
I am still getting the following message

[BuddyProwl] - Checking for updates!

[BuddyProwl] - Couldn't check for updates, maybe the server is down.

Yes, I'm sorry for that. But I can't keep my computer on 24/7. I'll see if I can find some proper hosting sometime soon.
 
Is it possible to run the update method from a background thread so it doesn't block HB from loading the rest of the plugins?. for example, you could try changing the constructor to
Code:
        public BuddyProwl()
        {
            Settings = new Config();
            Thread updateThread = new Thread(Update);
            updateThread.Name = "BuddyProwl Updater";
            updateThread.IsBackground = true;
            updateThread.Start();
        }
You of course need to import System.Threading.

This shouldn't be a problem as far as I can tell since by the time you're executing that code HB has already compiled the plugin and isn't accessing the .cs files anymore. The only potential issue is whether HB's Logging methods are thread safe.
 
Back
Top