[Coming Soon]EOS Server

11/11/2012 15:36 Titania123#16
CBT group is now full. Thank you to all those interested, and I can't wait to see you in game. For those still wanting in, I am so sorry! If more slots become available I'll update this thread and our forums to let you know! I hope to see many of you once we go live!

Cheers!
11/12/2012 04:44 MhizzPinky#17
Quick update , noticed some misunderstandings with some inquirers , our launcher and client are not available as yet but certainly shall be, wayyyyyy before beta testing.

As you titania said Beta applications are now closed but we will alert you if we do increase the amount.

As mentioned before I really hate drama so , if you don't have anything decent or constructive(criticism maybe?) to say then please don't. We wish to promote a decent and enjoyable server!

Thank you :)
11/12/2012 05:16 marekrndr#18
MhizzPinky you already made clear with your responses to my trolling how immature, unprofessional and childish you are.
11/12/2012 05:28 MhizzPinky#19
You're the one tripping , yet I'm the child? you're the one "trolling" yet I'm the child? lol I'm not saying anything to you and yet you're stupidly targetting me....you didn't like my comment about your launcher? Oh well just grow up and move on lol...and you and your bud smoke...have totally deranged ideas of what "professionalism" is. Alright its clear you have some surreal issue with me for whatever reason which just makes me just laugh my head off.....but like can you just go away now? If you continue to be dumb and post nonsense in here I'm just gonna ignore you. Thanks lol
11/14/2012 12:25 MissDaisy452#20
Quick Update on Rappelz EOS guys: Server is up and running. Client + Launcher are currently uploading and will be available soon :) Beta might start a little earlier than planned if all goes well.

xoxo
[GM]MissDaisy
11/16/2012 05:25 Titania123#21
Okay guys, Beta has officially begun. Please visit this link ([Only registered and activated users can see links. Click Here To Register...]) to begin your downloads. PLEASE remember no tech support will be given if you are not using OUR client provided on our site. You can register directly from our launcher & begin playing.
11/16/2012 07:14 marekrndr#22
Code:
// Type: WindowsFormsApplication1.Form1
// Assembly: EOS Rappelz Launcher, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// Assembly location: C:\Users\Administrator\Desktop\EOS Launcher\EOS Rappelz Launcher.exe

using Ionic.Zip;
using System;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Windows.Forms;
using System.Xml.Linq;

namespace WindowsFormsApplication1
{
  public class Form1 : Form
  {
    private IContainer components = (IContainer) null;
    private ProgressBar progressBar1;
    private Button button1;
    private Button button2;
    private BackgroundWorker backgroundWorker1;
    private Label label1;
    private Button button3;
    private Label label2;
    private Label label3;
    private Label server;
    private Label status;
    private WebBrowser webBrowser1;

    public Form1()
    {
      this.InitializeComponent();
      this.backgroundWorker1.RunWorkerAsync();
      this.backgroundWorker1.WorkerReportsProgress = true;
    }

    private static bool deleteFile(string f)
    {
      try
      {
        System.IO.File.Delete(f);
        return true;
      }
      catch (IOException ex)
      {
        return false;
      }
    }

