Jump to content

[Share]How to make vote system for newbies for games in vb


Recommended Posts

Posted

 

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

  • 4 weeks later...
  • 2 months later...
Posted

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();
}

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..