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

[Request] Problem Alerter

Dartchen

New Member
Joined
Dec 5, 2011
Messages
67
Reaction score
0
Looking for a plugin that will fire off an email, alert, etc to an iphone/ipad when the bot's gold remains constant for a set time...ie 5 minutes. Tired of finding the bot either stuck on something, in Adria's hut, not looting, etc after being away/asleep for a few hours. Just need something simple to let me know there is a problem. In my mind if total gold doesn't increase...there is a problem. Thanks!
 
Awesome...I totally overlooked that! Definitely good enough for now...it would be nice to have an alert when I'm at work too though =)
 
Awesome...I totally overlooked that! Definitely good enough for now...it would be nice to have an alert when I'm at work too though =)

This is what I use for mail alerts.
init the variables eg. string _fromAddress = "[email protected]" and use bool for _sslEn

You could edit the above plugin with the function below, calling the function when the audible alert is played.

easy :)
Code:
using System.Net.Mail;

void SendMail()
{
MailMessage msg = new MailMessage();
SmtpClient sender = new SmtpClient(_smtpServer);

            msg.From = new MailAddress(_fromAddress);
            msg.To.Add(_toAddress);
            msg.Subject = _subject;
            msg.Body = _body;

            sender.Port = _port;
            sender.Credentials = new System.Net.NetworkCredential(_username, _password);
            sender.EnableSsl = _sslEn;

            sender.Send(msg);
}

gmail for example.
Code:
_smtpServer = "smtp.gmail.com"
_port = 587
_sslEn = true
 
Last edited:
This is what I use for mail alerts.
init the variables eg. string _fromAddress = "[email protected]" and use bool for _sslEn

You could edit the above plugin with the function below, calling the function when the audible alert is played.

easy :)
Code:
using System.Net.Mail;

void SendMail()
{
MailMessage msg = new MailMessage();
SmtpClient sender = new SmtpClient(_smtpServer);

            msg.From = new MailAddress(_fromAddress);
            msg.To.Add(_toAddress);
            msg.Subject = _subject;
            msg.Body = _body;

            sender.Port = _port;
            sender.Credentials = new System.Net.NetworkCredential(_username, _password);
            sender.EnableSsl = _sslEn;

            sender.Send(msg);
}

gmail for example.
Code:
_smtpServer = "smtp.gmail.com"
_port = 587
_sslEn = true


Yep used this and modifed it to not only email me if there is a problem but also every so often build up a string of status.. xp/hr. gold/hr.. time to next level etc etc and email it ot me so I can see how things are going and jump in if there is a problem.
 
Back
Top