Dekaron 32/64 bit downloader
DimaSegu97
Posts: 15Approved Member
A friend and me coded a tool which look what OS you use 32/64 bit and then its going to the site where you can download the game for the 64 bit downloader you will get open the papayaplay site for the 32bit client you will go to mega.nz to download a .rar data where the client insite
if you use this tool please read the info Thanks
dear papayaplay you can use a low code to get a good installer
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;
namespace Dekaron_Auto_Downloader
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void cmdStartInstall_Click(object sender, EventArgs e)
{
if (Environment.Is64BitOperatingSystem== true)
{
DialogResult d = MessageBox.Show("You have a 64-bit OS, you want to download the 64bit Installer ?", "delete", MessageBoxButtons.YesNo);
if (d == DialogResult.Yes)
{
Process.Start("http://patch.dekarononline.com/Dekaron_Downloader.exe");
}
}
else
{
DialogResult d = MessageBox.Show("You have a 32-bit OS, you want to download the 32bit Client ?", "delete", MessageBoxButtons.YesNo);
if (d == DialogResult.Yes)
{
Process.Start("https://mega.nz/#!bRgg0BJB!2VjJ1AI2T5jqhKRbcQdbhNw29MrbFyoDQhW1UX_UdUU");
}
}
}
private void cmdInfo_Click(object sender, EventArgs e)
{
MessageBox.Show("If you click the button 'Start install', now the tool will look what OS you have (64 or 32 bit) if it will be a 64-bit os you will be asked if you want to download the Papayaplay installer if will get an auto download from the papayaplay site. if you have a 32-bit Os you will get a download from mega with the client for 32-bit.");
}
private void cmdClose_Click(object sender, EventArgs e)
{
Close();
}
}
}