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?
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.
 
nvm, I figured it out from a slots script I had :)

C#:
 case VoteStatus.Success:
                    {
                        if (VoteSite.Valid)
                        {
                            if (_Messages)
                            { from.SendMessage("Thank you for voting on {0}!", VoteSite.Name); }

                            from.LaunchBrowser(VoteSite.URL);
                            VoteHelper.SetLastVoteTime(from, VoteSite);
                            
                            from.AddToBackpack( new BankCheck( 10000 ) );
                        }
                        else
 
Back