Coyad Posted June 18, 2011 Posted June 18, 2011 Adv: http://maxcheaters.com/forum/index.php?topic=211184.0 Hello members What is this? Ex for L2. You can add this program in your patch files. Player can go to lineage 2 folder and click this program for vote in every top sites [ - Topzone ]. Why? Boring to go to website click the image....... Faster! How to make vote system Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Form2.Show() End Sub Private Sub HopzonesToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HopzonesToolStripMenuItem.Click WebBrowser1.Navigate("Your hopzone vote link here") End Sub Private Sub GamesSites200ToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GamesSites200ToolStripMenuItem.Click WebBrowser1.Navigate("Your gamesite vote link here") End Sub Private Sub L2TopToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles L2TopToolStripMenuItem.Click WebBrowser1.Navigate("Your l2top vote link here") End Sub Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click Me.Close() End Sub How to add more top sites? Look the video how to put the menu buttons.. VIDEO Credits BY Coyad Quote
UnixCode Posted June 18, 2011 Posted June 18, 2011 Just a simple web navigator :D, usefull continue. Quote
Coyad Posted June 19, 2011 Author Posted June 19, 2011 Just a simple web navigator :D, usefull continue. yeap i know it is easy ;) but very userfull ;) Quote
saYRam Posted September 26, 2011 Posted September 26, 2011 Converted to C# private void Form1_Load(System.Object sender, System.EventArgs e) { Form2.Show(); } private void HopzonesToolStripMenuItem_Click(System.Object sender, System.EventArgs e) { WebBrowser1.Navigate("Your hopzone vote link here"); } private void GamesSites200ToolStripMenuItem_Click(System.Object sender, System.EventArgs e) { WebBrowser1.Navigate("Your gamesite vote link here"); } private void L2TopToolStripMenuItem_Click(System.Object sender, System.EventArgs e) { WebBrowser1.Navigate("Your l2top vote link here"); } private void ExitToolStripMenuItem_Click(System.Object sender, System.EventArgs e) { this.Close(); } Quote
Stealth Posted September 27, 2011 Posted September 27, 2011 You could use Process.Start("www.yourwebsite.com") for starting the page with an external browser. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.