For people who have issue with arabic string...
Here is the Launcher source code you just have to fix for match
Code:
private bool method_0()
{
return System.IO.File.Exists("data.00A") && System.IO.File.Exists("data.00B") && (System.IO.File.Exists("data.00C") && System.IO.File.Exists("data.000")) && (System.IO.File.Exists("data.001") && System.IO.File.Exists("data.002") && (System.IO.File.Exists("data.003") && System.IO.File.Exists("data.004"))) && (System.IO.File.Exists("data.005") && System.IO.File.Exists("data.006") && (System.IO.File.Exists("data.007") && System.IO.File.Exists("data.008")) && (System.IO.File.Exists("SplashLoading.exe") && System.IO.File.Exists("zlib1.dll") && System.IO.File.Exists("RappelzConfig.exe")));
}
private void Launcher_Main_Load(object sender, EventArgs e)
{
if (this.method_0())
{
this.backgroundWorker_0.RunWorkerAsync();
}
else
{
int num = (int) MessageBox.Show("تأكد من وجود اللانشر في مسار الكلينت");
this.Close();
}
}