My conditions have still not been met......

Discuss anything that doesn't fit other categories here.
Locked
GuitarDude
Offline
Posts: 2
Joined: August 2nd, 2012, 9:07 pm

My conditions have still not been met......

Post by GuitarDude »

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{4D4EEAA2-190C-496D-B014-0EB68CA4E535}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>fCraft.ServerGUI</RootNamespace>
<AssemblyName>ServerGUI</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<StartupObject>fCraft.ServerGUI.Program</StartupObject>
<TargetFrameworkSubset>Client</TargetFrameworkSubset>
<ApplicationIcon>f2k.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>..\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ConsoleBox.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UpdateWindow.resx">
<DependentUpon>UpdateWindow.cs</DependentUpon>
</EmbeddedResource>
<None Include="app.config" />
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="UpdateWindow.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="UpdateWindow.Designer.cs">
<DependentUpon>UpdateWindow.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\fCraftGUI\fCraftGUI.csproj">
<Project>{AFAEE6CC-8B4F-40CD-9623-7FFDC8E52222}</Project>
<Name>fCraftGUI</Name>
</ProjectReference>
<ProjectReference Include="..\fCraft\fCraft.csproj">
<Project>{7FBE7809-6F77-415C-ABEB-A3F627E817B0}</Project>
<Name>fCraft</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="f2k.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
namespace fCraft.ServerGUI {
partial class MainForm {
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose( bool disposing ) {
if( disposing && ( components != null ) ) {
components.Dispose();
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent() {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( typeof( MainForm ) );
this.uriDisplay = new System.Windows.Forms.TextBox();
this.URLLabel = new System.Windows.Forms.Label();
this.playerList = new System.Windows.Forms.ListBox();
this.playerListLabel = new System.Windows.Forms.Label();
this.bPlay = new System.Windows.Forms.Button();
this.logBox = new System.Windows.Forms.RichTextBox();
this.console = new fCraft.ServerGUI.ConsoleBox();
this.SuspendLayout();
//
// uriDisplay
//
this.uriDisplay.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.uriDisplay.Enabled = false;
this.uriDisplay.Location = new System.Drawing.Point( 95, 12 );
this.uriDisplay.Name = "uriDisplay";
this.uriDisplay.ReadOnly = true;
this.uriDisplay.Size = new System.Drawing.Size( 473, 20 );
this.uriDisplay.TabIndex = 1;
this.uriDisplay.Text = "Waiting for first heartbeat...";
this.uriDisplay.WordWrap = false;
//
// URLLabel
//
this.URLLabel.AutoSize = true;
this.URLLabel.Font = new System.Drawing.Font( "Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)) );
this.URLLabel.Location = new System.Drawing.Point( 12, 15 );
this.URLLabel.Name = "URLLabel";
this.URLLabel.Size = new System.Drawing.Size( 77, 13 );
this.URLLabel.TabIndex = 5;
this.URLLabel.Text = "Server URL:";
//
// playerList
//
this.playerList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.playerList.FormattingEnabled = true;
this.playerList.IntegralHeight = false;
this.playerList.Location = new System.Drawing.Point( 628, 39 );
this.playerList.Name = "playerList";
this.playerList.Size = new System.Drawing.Size( 144, 387 );
this.playerList.TabIndex = 4;
//
// playerListLabel
//
this.playerListLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.playerListLabel.AutoSize = true;
this.playerListLabel.Font = new System.Drawing.Font( "Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)) );
this.playerListLabel.Location = new System.Drawing.Point( 710, 23 );
this.playerListLabel.Name = "playerListLabel";
this.playerListLabel.Size = new System.Drawing.Size( 62, 13 );
this.playerListLabel.TabIndex = 6;
this.playerListLabel.Text = "Player list";
//
// bPlay
//
this.bPlay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.bPlay.Enabled = false;
this.bPlay.Location = new System.Drawing.Point( 574, 10 );
this.bPlay.Name = "bPlay";
this.bPlay.Size = new System.Drawing.Size( 48, 23 );
this.bPlay.TabIndex = 2;
this.bPlay.Text = "Play";
this.bPlay.UseVisualStyleBackColor = true;
this.bPlay.Click += new System.EventHandler( this.bPlay_Click );
//
// logBox
//
this.logBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.logBox.BackColor = System.Drawing.Color.Black;
this.logBox.Font = new System.Drawing.Font( "Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)) );
this.logBox.HideSelection = false;
this.logBox.Location = new System.Drawing.Point( 12, 39 );
this.logBox.Name = "logBox";
this.logBox.ReadOnly = true;
this.logBox.Size = new System.Drawing.Size( 610, 387 );
this.logBox.TabIndex = 7;
this.logBox.Text = "";
//
// console
//
this.console.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.console.Enabled = false;
this.console.Location = new System.Drawing.Point( 13, 433 );
this.console.Name = "console";
this.console.Size = new System.Drawing.Size( 759, 20 );
this.console.TabIndex = 0;
this.console.Text = "Please wait, starting server...";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size( 784, 464 );
this.Controls.Add( this.logBox );
this.Controls.Add( this.bPlay );
this.Controls.Add( this.console );
this.Controls.Add( this.playerListLabel );
this.Controls.Add( this.playerList );
this.Controls.Add( this.URLLabel );
this.Controls.Add( this.uriDisplay );
this.Icon = ((System.Drawing.Icon)(resources.GetObject( "$this.Icon" )));
this.MinimumSize = new System.Drawing.Size( 500, 150 );
this.Name = "MainForm";
this.Text = "fCraft";
this.ResumeLayout( false );
this.PerformLayout();

}

#endregion

private System.Windows.Forms.TextBox uriDisplay;
private System.Windows.Forms.Label URLLabel;
private System.Windows.Forms.ListBox playerList;
private System.Windows.Forms.Label playerListLabel;
private ConsoleBox console;
private System.Windows.Forms.Button bPlay;
private System.Windows.Forms.RichTextBox logBox;
}
}
STILL CAN'T IP BAN ME, U MAD YET, BRO?!?!
See ya soon, Shitlords!

User avatar
Element_Equinox
Trustee
Offline
Posts: 243
Joined: June 18th, 2012, 2:21 am

Re: My conditions have still not been met......

Post by Element_Equinox »

Oh hello iminer987. Thanks for stopping by and once again proving that you are well deserving of your ban.
Ollieboy: I can fully understand the want for epeen so whatever.

User avatar
200419110
OP
Offline
Posts: 63
Joined: June 1st, 2011, 2:50 pm
Location: Georgia, USA

Re: My conditions have still not been met......

Post by 200419110 »

What the fuck? Stop coming here and creating drama.
+Fricksion: What if...
+Fricksion: What if Grant works for the NSA
+Fricksion: Do not trust Grant
200419110: D:
+Fricksion: Agent 200419110, do not make me say your real codename.
+Fricksion: Agent hotbabe69ladiesdude, please report.
200419110: omg

GuitarDude
Offline
Posts: 2
Joined: August 2nd, 2012, 9:07 pm

Re: My conditions have still not been met......

Post by GuitarDude »

Element_Equinox wrote:Oh hello iminer987. Thanks for stopping by and once again proving that you are well deserving of your ban.
I'm not iminer978, you asshole. I'm ThatGuy789

User avatar
Allie
Offline
Posts: 329
Joined: May 24th, 2011, 1:37 am
Location: Sealand

Re: My conditions have still not been met......

Post by Allie »

Requesting forum ban again, please :flower:
<CMB> KingCrab72: Some mixture and contrast would be nice tbh Ollie
<Ollieboy> Some mixture and contrast of your face on my penis would also be nice

User avatar
PyroPyro
Offline
Posts: 381
Joined: May 25th, 2011, 4:00 pm
Location: #fCraft
Contact:

Re: My conditions have still not been met......

Post by PyroPyro »

Bro stop making a fool of your self, you just showed us that you can use copy/paste. Good for you.
Locked.

Locked