• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OpenTibia All in One Tool Version 2.1

Shawak

Intermediate OT User
Joined
Sep 11, 2008
Messages
1,984
Solutions
2
Reaction score
119
Location
Germany
GitHub
Shawak
All in One Tool™
created by Shawak
Version 2.1


attachment.php
attachment.php


Informations:
  • This is a very usefull tool if you are an opentibia member!
  • I will update this more and more!
  • This isn't an opensource project!
  • Changelog:
    Code:
    	v2.0 {
    		- Re-coded the full porgamm
    		- Swapped from cpp to VB 08
    		- Added .stg files
    		- added some test sites
    		- created new .exe
    	}
    
    	v1.0 {
    		- Finished the Beta Stage of the programm
    	}
  • Download:
    • Download: Here (or Attached Files)
    • Download include:
      • 1x All in One Tool.exe
      • 1x readme.txt
      • 4x .stg files (server.stg, maps.stg, tools.stg, wbAppl.stg)
    • Scan: Here
    • Password: otland.net
      • He will ask for a password by unpack the archive.
    • By Bugs/Questions ask in this thread.
I hope you like it :thumbup:.
Feel free to rep++ me ^_^.

Regards,
Shawak
 

Attachments

  • All in One Tool v2.0.zip
    26.1 KB · Views: 178 · VirusTotal
Last edited by a moderator:
attachment.php


Forgot screen (my first post got delete because my internet crashed)
(This is screen of version 2.1)

Wtf my version 2.1 got deleted?
2.0 Sucks!
So again:
  • Version 2.1
  • Download: Here (or Attached Files)
  • Download include:
    • 1x All in One Tool.exe
    • 1x readme.txt
    • 4x .stg files (server.stg, maps.stg, tools.stg, wbAppl.stg)
  • Scan: Here
  • Password: otland.net

Changelog:
Lua:
	v2.1 {
		- add new sites (server.stg, maps.stg, tools.stg, wbAppl.stg)
		- changed server.stg to servers.stg and wbAppl.stg to wbAppls.stg
		- Added Credits to Server List
	}

	v2.0 {
		- Re-coded the full porgamm
		- Swapped from cpp to VB 08
		- Added .stg files
		- added some test sites
		- created new .exe
	}

	v1.0 {
		- Finished the Beta Stage of the programm
	}
If this post get delete again I will make a new thread -.-!
 

Attachments

  • All in One Tool pic.jpg
    All in One Tool pic.jpg
    20.4 KB · Views: 879 · VirusTotal
  • All in One Tool 2.1.zip
    26.8 KB · Views: 45 · VirusTotal
no it works but i don't see that it is all in one... it's just a download tool which can be coded very easily...
 
why not use My.Computer.Network.DownloadFile method instead of just forwarding to a site, good job making the program read strings from files. And the opensource thing is that you don't even have to release sources because it looks easy to program as it is...
 
why not use My.Computer.Network.DownloadFile method instead of just forwarding to a site, good job making the program read strings from files. And the opensource thing is that you don't even have to release sources because it looks easy to program as it is...

I tested all functions that I found, nothing worked.

wat does this do? can you explain a bit about the program :S

It's a good list with servers / maps / tools / website applications.
 
I made a little script that does that you said that you tested...
Download Sample.exe
And heres the code for it, you can use it but gice me credit:
Code:
' If you Use this Please Give me Credit
' GoD Toxic / safe0495
Public Class Form1
    Dim wc As System.Net.WebClient
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'Starts Download
        wc = New System.Net.WebClient()
        AddHandler wc.DownloadProgressChanged, AddressOf OnDownloadProgressChanged
        AddHandler wc.DownloadFileCompleted, AddressOf OnFileDownloadCompleted
        wc.DownloadFileAsync(New Uri("http://downloads.sourceforge.net/project/opentibia/opentibia%20server/otserv%200.6.2/otserv_0.6.2.zip"), "otserv.zip") 'Can be changed to be read from Combobox as you did in your previous program
        ' Use in format: ("Download Link"), "saveas name")
        ' I Think You Can Figure out the rest
        ToolStripStatusLabel1.Text = "Downloading"
    End Sub
    Private Sub OnDownloadProgressChanged(ByVal sender As Object, ByVal e As System.Net.DownloadProgressChangedEventArgs) ' Progressbar script

        Dim totalSize As Long = e.TotalBytesToReceive
        Dim downloadedBytes As Long = e.BytesReceived
        Dim percentage As Integer = e.ProgressPercentage
        ToolStripProgressBar1.Value = percentage
        ToolStripStatusLabel3.Text = downloadedBytes
        ToolStripStatusLabel6.Text = totalSize

    End Sub
    Private Sub OnFileDownloadCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs)

        If e.Cancelled Then
            ToolStripStatusLabel1.Text = "Cancelled" ' Cancelled Message/actions(can be easily changed)
        ElseIf Not e.Error Is Nothing Then
            ToolStripStatusLabel1.Text = "ERROR"
        Else
            ToolStripStatusLabel1.Text = "Done"
            ToolStripProgressBar1.Value = "0"
            ToolStripStatusLabel3.Text = "0"
            ToolStripStatusLabel6.Text = "0"
            MsgBox("Done!", MsgBoxStyle.Exclamation)

        End If

    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        wc.CancelAsync() 'Cancels Download
    End Sub
End Class
 
I would never use this as I want to know what I'm downloading, if it works, what features it got etc.
 
Back
Top