Jump to content

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


Coyad

Recommended Posts

 

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

Link to comment
Share on other sites

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

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

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...