Inital version works.

This commit is contained in:
brendan gecse 2020-09-10 03:42:47 +12:00
commit e1eb26cb6a
44 changed files with 15310 additions and 0 deletions

BIN
.vs/RustServerGUI/v16/.suo Normal file

Binary file not shown.

Binary file not shown.

BIN
.vs/batchgen/v16/.suo Normal file

Binary file not shown.

34
batchgen.sln Normal file
View File

@ -0,0 +1,34 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28729.10
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "batchgen", "batchgen\batchgen.csproj", "{A0095D27-DBAE-4C6C-8F89-C56019382864}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Debug|Any CPU.ActiveCfg = Debug|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Debug|Any CPU.Build.0 = Debug|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Debug|Mixed Platforms.Build.0 = Debug|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Debug|x86.ActiveCfg = Debug|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Debug|x86.Build.0 = Debug|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Release|Any CPU.ActiveCfg = Release|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Release|Any CPU.Build.0 = Release|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Release|Mixed Platforms.ActiveCfg = Release|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Release|Mixed Platforms.Build.0 = Release|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Release|x86.ActiveCfg = Release|x86
{A0095D27-DBAE-4C6C-8F89-C56019382864}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

709
batchgen/AddVarForm.Designer.cs generated Normal file
View File

@ -0,0 +1,709 @@
namespace batchgen
{
// Token: 0x02000003 RID: 3
public partial class AddVarForm : global::System.Windows.Forms.Form
{
// Token: 0x060000C3 RID: 195 RVA: 0x0001CAC0 File Offset: 0x0001ACC0
protected override void Dispose(bool disposing)
{
bool flag = disposing && this.components != null;
if (flag)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
// Token: 0x060000C4 RID: 196 RVA: 0x0001CAF8 File Offset: 0x0001ACF8
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddVarForm));
this.varvar = new System.Windows.Forms.TextBox();
this.varvalue = new System.Windows.Forms.TextBox();
this.BTNadd = new System.Windows.Forms.Button();
this.btncancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.SearchVar = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.label4 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.label5 = new System.Windows.Forms.Label();
this.ServerVars = new System.Windows.Forms.DataGridView();
this.Variable = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SearchVarBox = new System.Windows.Forms.TextBox();
this.panel3 = new System.Windows.Forms.Panel();
this.VarInfoLab = new System.Windows.Forms.Label();
this.BtnCompleteVars = new System.Windows.Forms.Button();
this.BtnListVarsSite = new System.Windows.Forms.Button();
this.BtnCLLearVars = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ServerVars)).BeginInit();
this.panel3.SuspendLayout();
this.SuspendLayout();
//
// varvar
//
this.varvar.Location = new System.Drawing.Point(5, 61);
this.varvar.Name = "varvar";
this.varvar.Size = new System.Drawing.Size(270, 20);
this.varvar.TabIndex = 0;
//
// varvalue
//
this.varvalue.Location = new System.Drawing.Point(281, 61);
this.varvalue.Name = "varvalue";
this.varvalue.Size = new System.Drawing.Size(156, 20);
this.varvalue.TabIndex = 0;
//
// BTNadd
//
this.BTNadd.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.BTNadd.Location = new System.Drawing.Point(281, 87);
this.BTNadd.Name = "BTNadd";
this.BTNadd.Size = new System.Drawing.Size(75, 23);
this.BTNadd.TabIndex = 1;
this.BTNadd.Text = "ADD";
this.BTNadd.UseVisualStyleBackColor = true;
this.BTNadd.Click += new System.EventHandler(this.BTNadd_Click);
//
// btncancel
//
this.btncancel.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btncancel.Location = new System.Drawing.Point(362, 87);
this.btncancel.Name = "btncancel";
this.btncancel.Size = new System.Drawing.Size(75, 23);
this.btncancel.TabIndex = 1;
this.btncancel.Text = "CANCEL";
this.btncancel.UseVisualStyleBackColor = true;
this.btncancel.Click += new System.EventHandler(this.Btncancel_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.label1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.label1.Location = new System.Drawing.Point(5, 40);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(104, 18);
this.label1.TabIndex = 2;
this.label1.Text = "VARIABLE:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.label2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.label2.Location = new System.Drawing.Point(278, 40);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(72, 18);
this.label2.TabIndex = 2;
this.label2.Text = "VALUE:";
//
// label3
//
this.label3.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.label3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.label3.Location = new System.Drawing.Point(5, 92);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(266, 18);
this.label3.TabIndex = 2;
this.label3.Text = "Example: server.radiation True";
//
// SearchVar
//
this.SearchVar.AutoCompleteCustomSource.AddRange(new string[] {
"aithinkmanager.framebudgetms",
"generate_paths",
"decayminutes",
"bear.population",
"spinfrequencyseconds",
"boar.population",
"egress_duration_minutes",
"event_duration_minutes",
"event_enabled",
"loot_round_spacing_minutes",
"loot_rounds",
"chicken.population",
"clothloddist",
"animal_ignore_food",
"frametime",
"ignoreplayers",
"move",
"nav_carve_height",
"nav_carve_min_base_size",
"nav_carve_min_building_blocks_to_apply_optimization",
"nav_carve_size_multiplier",
"nav_carve_use_building_optimization",
"npc_alertness_drain_rate",
"npc_alertness_to_aim_modifier",
"npc_alertness_zero_detection_mod",
"npc_cover_compromised_cooldown",
"npc_cover_info_tick_rate_multiplier",
"npc_cover_path_vs_straight_dist_max_diff",
"npc_cover_use_path_distance",
"npc_deliberate_hit_randomizer",
"npc_deliberate_miss_offset_multiplier",
"npc_deliberate_miss_to_hit_alignment_time",
"npc_door_trigger_size",
"npc_enable",
"npc_families_no_hurt",
"npc_gun_noise_silencer_modifier",
"npc_htn_player_base_damage_modifier",
"npc_htn_player_frustration_threshold",
"npc_ignore_chairs",
"npc_junkpile_a_spawn_chance",
"npc_junkpile_dist_aggro_gate",
"npc_junkpile_g_spawn_chance",
"npc_max_junkpile_count",
"npc_max_population_military_tunnels",
"npc_max_roam_multiplier",
"npc_only_hurt_active_target_in_safezone",
"npc_patrol_point_cooldown",
"npc_reasoning_system_tick_rate_multiplier",
"npc_respawn_delay_max_military_tunnels",
"npc_respawn_delay_min_military_tunnels",
"npc_sensory_system_tick_rate_multiplier",
"npc_spawn_on_cargo_ship",
"npc_spawn_per_tick_max_military_tunnels",
"npc_spawn_per_tick_min_military_tunnels",
"npc_speed_crouch_run",
"npc_speed_crouch_walk",
"npc_speed_run",
"npc_speed_sprint",
"npc_speed_walk",
"npc_use_new_aim_system",
"npc_use_thrown_weapons",
"npc_valid_aim_cone",
"npc_valid_mounted_aim_cone",
"ocean_patrol_path_iterations",
"sensetime",
"think",
"ai.tickrate",
"admincheat",
"debuglevel",
"enforcementlevel",
"eye_clientframes",
"eye_forgiveness",
"eye_penalty",
"eye_protection",
"eye_serverframes",
"flyhack_extrusion",
"flyhack_forgiveness_horizontal",
"flyhack_forgiveness_vertical",
"flyhack_margin",
"flyhack_maxsteps",
"flyhack_penalty",
"flyhack_protection",
"flyhack_reject",
"flyhack_stepsize",
"forceposition",
"maxdeltatime",
"maxdesync",
"maxviolation",
"melee_clientframes",
"melee_forgiveness",
"melee_penalty",
"melee_protection",
"melee_serverframes",
"modelstate",
"noclip_backtracking",
"noclip_margin",
"noclip_maxsteps",
"noclip_penalty",
"noclip_protection",
"noclip_reject",
"noclip_stepsize",
"objectplacement",
"projectile_clientframes",
"projectile_forgiveness",
"projectile_penalty",
"projectile_protection",
"projectile_serverframes",
"projectile_trajectory_horizontal",
"projectile_trajectory_vertical",
"relaxationpause",
"relaxationrate",
"reporting",
"speedhack_forgiveness",
"speedhack_penalty",
"speedhack_protection",
"speedhack_reject",
"speedhack_slopespeed",
"userlevel",
"batching.verbose",
"bradley.enabled",
"quickrespawn",
"respawndelayminutes",
"respawndelayvariance",
"chat.enabled",
"serverlog",
"frameminutes",
"instant",
"callbacks",
"checktriggers",
"disablecondition",
"bracket_0_blockcount",
"bracket_0_costfraction",
"bracket_1_blockcount",
"bracket_1_costfraction",
"bracket_2_blockcount",
"bracket_2_costfraction",
"bracket_3_blockcount",
"bracket_3_costfraction",
"decay.debug",
"delay_metal",
"delay_override",
"delay_stone",
"delay_toptier",
"delay_twig",
"delay_wood",
"duration_metal",
"duration_override",
"duration_stone",
"duration_toptier",
"duration_twig",
"duration_wood",
"outside_test_range",
"scale",
"tick",
"upkeep",
"upkeep_grief_protection",
"upkeep_heal_scale",
"upkeep_inside_decay_scale",
"upkeep_period_minutes",
"progresstime",
"gc.enabled",
"incremental_enabled",
"incremental_milliseconds",
"developer",
"maxthreads",
"halloween.enabled",
"murdererpopulation",
"scarecrow_beancan_vs_player_dmg_modifier",
"scarecrow_body_dmg_modifier",
"scarecrow_chase_stopping_distance",
"scarecrow_throw_beancan_global_delay",
"scarecrowpopulation",
"scarecrows_throw_beancans",
"visdebug",
"bulletaccuracy",
"bulletdamagescale",
"guns",
"lifetimeminutes",
"autosynctransforms",
"batchsynctransforms",
"bouncethreshold",
"droppedmode",
"gravity",
"minsteps",
"sendeffects",
"sleepthreshold",
"solveriterationcount",
"steps",
"tickrate_cl",
"tickrate_sv",
"pool.debug",
"pool.enabled",
"mode",
"hostileduration",
"targetall",
"arrowarmor",
"arrowdamage",
"authtimeout",
"bleedingarmor",
"bleedingdamage",
"bulletarmor",
"bulletdamage",
"cinematic",
"combatlogdelay",
"combatlogsize",
"compression",
"corpsedespawn",
"corpses",
"cycletime",
"debrisdespawn",
"dropitems",
"encryption",
"entitybatchsizea",
"entitybatchtime",
"entityrate",
"events",
"globalchat",
"ipqueriespermin",
"itemdespawn",
"maxcommandpacketsize",
"maxcommandspersecond",
"maxpacketsize",
"maxpacketspersecond",
"maxreceivetime",
"maxrpcspersecond",
"maxtickspersecond",
"maxunack",
"meleearmor",
"meleedamage",
"metabolismtick",
"netcache",
"netcachesize",
"netlog",
"official",
"plantlightdetection",
"planttick",
"planttickscale",
"playerserverfall",
"playertimeout",
"pve",
"queriespersecond",
"radiation",
"respawnresetrange",
"savecachesize",
"saveinterval",
"schematime",
"secure",
"showholstereditems",
"stability",
"server.tickrate",
"woundingenabled",
"max_density",
"max_rate",
"min_density",
"min_rate",
"player_scale",
"respawn_groups",
"respawn_individuals",
"respawn_populations",
"tick_individuals",
"tick_populations",
"accuracy",
"collapse",
"stabilityqueue",
"strikes",
"surroundingsqueue",
"stability.verbose",
"fixeddelta",
"maxdelta",
"pausewhileloading",
"timescale",
"global_broadcast",
"boat_corpse_seconds",
"attack",
"damage",
"hitboxes",
"lineofsight",
"protection",
"sense",
"triggers",
"weakspots",
"xmas.enabled",
"cache",
"print",
"web",
"decayseconds",
"requiredhackseconds",
"horse.population",
"hotairballoon.outsidedecayminutes",
"hotairballoon.population",
"serviceceiling",
"backtracking",
"ioentity.framebudgetms",
"responsetime",
"minicopter.outsidedecayminutes",
"minicopter.population",
"motorrowboat.outsidedecayminutes",
"motorrowboat.population",
"sleeperhostiledelay",
"forcebirthday",
"maxteamsize",
"rhibpopulation",
"ridablehorse.population",
"ai_dormant",
"ai_dormant_max_wakeup_per_tick",
"ai_htn_animal_tick_budget",
"ai_htn_player_junkpile_tick_budget",
"ai_htn_player_tick_budget",
"ai_htn_use_agency_tick",
"ai_to_player_distance_wakeup_range",
"nav_disable",
"nav_obstacles_carve_state",
"nav_wait",
"pathfindingiterationsperframe",
"cover_point_sample_step_height",
"cover_point_sample_step_size",
"alltarget",
"staticrepairseconds",
"altitudeaboveterrain",
"desiredaltitude",
"stag.population",
"wolf.population",
"zombie.population"});
this.SearchVar.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.SearchVar.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
this.SearchVar.Location = new System.Drawing.Point(1, 33);
this.SearchVar.Name = "SearchVar";
this.SearchVar.Size = new System.Drawing.Size(270, 20);
this.SearchVar.TabIndex = 0;
//
// button1
//
this.button1.Location = new System.Drawing.Point(277, 33);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(156, 20);
this.button1.TabIndex = 3;
this.button1.Text = "Add Above";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.Button1_Click);
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.varvar);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.varvalue);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.BTNadd);
this.panel1.Controls.Add(this.btncancel);
this.panel1.Location = new System.Drawing.Point(2, 218);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(443, 116);
this.panel1.TabIndex = 4;
//
// label4
//
this.label4.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.label4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.label4.Location = new System.Drawing.Point(2, 9);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(439, 18);
this.label4.TabIndex = 2;
this.label4.Text = "ADD SERVER VARIABLE";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// panel2
//
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel2.Controls.Add(this.label5);
this.panel2.Controls.Add(this.button1);
this.panel2.Controls.Add(this.SearchVar);
this.panel2.Location = new System.Drawing.Point(2, 340);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(443, 64);
this.panel2.TabIndex = 5;
//
// label5
//
this.label5.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.label5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
this.label5.Location = new System.Drawing.Point(0, 12);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(439, 18);
this.label5.TabIndex = 2;
this.label5.Text = "SEARCH SERVER VARIABLE";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// ServerVars
//
this.ServerVars.AllowUserToAddRows = false;
this.ServerVars.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.ServerVars.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.ServerVars.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Variable,
this.Value});
this.ServerVars.Location = new System.Drawing.Point(2, 2);
this.ServerVars.Name = "ServerVars";
this.ServerVars.Size = new System.Drawing.Size(443, 170);
this.ServerVars.TabIndex = 6;
//
// Variable
//
this.Variable.HeaderText = "Variable";
this.Variable.Name = "Variable";
//
// Value
//
this.Value.HeaderText = "Value";
this.Value.Name = "Value";
//
// SearchVarBox
//
this.SearchVarBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.SearchVarBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
this.SearchVarBox.Location = new System.Drawing.Point(3, 54);
this.SearchVarBox.Name = "SearchVarBox";
this.SearchVarBox.Size = new System.Drawing.Size(270, 20);
this.SearchVarBox.TabIndex = 0;
//
// panel3
//
this.panel3.BackColor = System.Drawing.Color.Indigo;
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel3.Controls.Add(this.VarInfoLab);
this.panel3.Location = new System.Drawing.Point(2, 430);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(443, 132);
this.panel3.TabIndex = 7;
//
// VarInfoLab
//
this.VarInfoLab.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.VarInfoLab.ForeColor = System.Drawing.SystemColors.Control;
this.VarInfoLab.Location = new System.Drawing.Point(-2, 0);
this.VarInfoLab.Name = "VarInfoLab";
this.VarInfoLab.Size = new System.Drawing.Size(441, 130);
this.VarInfoLab.TabIndex = 0;
this.VarInfoLab.Text = "Information about the server Vars will be displayed here.";
this.VarInfoLab.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// BtnCompleteVars
//
this.BtnCompleteVars.Location = new System.Drawing.Point(2, 178);
this.BtnCompleteVars.Name = "BtnCompleteVars";
this.BtnCompleteVars.Size = new System.Drawing.Size(75, 33);
this.BtnCompleteVars.TabIndex = 8;
this.BtnCompleteVars.Text = "COMPLETE";
this.BtnCompleteVars.UseVisualStyleBackColor = true;
this.BtnCompleteVars.Click += new System.EventHandler(this.BtnCompleteVars_Click);
//
// BtnListVarsSite
//
this.BtnListVarsSite.Location = new System.Drawing.Point(160, 179);
this.BtnListVarsSite.Name = "BtnListVarsSite";
this.BtnListVarsSite.Size = new System.Drawing.Size(119, 33);
this.BtnListVarsSite.TabIndex = 8;
this.BtnListVarsSite.Text = "Open Full Var List";
this.BtnListVarsSite.UseVisualStyleBackColor = true;
this.BtnListVarsSite.Click += new System.EventHandler(this.BtnClearVars_Click);
//
// BtnCLLearVars
//
this.BtnCLLearVars.Location = new System.Drawing.Point(368, 178);
this.BtnCLLearVars.Name = "BtnCLLearVars";
this.BtnCLLearVars.Size = new System.Drawing.Size(75, 33);
this.BtnCLLearVars.TabIndex = 8;
this.BtnCLLearVars.Text = "CLEAR";
this.BtnCLLearVars.UseVisualStyleBackColor = true;
this.BtnCLLearVars.Click += new System.EventHandler(this.Button2_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(492, 64);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(232, 193);
this.textBox1.TabIndex = 9;
//
// AddVarForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.ClientSize = new System.Drawing.Size(890, 565);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.BtnCLLearVars);
this.Controls.Add(this.BtnCompleteVars);
this.Controls.Add(this.BtnListVarsSite);
this.Controls.Add(this.panel3);
this.Controls.Add(this.ServerVars);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AddVarForm";
this.Text = "Add Custom Server Variable";
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.ServerVars)).EndInit();
this.panel3.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
// Token: 0x0400017D RID: 381
private global::System.ComponentModel.IContainer components = null;
// Token: 0x0400017E RID: 382
private global::System.Windows.Forms.TextBox varvar;
// Token: 0x0400017F RID: 383
private global::System.Windows.Forms.TextBox varvalue;
// Token: 0x04000180 RID: 384
private global::System.Windows.Forms.Button BTNadd;
// Token: 0x04000181 RID: 385
private global::System.Windows.Forms.Button btncancel;
// Token: 0x04000182 RID: 386
private global::System.Windows.Forms.Label label1;
// Token: 0x04000183 RID: 387
private global::System.Windows.Forms.Label label2;
// Token: 0x04000184 RID: 388
private global::System.Windows.Forms.Label label3;
// Token: 0x04000185 RID: 389
private global::System.Windows.Forms.TextBox SearchVar;
// Token: 0x04000186 RID: 390
private global::System.Windows.Forms.Button button1;
// Token: 0x04000187 RID: 391
private global::System.Windows.Forms.Panel panel1;
// Token: 0x04000188 RID: 392
private global::System.Windows.Forms.Label label4;
// Token: 0x04000189 RID: 393
private global::System.Windows.Forms.Panel panel2;
// Token: 0x0400018A RID: 394
private global::System.Windows.Forms.Label label5;
// Token: 0x0400018B RID: 395
private global::System.Windows.Forms.DataGridView ServerVars;
// Token: 0x0400018C RID: 396
private global::System.Windows.Forms.TextBox SearchVarBox;
// Token: 0x0400018D RID: 397
private global::System.Windows.Forms.DataGridViewTextBoxColumn Variable;
// Token: 0x0400018E RID: 398
private global::System.Windows.Forms.DataGridViewTextBoxColumn Value;
// Token: 0x0400018F RID: 399
private global::System.Windows.Forms.Panel panel3;
// Token: 0x04000190 RID: 400
private global::System.Windows.Forms.Label VarInfoLab;
// Token: 0x04000191 RID: 401
private global::System.Windows.Forms.Button BtnCompleteVars;
// Token: 0x04000192 RID: 402
private global::System.Windows.Forms.Button BtnListVarsSite;
// Token: 0x04000193 RID: 403
private global::System.Windows.Forms.Button BtnCLLearVars;
// Token: 0x04000194 RID: 404
private global::System.Windows.Forms.TextBox textBox1;
}
}

