brennoncraig
Member
I think I found where I'm suppose to plug it in at, but I don't know how to go about phrasing it and I haven't been able to find any other examples to go off of.
Correct me if I'm wrong, but I believe it goes in the VoteItem.Cs inbetween these lines?
If someone could help, would be much appreciated.
Correct me if I'm wrong, but I believe it goes in the VoteItem.Cs inbetween these lines?
C#:
case VoteStatus.Success:
{
if (VoteSite.Valid)
{
if (_Messages)
{ from.SendMessage("Thank you for voting on {0}!", VoteSite.Name); }
Here? ----------->
from.LaunchBrowser(VoteSite.URL);
VoteHelper.SetLastVoteTime(from, VoteSite);
}
else
If someone could help, would be much appreciated.