    private void Form1_Load(object sender, EventArgs e)
    {
      this.label1.ForeColor = Color.Red;
      this.label1.Text = "Client is up to date";
      string str = System.IO.File.OpenText("version").ReadToEnd();
      this.label2.ForeColor = Color.Green;
      this.label2.Text = str;
      try
      {
        using (Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
        {
          socket.Connect("74.91.124.250", 8841);
          if (!socket.Connected)
            return;
          this.Invoke((Delegate) (() => this.server.Text = "ONLINE."));
          this.server.ForeColor = Color.Green;
        }
      }
      catch (Exception ex)
      {
        this.Invoke((Delegate) (() => this.server.Text = "OFFLINE."));
        this.server.ForeColor = Color.OrangeRed;
      }
    }

    private void button2_Click(object sender, EventArgs e)
    {
      this.webBrowser1.Url = new Uri("http://74.91.124.250/");
    }

    private void button1_Click(object sender, EventArgs e)
    {
      try
      {
        Process.Start("SFrame.exe", "/auth_ip:74.91.124.250 /auth_port:8841 /locale:ASCII /country:US /commercial_shop");
        this.Close();
      }
      catch (SyntaxErrorException ex)
      {
      }
    }

    private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    {
      for (int percentProgress = 0; percentProgress <= 100; ++percentProgress)
      {
        string str1 = "http://teamhyperion.com/Updates/";
        string baseDirectory = AppDomain.CurrentDomain.BaseDirectory;
        FileStream fileStream = (FileStream) null;
        if (!System.IO.File.Exists("version"))
        {
          using (fileStream = System.IO.File.Create("version"))
            ;
          using (StreamWriter streamWriter = new StreamWriter("version"))
            streamWriter.Write("1.0");
        }
        string s1;
        using (StreamReader streamReader = new StreamReader("version"))
          s1 = streamReader.ReadLine();
        Decimal num = Decimal.Parse(s1);
        foreach (XElement xelement in XDocument.Load(str1 + "Updates.xml").Descendants((XName) "update"))
        {
          string s2 = xelement.Element((XName) "version").Value;
          string str2 = xelement.Element((XName) "file").Value;
          if (Decimal.Parse(s2) > num)
          {
            WebClient webClient = new WebClient();
            string str3 = "http://teamhyperion.com/";
            string fileName = str2 ?? "";
            string uriString = str3 + fileName;
            webClient.DownloadFileAsync(new Uri(uriString), fileName);
            this.backgroundWorker1.ReportProgress(percentProgress);
          }
        }
      }
    }

    private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e)
    {
      this.progressBar1.Value = e.ProgressPercentage;
      this.label1.ForeColor = Color.Red;
      this.label1.Text = "Installing Patch";
    }

    private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    {
      string str1 = "http://teamhyperion.com/Updates/";
      string baseDirectory = AppDomain.CurrentDomain.BaseDirectory;
      foreach (XElement xelement in XDocument.Load(str1 + "Updates.xml").Descendants((XName) "update"))
      {
        string str2 = xelement.Element((XName) "version").Value;
        string str3 = xelement.Element((XName) "file").Value;
        WebClient webClient = new WebClient();
        string str4 = "http://teamhyperion.com/Updates/";
        string fileName = "version";
        string uriString = str4 + fileName;
        webClient.DownloadFileAsync(new Uri(uriString), fileName);
        this.label1.ForeColor = Color.Red;
        this.label1.Text = "Client is up to date";
        try
        {
          using (ZipFile zipFile = ZipFile.Read(str3))
          {
            foreach (ZipEntry zipEntry in zipFile)
              zipEntry.Extract(baseDirectory + "\\Resource\\", true);
          }
          Form1.deleteFile(str3);
        }
        catch (Exception ex)
        {
        }
      }
    }

    private void button3_Click(object sender, EventArgs e)
    {
      Process.Start("www.teamhyperion.com");
    }

    protected override void Dispose(bool disposing)
    {
      if (disposing && this.components != null)
        this.components.Dispose();
      base.Dispose(disposing);
    }