1288
batchgen/AddVarForm.cs Normal file

File diff suppressed because it is too large Load Diff

1287
batchgen/AddVarForm.resx Normal file

File diff suppressed because it is too large Load Diff

4738
batchgen/Form1.Designer.cs generated Normal file

File diff suppressed because it is too large Load Diff

5288
batchgen/Form1.cs Normal file

File diff suppressed because it is too large Load Diff

1367
batchgen/Form1.resx Normal file

File diff suppressed because it is too large Load Diff

18
batchgen/Program.cs Normal file
View File

@ -0,0 +1,18 @@
using System;
using System.Windows.Forms;
namespace batchgen
{
// Token: 0x02000004 RID: 4
internal static class Program
{
// Token: 0x060000C5 RID: 197 RVA: 0x0001E769 File Offset: 0x0001C969
[global::System.STAThread]
private static void Main()
{
global::System.Windows.Forms.Application.EnableVisualStyles();
global::System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);
global::System.Windows.Forms.Application.Run(new global::batchgen.Form1());
}
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
[assembly: global::System.Reflection.AssemblyCompany("")]
[assembly: global::System.Reflection.AssemblyConfiguration("")]
[assembly: global::System.Reflection.AssemblyCopyright("Copyright © 2020")]
[assembly: global::System.Reflection.AssemblyDescription("")]
[assembly: global::System.Reflection.AssemblyFileVersion("1.0.0.0")]
[assembly: global::System.Reflection.AssemblyProduct("batchgen")]
[assembly: global::System.Reflection.AssemblyTitle("batchgen")]
[assembly: global::System.Reflection.AssemblyTrademark("")]
[assembly: global::System.Reflection.AssemblyVersion("1.0.0.0")]
[assembly: global::System.Runtime.InteropServices.ComVisible(false)]
[assembly: global::System.Runtime.InteropServices.Guid("19c60031-b896-4ad2-a1ab-9e1d27e45d60")]

View File

@ -0,0 +1,414 @@
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Globalization;
using System.Resources;
using System.Runtime.CompilerServices;
namespace batchgen.Properties
{
// Token: 0x02000005 RID: 5
[global::System.CodeDom.Compiler.GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCode]
[global::System.Runtime.CompilerServices.CompilerGenerated]
internal class Resources
{
// Token: 0x060000C6 RID: 198 RVA: 0x0001E784 File Offset: 0x0001C984
internal Resources()
{
}
// Token: 0x17000001 RID: 1
// (get) Token: 0x060000C7 RID: 199 RVA: 0x0001E790 File Offset: 0x0001C990
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
bool flag = global::batchgen.Properties.Resources.resourceMan == null;
if (flag)
{
global::System.Resources.ResourceManager resourceManager = new global::System.Resources.ResourceManager("batchgen.Properties.Resources", typeof(global::batchgen.Properties.Resources).Assembly);
global::batchgen.Properties.Resources.resourceMan = resourceManager;
}
return global::batchgen.Properties.Resources.resourceMan;
}
}
// Token: 0x17000002 RID: 2
// (get) Token: 0x060000C8 RID: 200 RVA: 0x0001E7D8 File Offset: 0x0001C9D8
// (set) Token: 0x060000C9 RID: 201 RVA: 0x0001E7EF File Offset: 0x0001C9EF
[global::System.ComponentModel.EditorBrowsable(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return global::batchgen.Properties.Resources.resourceCulture;
}
set
{
global::batchgen.Properties.Resources.resourceCulture = value;
}
}
// Token: 0x17000003 RID: 3
// (get) Token: 0x060000CA RID: 202 RVA: 0x0001E7F8 File Offset: 0x0001C9F8
internal static global::System.Drawing.Bitmap _100_security
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("100-security", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000004 RID: 4
// (get) Token: 0x060000CB RID: 203 RVA: 0x0001E828 File Offset: 0x0001CA28
internal static global::System.Drawing.Bitmap _17701
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("17701", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000005 RID: 5
// (get) Token: 0x060000CC RID: 204 RVA: 0x0001E858 File Offset: 0x0001CA58
internal static global::System.Drawing.Bitmap _266px_Instagram_logo_2016_svg
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("266px-Instagram_logo_2016.svg", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000006 RID: 6
// (get) Token: 0x060000CD RID: 205 RVA: 0x0001E888 File Offset: 0x0001CA88
internal static global::System.Drawing.Bitmap battlemetrics
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("battlemetrics", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000007 RID: 7
// (get) Token: 0x060000CE RID: 206 RVA: 0x0001E8B8 File Offset: 0x0001CAB8
internal static global::System.Drawing.Bitmap chaoscode
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("chaoscode", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000008 RID: 8
// (get) Token: 0x060000CF RID: 207 RVA: 0x0001E8E8 File Offset: 0x0001CAE8
internal static global::System.Drawing.Bitmap corosoin_hour
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("corosoin hour", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000009 RID: 9
// (get) Token: 0x060000D0 RID: 208 RVA: 0x0001E918 File Offset: 0x0001CB18
internal static global::System.Drawing.Bitmap dicord
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("dicord", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700000A RID: 10
// (get) Token: 0x060000D1 RID: 209 RVA: 0x0001E948 File Offset: 0x0001CB48
internal static global::System.Drawing.Bitmap downloads_logomark_color_on_white_2x
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("downloads_logomark_color_on_white@2x", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700000B RID: 11
// (get) Token: 0x060000D2 RID: 210 RVA: 0x0001E978 File Offset: 0x0001CB78
internal static global::System.Drawing.Bitmap emtypreview
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("emtypreview", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700000C RID: 12
// (get) Token: 0x060000D3 RID: 211 RVA: 0x0001E9A8 File Offset: 0x0001CBA8
internal static global::System.Drawing.Bitmap fortify
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("fortify", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700000D RID: 13
// (get) Token: 0x060000D4 RID: 212 RVA: 0x0001E9D8 File Offset: 0x0001CBD8
internal static global::System.Drawing.Bitmap gamekings
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("gamekings", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700000E RID: 14
// (get) Token: 0x060000D5 RID: 213 RVA: 0x0001EA08 File Offset: 0x0001CC08
internal static global::System.Drawing.Bitmap playrustico
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("playrustico", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700000F RID: 15
// (get) Token: 0x060000D6 RID: 214 RVA: 0x0001EA38 File Offset: 0x0001CC38
internal static global::System.Drawing.Bitmap preview
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("preview", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000010 RID: 16
// (get) Token: 0x060000D7 RID: 215 RVA: 0x0001EA68 File Offset: 0x0001CC68
internal static global::System.Drawing.Bitmap rust_edit
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("rust edit", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000011 RID: 17
// (get) Token: 0x060000D8 RID: 216 RVA: 0x0001EA98 File Offset: 0x0001CC98
internal static global::System.Drawing.Bitmap rust_server_manager
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("rust server manager", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000012 RID: 18
// (get) Token: 0x060000D9 RID: 217 RVA: 0x0001EAC8 File Offset: 0x0001CCC8
internal static global::System.Drawing.Bitmap Rustadmin
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("Rustadmin", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000013 RID: 19
// (get) Token: 0x060000DA RID: 218 RVA: 0x0001EAF8 File Offset: 0x0001CCF8
internal static global::System.Drawing.Bitmap rustafied
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("rustafied", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000014 RID: 20
// (get) Token: 0x060000DB RID: 219 RVA: 0x0001EB28 File Offset: 0x0001CD28
internal static global::System.Drawing.Bitmap rustafied1
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("rustafied1", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000015 RID: 21
// (get) Token: 0x060000DC RID: 220 RVA: 0x0001EB58 File Offset: 0x0001CD58
internal static global::System.Drawing.Bitmap shell32_1001
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("shell32_1001", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000016 RID: 22
// (get) Token: 0x060000DD RID: 221 RVA: 0x0001EB88 File Offset: 0x0001CD88
internal static global::System.Drawing.Bitmap shell32_15
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("shell32_15", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000017 RID: 23
// (get) Token: 0x060000DE RID: 222 RVA: 0x0001EBB8 File Offset: 0x0001CDB8
internal static global::System.Drawing.Bitmap shell32_16783
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("shell32_16783", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000018 RID: 24
// (get) Token: 0x060000DF RID: 223 RVA: 0x0001EBE8 File Offset: 0x0001CDE8
internal static global::System.Drawing.Bitmap shell32_239
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("shell32_239", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000019 RID: 25
// (get) Token: 0x060000E0 RID: 224 RVA: 0x0001EC18 File Offset: 0x0001CE18
internal static global::System.Drawing.Bitmap shell32_24
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("shell32_24", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700001A RID: 26
// (get) Token: 0x060000E1 RID: 225 RVA: 0x0001EC48 File Offset: 0x0001CE48
internal static global::System.Drawing.Bitmap shell32_3
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("shell32_3", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700001B RID: 27
// (get) Token: 0x060000E2 RID: 226 RVA: 0x0001EC78 File Offset: 0x0001CE78
internal static global::System.Drawing.Bitmap shell32_330
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("shell32_330", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700001C RID: 28
// (get) Token: 0x060000E3 RID: 227 RVA: 0x0001ECA8 File Offset: 0x0001CEA8
internal static global::System.Drawing.Bitmap smallpreviewpage
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("smallpreviewpage", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700001D RID: 29
// (get) Token: 0x060000E4 RID: 228 RVA: 0x0001ECD8 File Offset: 0x0001CED8
internal static global::System.Drawing.Bitmap sqGFVW9__1_
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("sqGFVW9 (1)", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700001E RID: 30
// (get) Token: 0x060000E5 RID: 229 RVA: 0x0001ED08 File Offset: 0x0001CF08
internal static global::System.Drawing.Bitmap steam_cmd
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("steam cmd", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x1700001F RID: 31
// (get) Token: 0x060000E6 RID: 230 RVA: 0x0001ED38 File Offset: 0x0001CF38
internal static global::System.Drawing.Bitmap twitch
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("twitch", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000020 RID: 32
// (get) Token: 0x060000E7 RID: 231 RVA: 0x0001ED68 File Offset: 0x0001CF68
internal static global::System.Drawing.Bitmap twitter_logo_clipart_free_20
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("twitter-logo-clipart-free-20", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000021 RID: 33
// (get) Token: 0x060000E8 RID: 232 RVA: 0x0001ED98 File Offset: 0x0001CF98
internal static global::System.Drawing.Bitmap umod
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("umod", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x17000022 RID: 34
// (get) Token: 0x060000E9 RID: 233 RVA: 0x0001EDC8 File Offset: 0x0001CFC8
internal static global::System.Drawing.Bitmap youtube
{
get
{
object @object = global::batchgen.Properties.Resources.ResourceManager.GetObject("youtube", global::batchgen.Properties.Resources.resourceCulture);
return (global::System.Drawing.Bitmap)@object;
}
}
// Token: 0x04000195 RID: 405
private static global::System.Resources.ResourceManager resourceMan;
// Token: 0x04000196 RID: 406
private static global::System.Globalization.CultureInfo resourceCulture;
}
}

26
batchgen/Properties/Settings.Designer.cs generated Normal file
View File

@ -0,0 +1,26 @@
using System;
using System.CodeDom.Compiler;
using System.Configuration;
using System.Runtime.CompilerServices;
namespace batchgen.Properties
{
// Token: 0x02000006 RID: 6
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")]
[CompilerGenerated]
internal sealed partial class Settings : ApplicationSettingsBase
{
// Token: 0x17000023 RID: 35
// (get) Token: 0x060000EA RID: 234 RVA: 0x0001EDF8 File Offset: 0x0001CFF8
public static Settings Default
{
get
{
return Settings.defaultInstance;
}
}
// Token: 0x04000197 RID: 407
private static Settings defaultInstance = (Settings)SettingsBase.Synchronized(new Settings());
}
}

View File

@ -0,0 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile CurrentProfile="(Default)" GeneratedClassNamespace="batchgen.Properties" GeneratedClassName="Settings" xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings">
<Profiles />
<Settings />
</SettingsFile>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

87
batchgen/batchgen.csproj Normal file
View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{A0095D27-DBAE-4C6C-8F89-C56019382864}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>batchgen</RootNamespace>
<AssemblyName>batchgen</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ApplicationIcon>batchgen.ico</ApplicationIcon>
<StartupObject>batchgen.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="DotNetZip">
<HintPath>C:\Users\bmgje\Downloads\Ultimate Server Setup Rust - USSR! V0.3\DotNetZip.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Include="AddVarForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="AddVarForm.Designer.cs">
<DependentUpon>AddVarForm.cs</DependentUpon>
</Compile>
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.cs" />
<Compile Include="Properties\Settings.Designer.cs">
<DependentUpon>Settings.settings</DependentUpon>
<AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="AddVarForm.resx">
<DependentUpon>AddVarForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Resources\refresh.jpg" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

BIN
batchgen/batchgen.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
699bad55f404d52e4c967dfe68928e4b35faf753

View File

@ -0,0 +1,10 @@
I:\RustServerGUI\batchgen\obj\x86\Debug\batchgen.Form1.resources
I:\RustServerGUI\batchgen\obj\x86\Debug\batchgen.csproj.GenerateResource.cache
I:\RustServerGUI\batchgen\obj\x86\Debug\batchgen.csproj.CoreCompileInputs.cache
I:\RustServerGUI\batchgen\bin\Debug\batchgen.exe
I:\RustServerGUI\batchgen\bin\Debug\batchgen.pdb
I:\RustServerGUI\batchgen\bin\Debug\DotNetZip.dll
I:\RustServerGUI\batchgen\obj\x86\Debug\batchgen.csproj.CopyComplete
I:\RustServerGUI\batchgen\obj\x86\Debug\batchgen.exe
I:\RustServerGUI\batchgen\obj\x86\Debug\batchgen.pdb
I:\RustServerGUI\batchgen\obj\x86\Debug\batchgen.AddVarForm.resources

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
5d5a057ff801b25c5daa0cc3e4b82124dd956ae6

View File

@ -0,0 +1,11 @@
I:\RustServerGUI\batchgen\bin\Release\batchgen.exe
I:\RustServerGUI\batchgen\bin\Release\batchgen.pdb
I:\RustServerGUI\batchgen\bin\Release\DotNetZip.dll
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.AddVarForm.resources
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.Form1.resources
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.csproj.GenerateResource.cache
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.csproj.CoreCompileInputs.cache
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.csproj.CopyComplete
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.exe
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.pdb
I:\RustServerGUI\batchgen\obj\x86\Release\batchgen.csprojAssemblyReference.cache

Binary file not shown.

Binary file not shown.