diff --git a/Source/GrasscutterTools/FormMain.Designer.cs b/Source/GrasscutterTools/FormMain.Designer.cs
index e13964b..9dd9c86 100644
--- a/Source/GrasscutterTools/FormMain.Designer.cs
+++ b/Source/GrasscutterTools/FormMain.Designer.cs
@@ -29,7 +29,6 @@ namespace GrasscutterTools
///
private void InitializeComponent()
{
- this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
this.TxtCommand = new System.Windows.Forms.TextBox();
this.BtnCopy = new System.Windows.Forms.Button();
@@ -205,8 +204,6 @@ namespace GrasscutterTools
this.TxtHost = new System.Windows.Forms.TextBox();
this.BtnQueryServerStatus = new System.Windows.Forms.Button();
this.LblHost = new System.Windows.Forms.Label();
- this.TTip = new System.Windows.Forms.ToolTip(this.components);
- this.SCBase = new System.Windows.Forms.SplitContainer();
this.GrpCommand.SuspendLayout();
this.TCMain.SuspendLayout();
this.TPHome.SuspendLayout();
@@ -261,10 +258,6 @@ namespace GrasscutterTools
((System.ComponentModel.ISupportInitialize)(this.NUDRemotePlayerId)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.NUDVerificationCode)).BeginInit();
this.TPConsoleCheck.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.SCBase)).BeginInit();
- this.SCBase.Panel1.SuspendLayout();
- this.SCBase.Panel2.SuspendLayout();
- this.SCBase.SuspendLayout();
this.SuspendLayout();
//
// TxtCommand
@@ -1604,13 +1597,13 @@ namespace GrasscutterTools
//
// GrpServerStatus
//
- resources.ApplyResources(this.GrpServerStatus, "GrpServerStatus");
this.GrpServerStatus.Controls.Add(this.LnkOpenCommandLabel);
this.GrpServerStatus.Controls.Add(this.LblOpenCommandSupport);
this.GrpServerStatus.Controls.Add(this.LblServerVersion);
this.GrpServerStatus.Controls.Add(this.LblPlayerCount);
this.GrpServerStatus.Controls.Add(this.LblServerVersionLabel);
this.GrpServerStatus.Controls.Add(this.LblPlayerCountLabel);
+ resources.ApplyResources(this.GrpServerStatus, "GrpServerStatus");
this.GrpServerStatus.Name = "GrpServerStatus";
this.GrpServerStatus.TabStop = false;
//
@@ -1789,25 +1782,12 @@ namespace GrasscutterTools
resources.ApplyResources(this.LblHost, "LblHost");
this.LblHost.Name = "LblHost";
//
- // SCBase
- //
- resources.ApplyResources(this.SCBase, "SCBase");
- this.SCBase.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
- this.SCBase.Name = "SCBase";
- //
- // SCBase.Panel1
- //
- this.SCBase.Panel1.Controls.Add(this.TCMain);
- //
- // SCBase.Panel2
- //
- this.SCBase.Panel2.Controls.Add(this.GrpCommand);
- //
// FormMain
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.SCBase);
+ this.Controls.Add(this.TCMain);
+ this.Controls.Add(this.GrpCommand);
this.KeyPreview = true;
this.Name = "FormMain";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormMain_FormClosed);
@@ -1890,10 +1870,6 @@ namespace GrasscutterTools
((System.ComponentModel.ISupportInitialize)(this.NUDVerificationCode)).EndInit();
this.TPConsoleCheck.ResumeLayout(false);
this.TPConsoleCheck.PerformLayout();
- this.SCBase.Panel1.ResumeLayout(false);
- this.SCBase.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.SCBase)).EndInit();
- this.SCBase.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -2047,7 +2023,6 @@ namespace GrasscutterTools
private System.Windows.Forms.Label LblVerificationCode;
private System.Windows.Forms.Button BtnInvokeOpenCommand;
private System.Windows.Forms.LinkLabel LnkRCHelp;
- private System.Windows.Forms.ToolTip TTip;
private System.Windows.Forms.Label LblTpZ;
private System.Windows.Forms.Label LblTpY;
private System.Windows.Forms.Button BtnTeleport;
@@ -2075,7 +2050,6 @@ namespace GrasscutterTools
private System.Windows.Forms.TextBox TxtToken;
private System.Windows.Forms.Label LblToken;
private System.Windows.Forms.Label LblConsoleTip;
- private System.Windows.Forms.SplitContainer SCBase;
}
}
diff --git a/Source/GrasscutterTools/FormMain.cs b/Source/GrasscutterTools/FormMain.cs
index 09560f1..663d529 100644
--- a/Source/GrasscutterTools/FormMain.cs
+++ b/Source/GrasscutterTools/FormMain.cs
@@ -1004,20 +1004,20 @@ namespace GrasscutterTools
btn.Enabled = true;
}
- private const int TxtCommandRunLogMinHeight = 100;
+ private const int TxtCommandRunLogMinHeight = 150;
private TextBox TxtCommandRunLog;
private void ExpandCommandRunLog()
{
- if (SCBase.IsSplitterFixed)
+ if (GrpCommand.Height < TxtCommandRunLogMinHeight)
{
if (WindowState == FormWindowState.Maximized)
WindowState = FormWindowState.Normal;
- SCBase.FixedPanel = FixedPanel.Panel1;
+ TCMain.Anchor &= ~AnchorStyles.Bottom;
+ GrpCommand.Anchor |= AnchorStyles.Top;
Size = new Size(Width, Height + TxtCommandRunLogMinHeight);
MinimumSize = new Size(MinimumSize.Width, MinimumSize.Height + TxtCommandRunLogMinHeight);
- SCBase.Panel2MinSize += TxtCommandRunLogMinHeight;
- SCBase.FixedPanel = FixedPanel.None;
- SCBase.IsSplitterFixed = false;
+ TCMain.Anchor |= AnchorStyles.Bottom;
+ GrpCommand.Anchor &= ~AnchorStyles.Top;
}
if (TxtCommandRunLog == null)
@@ -1059,6 +1059,7 @@ namespace GrasscutterTools
}
}
+ private readonly ToolTip TTip = new ToolTip();
private void ShowTip(string message, Control control)
{
TTip.Show(message, control, 0, control.Size.Height, 3000);
diff --git a/Source/GrasscutterTools/FormMain.en-us.resx b/Source/GrasscutterTools/FormMain.en-us.resx
index d67c348..9a1cad0 100644
--- a/Source/GrasscutterTools/FormMain.en-us.resx
+++ b/Source/GrasscutterTools/FormMain.en-us.resx
@@ -136,6 +136,15 @@
Home
+
+ 74, 38
+
+
+ 158, 24
+
+
+ Have a nice time!
+
120, 23
@@ -154,15 +163,6 @@
Include UID
-
- 74, 38
-
-
- 158, 24
-
-
- Have a nice time!
-
Custom
@@ -357,10 +357,6 @@ Therefore, the quest can be add and finish, but not necessarily can be work
Spawn entity
-
-
- Bottom, Left
-
53, 17
@@ -519,6 +515,7 @@ The data may not be cleared even if the account is recreated.
Items
+
Top, Left
@@ -576,9 +573,6 @@ The data may not be cleared even if the account is recreated.
250, 208
-
- Bottom, Left
-
53, 17
@@ -829,17 +823,20 @@ Tip: Most of the scenes have no effect and cannot be entered.
Console
+
+ Connect
+
NoControl
Note that normal commands in the console state must specify the target (set include UID)
-
- Connect
+
+ 86, 36
- 167, 23
+ 200, 23
292, 36
@@ -856,4 +853,7 @@ Tip: Most of the scenes have no effect and cannot be entered.
Host
+
+ Inherit
+
\ No newline at end of file
diff --git a/Source/GrasscutterTools/FormMain.resx b/Source/GrasscutterTools/FormMain.resx
index 8435e2c..c9d4ce1 100644
--- a/Source/GrasscutterTools/FormMain.resx
+++ b/Source/GrasscutterTools/FormMain.resx
@@ -202,7 +202,7 @@
2
- Top, Bottom, Left, Right
+ Bottom, Left, Right
6, 22
@@ -229,10 +229,13 @@
0
- 12, 0
+ 12, 293
+
+
+ 610, 56
- 610, 55
+ 610, 56
3
@@ -247,14 +250,1589 @@
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
- SCBase.Panel2
+ $this
- 0
+ 1
Top, Bottom, Left, Right
+
+ LblAbout
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPHome
+
+
+ 0
+
+
+ BtnOpenTextMap
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPHome
+
+
+ 1
+
+
+ BtnOpenGachaBannerEditor
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPHome
+
+
+ 2
+
+
+ pictureBox1
+
+
+ System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPHome
+
+
+ 3
+
+
+ GrpSettings
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPHome
+
+
+ 4
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 0
+
+
+ 主页
+
+
+ TPHome
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 0
+
+
+ BtnExportCustomCommands
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 0
+
+
+ BtnLoadCustomCommands
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 1
+
+
+ LblCustomName
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 2
+
+
+ groupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 3
+
+
+ BtnRemoveCustomCommand
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 4
+
+
+ BtnSaveCustomCommand
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 5
+
+
+ TxtCustomName
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPCustom
+
+
+ 6
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 1
+
+
+ 自定义
+
+
+ TPCustom
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 1
+
+
+ BtnAddSubAttr
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 0
+
+
+ LblArtifactName
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 1
+
+
+ NUDArtifactStars
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 2
+
+
+ LblArtifactStars
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 3
+
+
+ LblArtifactPart
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 4
+
+
+ CmbArtifactPart
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 5
+
+
+ CmbArtifactSet
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 6
+
+
+ LblArtifactSet
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 7
+
+
+ LblArtifactLevelTip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 8
+
+
+ NUDSubAttributionTimes
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 9
+
+
+ CmbSubAttributionValue
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 10
+
+
+ CmbSubAttribution
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 11
+
+
+ LblClearSubAttrCheckedList
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 12
+
+
+ ListSubAttributionChecked
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 13
+
+
+ NUDArtifactLevel
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 14
+
+
+ LblArtifactLevel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 15
+
+
+ LblSubAttribution
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 16
+
+
+ CmbMainAttribution
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 17
+
+
+ LblMainAttribution
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPArtifact
+
+
+ 18
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 2
+
+
+ 圣遗物
+
+
+ TPArtifact
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 2
+
+
+ GrpQuestFilters
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 0
+
+
+ BtnFinishQuest
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 1
+
+
+ BtnAddQuest
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 2
+
+
+ LblQuestDescription
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 3
+
+
+ TxtQuestFilter
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 4
+
+
+ ListQuest
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 5
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 15
+
+
+ 任务
+
+
+ TPQuest
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 3
+
+
+ BtnSaveSpawnLog
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 0
+
+
+ BtnRemoveSpawnLog
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 1
+
+
+ GrpSpawnRecord
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 2
+
+
+ GrpEntityType
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 3
+
+
+ LblSpawnDescription
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 4
+
+
+ LblEntityAmount
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 5
+
+
+ LblEntityLevel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 6
+
+
+ NUDEntityAmout
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 7
+
+
+ NUDEntityLevel
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 8
+
+
+ TxtEntityFilter
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 9
+
+
+ ListEntity
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 10
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 6
+
+
+ 生成
+
+
+ TPSpawn
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 4
+
+
+ LblAvatarGenWarning
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAvatar
+
+
+ 0
+
+
+ ImgAvatar
+
+
+ System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAvatar
+
+
+ 1
+
+
+ LblAvatar
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAvatar
+
+
+ 2
+
+
+ LblLevel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAvatar
+
+
+ 3
+
+
+ NUDAvatarLevel
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAvatar
+
+
+ 4
+
+
+ CmbAvatar
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAvatar
+
+
+ 5
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 5
+
+
+ 角色
+
+
+ TPAvatar
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 5
+
+
+ GrpSetStats
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPStats
+
+
+ 0
+
+
+ GrpTalentLevel
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPStats
+
+
+ 1
+
+
+ LblStatsDescription
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPStats
+
+
+ 2
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 11
+
+
+ 数据
+
+
+ TPStats
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 6
+
+
+ TxtWeaponFilter
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 0
+
+
+ LblWeaponDescription
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 1
+
+
+ LblWeaponRefinement
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 2
+
+
+ LblWeaponAmount
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 3
+
+
+ LblWeaponLevel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 4
+
+
+ NUDWeaponRefinement
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 5
+
+
+ NUDWeaponAmout
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 6
+
+
+ NUDWeaponLevel
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 7
+
+
+ ListWeapons
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPWeapon
+
+
+ 8
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 3
+
+
+ 武器
+
+
+ TPWeapon
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 7
+
+
+ BtnSaveGiveItemLog
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 0
+
+
+ BtnRemoveGiveItemLog
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 1
+
+
+ GrpGiveItemRecord
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 2
+
+
+ ChkDrop
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 3
+
+
+ TxtGameItemFilter
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 4
+
+
+ ListGameItems
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 5
+
+
+ LblGameItemAmount
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 6
+
+
+ LblGameItemLevel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 7
+
+
+ NUDGameItemAmout
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 8
+
+
+ NUDGameItemLevel
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 9
+
+
+ LblGiveCommandDescription
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPItem
+
+
+ 10
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 4
+
+
+ 物品
+
+
+ TPItem
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 8
+
+
+ ChkIncludeSceneId
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 0
+
+
+ LblTp
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 1
+
+
+ LblTpZ
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 2
+
+
+ LblTpY
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 3
+
+
+ BtnTeleport
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 4
+
+
+ LblTpX
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 5
+
+
+ NUDTpZ
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 6
+
+
+ NUDTpY
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 7
+
+
+ NUDTpX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 8
+
+
+ CmbClimateType
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 9
+
+
+ LblClimateType
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 10
+
+
+ LblSceneDescription
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 11
+
+
+ ListScenes
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPScene
+
+
+ 12
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 9
+
+
+ 场景
+
+
+ TPScene
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 9
+
+
+ GrpAccount
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPManage
+
+
+ 0
+
+
+ GrpPermission
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPManage
+
+
+ 1
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 12
+
+
+ 管理
+
+
+ TPManage
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 10
+
+
+ pictureBox2
+
+
+ System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAbout
+
+
+ 0
+
+
+ LnkGithub
+
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAbout
+
+
+ 1
+
+
+ LblSupportDescription
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPAbout
+
+
+ 2
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 13
+
+
+ 关于
+
+
+ TPAbout
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 11
+
+
+ GrpServerStatus
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 0
+
+
+ GrpRemoteCommand
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 1
+
+
+ TxtHost
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 2
+
+
+ BtnQueryServerStatus
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 3
+
+
+ LblHost
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 4
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 602, 245
+
+
+ 14
+
+
+ 远程
+
+
+ TPRemoteCall
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TCMain
+
+
+ 12
+
+
+ 12, 12
+
+
+ 610, 275
+
+
+ 610, 275
+
+
+ 4
+
+
+ TCMain
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
Left
@@ -265,7 +1843,7 @@
微软雅黑, 13pt
- 88, 38
+ 88, 36
136, 24
@@ -292,7 +1870,7 @@
Bottom, Left
- 112, 126
+ 112, 122
100, 23
@@ -319,7 +1897,7 @@
Bottom, Left
- 6, 126
+ 6, 122
100, 23
@@ -352,7 +1930,7 @@
313, 6
- 283, 237
+ 283, 233
CenterImage
@@ -375,6 +1953,90 @@
Bottom, Left
+
+ CmbLanguage
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSettings
+
+
+ 0
+
+
+ LblLanguage
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSettings
+
+
+ 1
+
+
+ NUDUid
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSettings
+
+
+ 2
+
+
+ ChkIncludeUID
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSettings
+
+
+ 3
+
+
+ LblDefaultUid
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSettings
+
+
+ 4
+
+
+ 6, 151
+
+
+ 301, 88
+
+
+ 5
+
+
+ 设置
+
+
+ GrpSettings
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPHome
+
+
+ 4
+
41, 51
@@ -498,62 +2160,11 @@
4
-
- 6, 155
-
-
- 301, 88
-
-
- 5
-
-
- 设置
-
-
- GrpSettings
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPHome
-
-
- 4
-
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 0
-
-
- 主页
-
-
- TPHome
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 0
-
Bottom, Right
- 543, 220
+ 543, 216
50, 23
@@ -580,7 +2191,7 @@
Bottom, Right
- 487, 220
+ 487, 216
50, 23
@@ -610,7 +2221,7 @@
True
- 6, 223
+ 6, 219
32, 17
@@ -636,21 +2247,6 @@
Top, Bottom, Left, Right
-
- True
-
-
- Fill
-
-
- 3, 19
-
-
- 584, 186
-
-
- 0
-
FLPCustomCommands
@@ -667,7 +2263,7 @@
6, 6
- 590, 208
+ 590, 204
1
@@ -687,11 +2283,38 @@
3
+
+ True
+
+
+ Fill
+
+
+ 3, 19
+
+
+ 584, 182
+
+
+ 0
+
+
+ FLPCustomCommands
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 0
+
Bottom, Right
- 421, 220
+ 421, 216
60, 23
@@ -718,7 +2341,7 @@
Bottom, Right
- 355, 220
+ 355, 216
60, 23
@@ -745,7 +2368,7 @@
Bottom, Left, Right
- 44, 220
+ 44, 216
305, 23
@@ -765,33 +2388,6 @@
6
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 1
-
-
- 自定义
-
-
- TPCustom
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 1
-
Top
@@ -1308,36 +2904,69 @@
18
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 2
-
-
- 圣遗物
-
-
- TPArtifact
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 2
-
Bottom, Left
+
+ ChkQuestFilterTEST
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpQuestFilters
+
+
+ 0
+
+
+ ChkQuestFilterUNRELEASED
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpQuestFilters
+
+
+ 1
+
+
+ ChkQuestFilterHIDDEN
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpQuestFilters
+
+
+ 2
+
+
+ 202, 109
+
+
+ 150, 130
+
+
+ 7
+
+
+ 列表过滤
+
+
+ GrpQuestFilters
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPQuest
+
+
+ 0
+
True
@@ -1422,35 +3051,11 @@
2
-
- 202, 113
-
-
- 150, 130
-
-
- 7
-
-
- 列表过滤
-
-
- GrpQuestFilters
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPQuest
-
-
- 0
-
Bottom, Left
- 102, 220
+ 102, 216
90, 23
@@ -1477,7 +3082,7 @@
Bottom, Left
- 6, 220
+ 6, 216
90, 23
@@ -1507,7 +3112,7 @@
6, 6
- 346, 104
+ 346, 100
4
@@ -1580,33 +3185,6 @@
5
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 15
-
-
- 任务
-
-
- TPQuest
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 3
-
265, 31
@@ -1661,21 +3239,6 @@
Top, Bottom, Left
-
- Fill
-
-
- 17
-
-
- 3, 19
-
-
- 244, 166
-
-
- 9
-
ListSpawnLogs
@@ -1692,7 +3255,7 @@
9, 26
- 250, 188
+ 250, 184
8
@@ -1712,9 +3275,108 @@
2
+
+ Fill
+
+
+ 17
+
+
+ 3, 19
+
+
+ 244, 162
+
+
+ 9
+
+
+ ListSpawnLogs
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSpawnRecord
+
+
+ 0
+
Bottom, Left
+
+ RbEntityOrnament
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpEntityType
+
+
+ 0
+
+
+ RbEntityAnimal
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpEntityType
+
+
+ 1
+
+
+ RbEntityNPC
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpEntityType
+
+
+ 2
+
+
+ RbEntityMonster
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpEntityType
+
+
+ 3
+
+
+ 265, 101
+
+
+ 87, 134
+
+
+ 4
+
+
+ 列表分类
+
+
+ GrpEntityType
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPSpawn
+
+
+ 3
+
True
@@ -1823,30 +3485,6 @@
3
-
- 265, 105
-
-
- 87, 134
-
-
- 4
-
-
- 列表分类
-
-
- GrpEntityType
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPSpawn
-
-
- 3
-
Top, Bottom, Left, Right
@@ -1877,6 +3515,9 @@
4
+
+ Bottom, Left
+
True
@@ -1911,7 +3552,7 @@
True
- 99, 222
+ 99, 218
32, 17
@@ -1938,7 +3579,7 @@
Bottom, Left
- 43, 220
+ 43, 216
50, 23
@@ -1962,7 +3603,7 @@
Bottom, Left
- 137, 220
+ 137, 216
50, 23
@@ -2033,33 +3674,6 @@
10
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 6
-
-
- 生成
-
-
- TPSpawn
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 4
-
Bottom
@@ -2070,7 +3684,7 @@
微软雅黑, 9pt, style=Bold
- 111, 164
+ 111, 160
380, 51
@@ -2111,7 +3725,7 @@
0, 0, 0, 0
- 602, 164
+ 602, 160
Zoom
@@ -2138,7 +3752,7 @@
True
- 175, 221
+ 175, 217
32, 17
@@ -2168,7 +3782,7 @@
True
- 340, 221
+ 340, 217
32, 17
@@ -2195,7 +3809,7 @@
Bottom
- 378, 219
+ 378, 215
50, 23
@@ -2219,7 +3833,7 @@
Bottom
- 213, 218
+ 213, 214
121, 25
@@ -2239,36 +3853,81 @@
5
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 5
-
-
- 角色
-
-
- TPAvatar
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 5
-
None
+
+ LblStatTip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSetStats
+
+
+ 0
+
+
+ LblStatPercent
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSetStats
+
+
+ 1
+
+
+ NUDStat
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSetStats
+
+
+ 2
+
+
+ CmbStat
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpSetStats
+
+
+ 3
+
+
+ 135, 62
+
+
+ 332, 70
+
+
+ 4
+
+
+ 角色属性
+
+
+ GrpSetStats
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPStats
+
+
+ 0
+
True
@@ -2368,33 +4027,81 @@
3
-
- 135, 64
-
-
- 332, 70
-
-
- 4
-
-
- 角色属性
-
-
- GrpSetStats
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPStats
-
-
- 0
-
None
+
+ LnkTalentE
+
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpTalentLevel
+
+
+ 0
+
+
+ LnkTalentQ
+
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpTalentLevel
+
+
+ 1
+
+
+ LnkTalentNormalATK
+
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpTalentLevel
+
+
+ 2
+
+
+ NUDTalentLevel
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpTalentLevel
+
+
+ 3
+
+
+ 135, 138
+
+
+ 332, 57
+
+
+ 3
+
+
+ 技能等级
+
+
+ GrpTalentLevel
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPStats
+
+
+ 1
+
True
@@ -2497,30 +4204,6 @@
3
-
- 135, 140
-
-
- 332, 57
-
-
- 3
-
-
- 技能等级
-
-
- GrpTalentLevel
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPStats
-
-
- 1
-
True
@@ -2548,33 +4231,6 @@
2
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 11
-
-
- 数据
-
-
- TPStats
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 6
-
Top, Right
@@ -2644,7 +4300,7 @@
True
- 194, 222
+ 194, 218
56, 17
@@ -2674,7 +4330,7 @@
True
- 6, 222
+ 6, 218
32, 17
@@ -2704,7 +4360,7 @@
True
- 100, 222
+ 100, 218
32, 17
@@ -2731,7 +4387,7 @@
Bottom, Left
- 256, 220
+ 256, 216
50, 23
@@ -2755,7 +4411,7 @@
Bottom, Left
- 44, 220
+ 44, 216
50, 23
@@ -2779,7 +4435,7 @@
Bottom, Left
- 138, 220
+ 138, 216
50, 23
@@ -2826,33 +4482,6 @@
8
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 3
-
-
- 武器
-
-
- TPWeapon
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 7
-
Top, Right
@@ -2913,21 +4542,6 @@
Top, Bottom, Left, Right
-
- Fill
-
-
- 17
-
-
- 3, 19
-
-
- 293, 144
-
-
- 6
-
ListGiveItemLogs
@@ -2944,7 +4558,7 @@
10, 48
- 299, 166
+ 299, 162
5
@@ -2964,6 +4578,33 @@
2
+
+ Fill
+
+
+ 17
+
+
+ 3, 19
+
+
+ 293, 140
+
+
+ 6
+
+
+ ListGiveItemLogs
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpGiveItemRecord
+
+
+ 0
+
Bottom, Left
@@ -2971,7 +4612,7 @@
True
- 257, 221
+ 257, 217
51, 21
@@ -3045,6 +4686,9 @@
5
+
+ Bottom, Left
+
True
@@ -3079,7 +4723,7 @@
True
- 150, 222
+ 150, 218
32, 17
@@ -3106,7 +4750,7 @@
Bottom, Left
- 44, 220
+ 44, 216
100, 23
@@ -3130,7 +4774,7 @@
Bottom, Left
- 188, 220
+ 188, 216
50, 23
@@ -3178,33 +4822,6 @@
10
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 4
-
-
- 物品
-
-
- TPItem
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 8
-
True
@@ -3536,36 +5153,105 @@
12
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 9
-
-
- 场景
-
-
- TPScene
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 9
-
None
+
+ ChkAccountSetUid
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpAccount
+
+
+ 0
+
+
+ NUDAccountUid
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpAccount
+
+
+ 1
+
+
+ BtnDeleteAccount
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpAccount
+
+
+ 2
+
+
+ BtnCreateAccount
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpAccount
+
+
+ 3
+
+
+ LblAccountUserName
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpAccount
+
+
+ 4
+
+
+ TxtAccountUserName
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpAccount
+
+
+ 5
+
+
+ 31, 6
+
+
+ 540, 60
+
+
+ 0
+
+
+ 账号管理
+
+
+ GrpAccount
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPManage
+
+
+ 0
+
True
@@ -3713,33 +5399,105 @@
5
-
- 31, 8
-
-
- 540, 60
-
-
- 0
-
-
- 账号管理
-
-
- GrpAccount
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPManage
-
-
- 0
-
None
+
+ CmbPerm
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpPermission
+
+
+ 0
+
+
+ NUDPermUID
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpPermission
+
+
+ 1
+
+
+ BtmPermRemove
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpPermission
+
+
+ 2
+
+
+ BtnPermAdd
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpPermission
+
+
+ 3
+
+
+ LblPerm
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpPermission
+
+
+ 4
+
+
+ LblPermUID
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpPermission
+
+
+ 5
+
+
+ 31, 72
+
+
+ 540, 60
+
+
+ 1
+
+
+ 权限管理
+
+
+ GrpPermission
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPManage
+
+
+ 1
+
250, 21
@@ -3884,57 +5642,6 @@
5
-
- 31, 74
-
-
- 540, 60
-
-
- 1
-
-
- 权限管理
-
-
- GrpPermission
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPManage
-
-
- 1
-
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 12
-
-
- 管理
-
-
- TPManage
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 10
-
Top, Bottom, Left, Right
@@ -3945,7 +5652,7 @@
280, 280
- 140, 144
+ 140, 140
Zoom
@@ -4024,35 +5731,101 @@
2
-
- 4, 26
+
+ LnkOpenCommandLabel
-
- 3, 3, 3, 3
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 602, 245
+
+ GrpServerStatus
-
- 13
+
+ 0
-
- 关于
+
+ LblOpenCommandSupport
-
- TPAbout
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ GrpServerStatus
-
- TCMain
+
+ 1
-
- 11
+
+ LblServerVersion
-
- None
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpServerStatus
+
+
+ 2
+
+
+ LblPlayerCount
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpServerStatus
+
+
+ 3
+
+
+ LblServerVersionLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpServerStatus
+
+
+ 4
+
+
+ LblPlayerCountLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpServerStatus
+
+
+ 5
+
+
+ 363, 36
+
+
+ 200, 100
+
+
+ 4
+
+
+ 服务器状态
+
+
+ GrpServerStatus
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 0
True
@@ -4216,32 +5989,206 @@
5
-
- 363, 36
+
+ Bottom, Left
-
- 200, 100
+
+ TPOpenCommandCheck
-
- 4
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 服务器状态
+
+ GrpRemoteCommand
-
- GrpServerStatus
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
+
0
-
- None
+
+ False
+
+
+ 47, 65
+
+
+ 310, 161
+
+
+ 6
+
+
+ 远程执行
+
+
+ GrpRemoteCommand
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPRemoteCall
+
+
+ 1
+
+
+ TPPlayerCheck
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPOpenCommandCheck
+
+
+ 0
+
+
+ TPConsoleCheck
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPOpenCommandCheck
+
+
+ 1
+
+
+ Fill
+
+
+ 3, 19
+
+
+ 304, 139
+
+
+ 7
+
+
+ TPOpenCommandCheck
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GrpRemoteCommand
+
+
+ 0
+
+
+ LnkRCHelp
+
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPPlayerCheck
+
+
+ 0
+
+
+ NUDRemotePlayerId
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPPlayerCheck
+
+
+ 1
+
+
+ BtnConnectOpenCommand
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPPlayerCheck
+
+
+ 2
+
+
+ LblVerificationCode
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPPlayerCheck
+
+
+ 3
+
+
+ BtnSendVerificationCode
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPPlayerCheck
+
+
+ 4
+
+
+ NUDVerificationCode
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPPlayerCheck
+
+
+ 5
+
+
+ LblRemotePlayerId
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPPlayerCheck
+
+
+ 6
+
+
+ 4, 26
+
+
+ 3, 3, 3, 3
+
+
+ 296, 109
+
+
+ 0
+
+
+ 玩家验证
+
+
+ TPPlayerCheck
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPOpenCommandCheck
+
+
+ 0
True
@@ -4426,32 +6373,80 @@
6
-
+
+ BtnConsoleConnect
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPConsoleCheck
+
+
+ 0
+
+
+ TxtToken
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPConsoleCheck
+
+
+ 1
+
+
+ LblToken
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPConsoleCheck
+
+
+ 2
+
+
+ LblConsoleTip
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TPConsoleCheck
+
+
+ 3
+
+
4, 26
-
+
3, 3, 3, 3
-
- 296, 109
+
+ 296, 111
-
- 0
+
+ 1
-
- 玩家验证
+
+ 控制台
-
- TPPlayerCheck
+
+ TPConsoleCheck
-
+
System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TPOpenCommandCheck
-
- 0
+
+ 1
92, 82
@@ -4553,87 +6548,6 @@
3
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 296, 111
-
-
- 1
-
-
- 控制台
-
-
- TPConsoleCheck
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPOpenCommandCheck
-
-
- 1
-
-
- Fill
-
-
- 3, 19
-
-
- 304, 139
-
-
- 7
-
-
- TPOpenCommandCheck
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- GrpRemoteCommand
-
-
- 0
-
-
- False
-
-
- 47, 69
-
-
- 310, 161
-
-
- 6
-
-
- 远程执行
-
-
- GrpRemoteCommand
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TPRemoteCall
-
-
- 1
-
-
- None
-
119, 36
@@ -4655,9 +6569,6 @@
2
-
- None
-
NoControl
@@ -4685,9 +6596,6 @@
3
-
- None
-
True
@@ -4718,120 +6626,6 @@
4
-
- 4, 26
-
-
- 3, 3, 3, 3
-
-
- 602, 245
-
-
- 14
-
-
- 远程
-
-
- TPRemoteCall
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TCMain
-
-
- 12
-
-
- 12, 12
-
-
- 610, 275
-
-
- 4
-
-
- TCMain
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SCBase.Panel1
-
-
- 0
-
-
- 17, 17
-
-
- Fill
-
-
- True
-
-
- 0, 0
-
-
- Horizontal
-
-
- SCBase.Panel1
-
-
- System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SCBase
-
-
- 0
-
-
- 290
-
-
- SCBase.Panel2
-
-
- System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SCBase
-
-
- 1
-
-
- 67
-
-
- 634, 361
-
-
- 290
-
-
- 0
-
-
- SCBase
-
-
- System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 0
-
True
@@ -4856,12 +6650,6 @@
GrasscutterTools
-
- TTip
-
-
- System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
FormMain
diff --git a/Source/GrasscutterTools/FormMain.ru-ru.resx b/Source/GrasscutterTools/FormMain.ru-ru.resx
index a6a777e..ebf5495 100644
--- a/Source/GrasscutterTools/FormMain.ru-ru.resx
+++ b/Source/GrasscutterTools/FormMain.ru-ru.resx
@@ -117,15 +117,9 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
Копировать
-
-
-
548, 24
@@ -136,21 +130,12 @@
Авто
-
-
-
Выполнить(F5)
-
-
-
Команда (нажмите и удерживайте Ctrl для автоматического запуска)
-
-
-
12, 41
@@ -160,9 +145,6 @@
Желаем приятно провести время!
-
-
-
152, 122
@@ -172,54 +154,24 @@
Браузер карт
-
-
-
140, 23
Редактор баннеров
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
113, 21
Включить UID
-
-
-
-
-
-
Настройки
-
-
-
Главная
-
-
-
526, 216
@@ -229,9 +181,6 @@
Экспорт
-
-
-
450, 216
@@ -241,27 +190,15 @@
Загрузить
-
-
-
46, 17
Метка
-
-
-
-
-
-
Список
-
-
-
NoControl
@@ -275,9 +212,6 @@
x Удалить
-
-
-
268, 216
@@ -287,39 +221,21 @@
√ Сохранить
-
-
-
58, 216
204, 23
-
-
-
Кастомное
-
-
-
100, 23
+ Добавить
-
-
-
-
-
-
-
-
-
298, 41
@@ -329,30 +245,18 @@
Звезды
-
-
-
42, 17
Часть
-
-
-
321, 8
110, 25
-
-
-
-
-
-
72, 11
@@ -362,42 +266,18 @@
Артефакт
-
-
-
72, 17
21 это +20
-
-
-
-
-
-
-
-
-
-
-
-
76, 17
X Очистить
-
-
-
-
-
-
-
-
-
76, 41
@@ -407,9 +287,6 @@
Уровень
-
-
-
71, 101
@@ -419,12 +296,6 @@
Всп. Стат.
-
-
-
-
-
-
54, 71
@@ -434,143 +305,83 @@
Основ. Стат.
-
-
-
Артефакт
-
-
-
52, 21
Тест
-
-
-
102, 21
Неизданное
-
-
-
81, 21
Скрытый
-
-
-
Фильтр списка
-
-
-
Финиш
-
-
-
Добавить
-
-
-
Добавить или завершить задание
Совет: Для многих квестов требуется поддержка сценариев на стороне сервера
Поэтому квест можно добавлять и заканчивать, но не обязательно можно работать
-
-
-
-
-
-
-
-
-
Квест
-
-
-
255, 31
√ Запись
-
-
-
255, 60
× Удалить
-
-
-
234, 162
-
-
-
240, 184
Запись
-
-
-
88, 21
Орнамент
-
-
-
89, 21
Животные
-
-
-
-
-
-
82, 21
Монстры
-
-
-
255, 101
@@ -580,30 +391,18 @@
Класс
-
-
-
105, 17
Спавн существа
-
-
-
-
- Bottom, Left
-
34, 17
Кол.
-
-
-
120, 218
@@ -613,33 +412,15 @@
Ур.
-
-
-
64, 216
-
-
-
146, 216
-
-
-
-
-
-
-
-
-
Спавн
-
-
-
微软雅黑, 8pt, style=Bold
@@ -654,12 +435,6 @@
к повреждению сохранения учетной записи, что сделает невозможным игру.
Данные могут не быть удалены, даже если учетная запись будет создана заново.
-
-
-
-
-
-
109, 216
@@ -669,9 +444,6 @@
Персонаж
-
-
-
392, 216
@@ -681,54 +453,27 @@
Ур.
-
-
-
418, 214
-
-
-
186, 214
200, 25
-
-
-
Персонаж
-
-
-
43, 17
Совет
-
-
-
-
-
-
-
-
-
-
-
-
Статистика
-
-
-
299, 24
@@ -738,9 +483,6 @@
E
-
-
-
275, 24
@@ -750,9 +492,6 @@
Q
-
-
-
178, 24
@@ -762,48 +501,27 @@
Обычная ATK
-
-
-
128, 23
-
-
-
Уровень таланта
-
-
-
316, 17
Установите текущие активные данные персонажа
-
-
-
Stats
-
-
-
-
-
-
97, 17
Дайть Оружие
-
-
-
190, 218
@@ -813,18 +531,12 @@
Улучшение
-
-
-
34, 17
Кол.
-
-
-
102, 218
@@ -834,36 +546,18 @@
Ур.
-
-
-
271, 216
-
-
-
46, 216
-
-
-
134, 216
-
-
-
-
-
-
Оружие
-
-
-
Top, Left
@@ -873,9 +567,6 @@
√ Запись
-
-
-
Top, Left
@@ -885,27 +576,18 @@
× Удалить
-
-
-
Top, Bottom, Left
243, 140
-
-
-
249, 162
Запись
-
-
-
278, 217
@@ -915,9 +597,6 @@
Дроп
-
-
-
Top, Left, Right
@@ -927,9 +606,6 @@
250, 23
-
-
-
Top, Bottom, Left, Right
@@ -939,21 +615,12 @@
250, 208
-
-
-
-
- Bottom, Left
-
34, 17
Кол.
-
-
-
143, 218
@@ -963,39 +630,24 @@
Уровень
-
-
-
46, 216
90, 23
-
-
-
209, 215
-
-
-
137, 17
Дать предмет игроку
-
-
-
Предметы
-
-
-
91, 213
@@ -1005,9 +657,6 @@
Включить идентификатор сцены
-
-
-
Top, Left, Right
@@ -1029,60 +678,33 @@
Совет: Вы можете быстро телепортироваться через отметку «рыболовный крючок» на миникарте в игре.
В команде вы можете использовать ~, чтобы указать текущую позицию, и ~100, чтобы указать относительную текущую 100
-
-
-
219, 184
-
-
-
113, 184
-
-
-
10, 211
Телепорт
-
-
-
7, 184
-
-
-
239, 182
-
-
-
133, 182
-
-
-
27, 182
-
-
-
66, 61
-
-
-
6, 64
@@ -1092,9 +714,6 @@
Погода
-
-
-
Top, Left, Right
@@ -1108,33 +727,18 @@
Управление сценой
Совет: Большинство сцен не имеют эффекта и не могут быть введены.
-
-
-
-
-
-
Сцена
-
-
-
49, 21
UID
-
-
-
270, 23
-
-
-
463, 21
@@ -1144,9 +748,6 @@
Удалить
-
-
-
387, 21
@@ -1156,9 +757,6 @@
Создать
-
-
-
6, 25
@@ -1168,39 +766,24 @@
Имя игрока
-
-
-
93, 22
113, 23
-
-
-
Управление аккаунтом
-
-
-
240, 21
136, 25
-
-
-
42, 23
-
-
-
463, 22
@@ -1210,9 +793,6 @@
Удалить
-
-
-
387, 22
@@ -1222,9 +802,6 @@
Добавить
-
-
-
188, 25
@@ -1234,33 +811,18 @@
Права
-
-
-
30, 17
UID
-
-
-
Управление правами
-
-
-
Управлять
-
-
-
-
-
-
Bottom, Left
@@ -1270,9 +832,6 @@
Github - Автора программы
-
-
-
361, 102
@@ -1284,15 +843,9 @@
Спасибо:Dhar_Jinxed
-
-
-
Справка
-
-
-
13, 63
@@ -1302,27 +855,15 @@
Открытая команда
-
-
-
142, 63
-
-
-
119, 29
-
-
-
119, 46
-
-
-
27, 29
@@ -1332,9 +873,6 @@
Версия игры
-
-
-
24, 46
@@ -1344,72 +882,33 @@
Кол. игроков
-
-
-
Состояние сервера
-
-
-
60, 17
Помощь
-
-
-
-
-
-
Подключить
-
-
-
31, 17
Код
-
-
-
Отправить код
-
-
-
-
-
-
-
-
-
игрок
-
-
-
Подключить
-
-
-
-
-
-
-
-
-
微软雅黑, 8pt, style=Italic
@@ -1423,33 +922,18 @@
Обратите внимание, что обычные команды в состоянии консоли должны указывать цель
(набор содержит UID)
-
-
-
консоль
-
-
-
-
-
-
Удалить ячейку
-
-
-
86, 36
200, 23
-
-
-
292, 36
@@ -1459,31 +943,16 @@
Запрос
-
-
-
35, 17
Хост
-
-
-
Подключение к БД
-
-
-
-
-
-
GrasscutterTools - перевод Юрий Дворецкий
-
-
-
\ No newline at end of file