    private void InitializeComponent()
    {
      ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (Form1));
      this.progressBar1 = new ProgressBar();
      this.button1 = new Button();
      this.button2 = new Button();
      this.backgroundWorker1 = new BackgroundWorker();
      this.label1 = new Label();
      this.button3 = new Button();
      this.label2 = new Label();
      this.label3 = new Label();
      this.server = new Label();
      this.status = new Label();
      this.webBrowser1 = new WebBrowser();
      this.SuspendLayout();
      this.progressBar1.Location = new Point(0, 322);
      this.progressBar1.Name = "progressBar1";
      this.progressBar1.Size = new Size(229, 23);
      this.progressBar1.TabIndex = 0;
      this.button1.BackColor = Color.Red;
      this.button1.FlatAppearance.BorderColor = Color.Red;
      this.button1.FlatAppearance.BorderSize = 2;
      this.button1.Location = new Point(593, 322);
      this.button1.Name = "button1";
      this.button1.Size = new Size(77, 23);
      this.button1.TabIndex = 4;
      this.button1.Text = "START GAME";
      this.button1.UseVisualStyleBackColor = false;
      this.button1.Click += new EventHandler(this.button1_Click);
      this.button2.BackColor = Color.Lime;
      this.button2.FlatAppearance.BorderColor = Color.Lime;
      this.button2.FlatAppearance.BorderSize = 2;
      this.button2.Location = new Point(502, 322);
      this.button2.Name = "button2";
      this.button2.Size = new Size(85, 23);
      this.button2.TabIndex = 5;
      this.button2.Text = "REGISTER";
      this.button2.UseVisualStyleBackColor = false;
      this.button2.Click += new EventHandler(this.button2_Click);
      this.backgroundWorker1.DoWork += new DoWorkEventHandler(this.backgroundWorker1_DoWork);
      this.backgroundWorker1.ProgressChanged += new ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
      this.backgroundWorker1.RunWorkerCompleted += new RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
      this.label1.AutoSize = true;
      this.label1.Location = new Point(248, 327);
      this.label1.Name = "label1";
      this.label1.Size = new Size(0, 13);
      this.label1.TabIndex = 6;
      this.button3.BackColor = Color.DodgerBlue;
      this.button3.Location = new Point(412, 322);
      this.button3.Name = "button3";
      this.button3.Size = new Size(84, 23);
      this.button3.TabIndex = 7;
      this.button3.Text = "WEBSITE";
      this.button3.UseVisualStyleBackColor = false;
      this.button3.Click += new EventHandler(this.button3_Click);
      this.label2.AutoSize = true;
      this.label2.Location = new Point(371, 327);
      this.label2.Name = "label2";
      this.label2.Size = new Size(0, 13);
      this.label2.TabIndex = 8;
      this.label3.AutoSize = true;
      this.label3.Location = new Point(348, 327);
      this.label3.Name = "label3";
      this.label3.Size = new Size(29, 13);
      this.label3.TabIndex = 9;
      this.label3.Text = "Ver :";
      this.server.AutoSize = true;
      this.server.Location = new Point(740, 327);
      this.server.Name = "server";
      this.server.Size = new Size(0, 13);
      this.server.TabIndex = 10;
      this.status.AutoSize = true;
      this.status.Location = new Point(676, 327);
      this.status.Name = "status";
      this.status.Size = new Size(57, 13);
      this.status.TabIndex = 11;
      this.status.Text = "SERVER :";
      this.webBrowser1.Location = new Point(0, 1);
      this.webBrowser1.MinimumSize = new Size(20, 20);
      this.webBrowser1.Name = "webBrowser1";
      this.webBrowser1.Size = new Size(796, 315);
      this.webBrowser1.TabIndex = 12;
      this.webBrowser1.Url = new Uri("http://www.teamhyperion.com/images/img6.jpg", UriKind.Absolute);
      this.AutoScaleDimensions = new SizeF(6f, 13f);
      this.AutoScaleMode = AutoScaleMode.Font;
      this.BackColor = SystemColors.GradientInactiveCaption;
      this.ClientSize = new Size(797, 345);
      this.Controls.Add((Control) this.webBrowser1);
      this.Controls.Add((Control) this.status);
      this.Controls.Add((Control) this.server);
      this.Controls.Add((Control) this.label3);
      this.Controls.Add((Control) this.label2);
      this.Controls.Add((Control) this.button3);
      this.Controls.Add((Control) this.label1);
      this.Controls.Add((Control) this.button2);
      this.Controls.Add((Control) this.button1);
      this.Controls.Add((Control) this.progressBar1);
      this.FormBorderStyle = FormBorderStyle.Fixed3D;
      this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");
      this.MaximizeBox = false;
      this.Name = "Form1";
      this.Text = "EOS Rappelz Launcher";
      this.Load += new EventHandler(this.Form1_Load);
      this.ResumeLayout(false);
      this.PerformLayout();
    }
  }
}
11/16/2012 07:32 ShaolinSHowdown#23
Lol you're such a child , you decompiled their launcher and posted it here, so what? You people on this forum are just so childish lol.
11/16/2012 07:37 marekrndr#24
Oh please go on, I think I actually found a fuck I give..



no wait, it was nothing.
11/16/2012 07:39 ShaolinSHowdown#25
Lol don't give a fuck what you do just saying....but you're making yourself look really stupid. All Imma say. Anyway guys over at EOS just do your thing ignore the asshole trying to get under your skin lol. Just learn from your lesson. Don't tell him anything about his launcher or he goes psycho
11/16/2012 22:50 swordkilic#26
server open date ?
11/17/2012 01:12 MhizzPinky#27
That would depend on how soon we straighten out any present issues with our server :)
11/18/2012 18:09 mailler#28
why i cant log in? downloaded your client and registered successfully
11/18/2012 20:24 MhizzPinky#29
Once you're not a beta tester the game won't let you log in.
11/19/2012 02:15 LeoMessi1899#30
Yea , Now without Staff / Beta Tester Permission u cant log-in ;)