diff --git a/MinecraftClient/ChatBots/AutoAttack.cs b/MinecraftClient/ChatBots/AutoAttack.cs index 6b577884..526ba052 100644 --- a/MinecraftClient/ChatBots/AutoAttack.cs +++ b/MinecraftClient/ChatBots/AutoAttack.cs @@ -32,6 +32,9 @@ namespace MinecraftClient.ChatBots [TomlInlineComment("$ChatBot.AutoAttack.Interaction$")] public InteractType Interaction = InteractType.Attack; + [TomlInlineComment("$ChatBot.AutoAttack.Attack_Range$")] + public int Attack_Range = 4; + [TomlInlineComment("$ChatBot.AutoAttack.Attack_Hostile$")] public bool Attack_Hostile = true; @@ -107,6 +110,9 @@ namespace MinecraftClient.ChatBots attackHostile = Config.Attack_Hostile; attackPassive = Config.Attack_Passive; + attackRange = Config.Attack_Range; + if (attackRange < 1) attackRange = 1; + if (attackRange > 4) attackRange = 4; } public override void Initialize() diff --git a/MinecraftClient/Resources/ConfigComments/ConfigComments.Designer.cs b/MinecraftClient/Resources/ConfigComments/ConfigComments.Designer.cs index 85527b2c..76798e5a 100644 --- a/MinecraftClient/Resources/ConfigComments/ConfigComments.Designer.cs +++ b/MinecraftClient/Resources/ConfigComments/ConfigComments.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// 這段程式碼是由工具產生的。 +// 執行階段版本:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// 對這個檔案所做的變更可能會造成錯誤的行為,而且如果重新產生程式碼, +// 變更將會遺失。 // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace MinecraftClient { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// 用於查詢當地語系化字串等的強類型資源類別。 /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. + // 這個類別是自動產生的,是利用 StronglyTypedResourceBuilder + // 類別透過 ResGen 或 Visual Studio 這類工具。 + // 若要加入或移除成員,請編輯您的 .ResX 檔,然後重新執行 ResGen + // (利用 /str 選項),或重建您的 VS 專案。 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ namespace MinecraftClient { } /// - /// Returns the cached ResourceManager instance used by this class. + /// 傳回這個類別使用的快取的 ResourceManager 執行個體。 /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ namespace MinecraftClient { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// 覆寫目前執行緒的 CurrentUICulture 屬性,對象是所有 + /// 使用這個強類型資源類別的資源查閱。 /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { @@ -61,8 +61,8 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to can be used in some other fields as %yourvar% - ///%username% and %serverip% are reserved variables.. + /// 查詢類似 can be used in some other fields as %yourvar% + ///%username% and %serverip% are reserved variables. 的當地語系化字串。 /// internal static string AppVars_Variables { get { @@ -71,9 +71,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to =============================== # + /// 查詢類似 =============================== # /// Minecraft Console Client Bots # - ///=============================== #. + ///=============================== # 的當地語系化字串。 /// internal static string ChatBot { get { @@ -82,8 +82,8 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Get alerted when specified words are detected in chat - ///Useful for moderating your server or detecting when someone is talking to you. + /// 查詢類似 Get alerted when specified words are detected in chat + ///Useful for moderating your server or detecting when someone is talking to you 的當地語系化字串。 /// internal static string ChatBot_Alerts { get { @@ -92,7 +92,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Play a beep sound when a word is detected in addition to highlighting.. + /// 查詢類似 Play a beep sound when a word is detected in addition to highlighting. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Beep_Enabled { get { @@ -101,7 +101,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to List of words/strings to NOT alert you on.. + /// 查詢類似 List of words/strings to NOT alert you on. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Excludes { get { @@ -110,7 +110,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The name of a file where alers logs will be written.. + /// 查詢類似 The name of a file where alers logs will be written. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Log_File { get { @@ -119,7 +119,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Log alerts info a file.. + /// 查詢類似 Log alerts info a file. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Log_To_File { get { @@ -128,7 +128,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to List of words/strings to alert you on.. + /// 查詢類似 List of words/strings to alert you on. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Matches { get { @@ -137,7 +137,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Trigger alerts when it rains and when it stops.. + /// 查詢類似 Trigger alerts when it rains and when it stops. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Trigger_By_Rain { get { @@ -146,7 +146,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Triggers alerts at the beginning and end of thunderstorms.. + /// 查詢類似 Triggers alerts at the beginning and end of thunderstorms. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Trigger_By_Thunderstorm { get { @@ -155,7 +155,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Triggers an alert after receiving a specified keyword.. + /// 查詢類似 Triggers an alert after receiving a specified keyword. 的當地語系化字串。 /// internal static string ChatBot_Alerts_Trigger_By_Words { get { @@ -164,9 +164,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Send a command on a regular or random basis or make the bot walk around randomly to avoid automatic AFK disconnection + /// 查詢類似 Send a command on a regular or random basis or make the bot walk around randomly to avoid automatic AFK disconnection ////!\ Make sure your server rules do not forbid anti-AFK mechanisms! - ////!\ Make sure you keep the bot in an enclosure to prevent it wandering off if you're using terrain handling! (Recommended size 5x5x5). + ////!\ Make sure you keep the bot in an enclosure to prevent it wandering off if you're using terrain handling! (Recommended size 5x5x5) 的當地語系化字串。 /// internal static string ChatBot_AntiAfk { get { @@ -175,7 +175,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Command to send to the server.. + /// 查詢類似 Command to send to the server. 的當地語系化字串。 /// internal static string ChatBot_AntiAfk_Command { get { @@ -184,7 +184,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The time interval for execution. (in seconds). + /// 查詢類似 The time interval for execution. (in seconds) 的當地語系化字串。 /// internal static string ChatBot_AntiAfk_Delay { get { @@ -193,7 +193,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to sneak when sending the command.. + /// 查詢類似 Whether to sneak when sending the command. 的當地語系化字串。 /// internal static string ChatBot_AntiAfk_Use_Sneak { get { @@ -202,7 +202,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use terrain handling to enable the bot to move around.. + /// 查詢類似 Use terrain handling to enable the bot to move around. 的當地語系化字串。 /// internal static string ChatBot_AntiAfk_Use_Terrain_Handling { get { @@ -211,7 +211,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The range the bot can move around randomly (Note: the bigger the range, the slower the bot will be). + /// 查詢類似 The range the bot can move around randomly (Note: the bigger the range, the slower the bot will be) 的當地語系化字串。 /// internal static string ChatBot_AntiAfk_Walk_Range { get { @@ -220,7 +220,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How many times can the bot fail trying to move before using the command method.. + /// 查詢類似 How many times can the bot fail trying to move before using the command method. 的當地語系化字串。 /// internal static string ChatBot_AntiAfk_Walk_Retries { get { @@ -229,10 +229,10 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically attack hostile mobs around you + /// 查詢類似 Automatically attack hostile mobs around you ///You need to enable Entity Handling to use this bot ////!\ Make sure server rules allow your planned use of AutoAttack - ////!\ SERVER PLUGINS may consider AutoAttack to be a CHEAT MOD and TAKE ACTION AGAINST YOUR ACCOUNT so DOUBLE CHECK WITH SERVER RULES!. + ////!\ SERVER PLUGINS may consider AutoAttack to be a CHEAT MOD and TAKE ACTION AGAINST YOUR ACCOUNT so DOUBLE CHECK WITH SERVER RULES! 的當地語系化字串。 /// internal static string ChatBot_AutoAttack { get { @@ -241,7 +241,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Allow attacking hostile mobs.. + /// 查詢類似 Allow attacking hostile mobs. 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_Attack_Hostile { get { @@ -250,7 +250,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Allow attacking passive mobs.. + /// 查詢類似 Allow attacking passive mobs. 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_Attack_Passive { get { @@ -259,7 +259,16 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How long to wait between each attack. Set "Custom = false" to let MCC calculate it.. + /// 查詢類似 Capped between 1 to 4 的當地語系化字串。 + /// + internal static string ChatBot_AutoAttack_Attack_Range { + get { + return ResourceManager.GetString("ChatBot.AutoAttack.Attack_Range", resourceCulture); + } + } + + /// + /// 查詢類似 How long to wait between each attack. Set "Custom = false" to let MCC calculate it. 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_Cooldown_Time { get { @@ -268,7 +277,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to All entity types can be found here: https://mccteam.github.io/r/entity/#L15. + /// 查詢類似 All entity types can be found here: https://mccteam.github.io/r/entity/#L15 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_Entites_List { get { @@ -277,7 +286,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Possible values: "Interact", "Attack" (default), "InteractAt" (Interact and Attack).. + /// 查詢類似 Possible values: "Interact", "Attack" (default), "InteractAt" (Interact and Attack). 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_Interaction { get { @@ -286,7 +295,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Wether to treat the entities list as a "whitelist" or as a "blacklist".. + /// 查詢類似 Wether to treat the entities list as a "whitelist" or as a "blacklist". 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_List_Mode { get { @@ -295,7 +304,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to "single" or "multi". single target one mob per attack. multi target all mobs in range per attack. + /// 查詢類似 "single" or "multi". single target one mob per attack. multi target all mobs in range per attack 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_Mode { get { @@ -304,7 +313,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to "health" or "distance". Only needed when using single mode. + /// 查詢類似 "health" or "distance". Only needed when using single mode 的當地語系化字串。 /// internal static string ChatBot_AutoAttack_Priority { get { @@ -313,10 +322,10 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically craft items in your inventory + /// 查詢類似 Automatically craft items in your inventory ///See https://mccteam.github.io/g/bots/#auto-craft for how to use ///You need to enable Inventory Handling to use this bot - ///You should also enable Terrain and Movements if you need to use a crafting table. + ///You should also enable Terrain and Movements if you need to use a crafting table 的當地語系化字串。 /// internal static string ChatBot_AutoCraft { get { @@ -325,7 +334,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Location of the crafting table if you intended to use it. Terrain and movements must be enabled.. + /// 查詢類似 Location of the crafting table if you intended to use it. Terrain and movements must be enabled. 的當地語系化字串。 /// internal static string ChatBot_AutoCraft_CraftingTable { get { @@ -334,7 +343,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to What to do on crafting failure, "abort" or "wait".. + /// 查詢類似 What to do on crafting failure, "abort" or "wait". 的當地語系化字串。 /// internal static string ChatBot_AutoCraft_OnFailure { get { @@ -343,11 +352,11 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Recipes.Name: The name can be whatever you like and it is used to represent the recipe. + /// 查詢類似 Recipes.Name: The name can be whatever you like and it is used to represent the recipe. ///Recipes.Type: crafting table type: "player" or "table" ///Recipes.Result: the resulting item ///Recipes.Slots: All slots, counting from left to right, top to bottom. Please fill in "Null" for empty slots. - ///For the naming of the items, please see: https://mccteam.github.io/r/item/#L12. + ///For the naming of the items, please see: https://mccteam.github.io/r/item/#L12 的當地語系化字串。 /// internal static string ChatBot_AutoCraft_Recipes { get { @@ -356,11 +365,11 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Auto-digging blocks. + /// 查詢類似 Auto-digging blocks. ///You need to enable Terrain Handling to use this bot ///You can use "/digbot start" and "/digbot stop" to control the start and stop of AutoDig. ///Since MCC does not yet support accurate calculation of the collision volume of blocks, all blocks are considered as complete cubes when obtaining the position of the lookahead. - ///For the naming of the block, please see https://mccteam.github.io/r/block/#L15. + ///For the naming of the block, please see https://mccteam.github.io/r/block/#L15 的當地語系化字串。 /// internal static string ChatBot_AutoDig { get { @@ -369,7 +378,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How many seconds to wait after entering the game to start digging automatically, set to -1 to disable automatic start.. + /// 查詢類似 How many seconds to wait after entering the game to start digging automatically, set to -1 to disable automatic start. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Auto_Start_Delay { get { @@ -378,7 +387,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically switch to the appropriate tool.. + /// 查詢類似 Automatically switch to the appropriate tool. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Auto_Tool_Switch { get { @@ -387,7 +396,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Mining a block for more than "Dig_Timeout" seconds will be considered a timeout.. + /// 查詢類似 Mining a block for more than "Dig_Timeout" seconds will be considered a timeout. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Dig_Timeout { get { @@ -396,7 +405,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to drop the current tool when its durability is too low.. + /// 查詢類似 Whether to drop the current tool when its durability is too low. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Drop_Low_Durability_Tools { get { @@ -405,7 +414,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Will not use tools with less durability than this. Set to zero to disable this feature.. + /// 查詢類似 Will not use tools with less durability than this. Set to zero to disable this feature. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Durability_Limit { get { @@ -414,7 +423,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Wether to treat the blocks list as a "whitelist" or as a "blacklist".. + /// 查詢類似 Wether to treat the blocks list as a "whitelist" or as a "blacklist". 的當地語系化字串。 /// internal static string ChatBot_AutoDig_List_Type { get { @@ -423,7 +432,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to "distance" or "index", When using the "fixedpos" mode, the blocks are determined by distance to the player, or by the order in the list.. + /// 查詢類似 "distance" or "index", When using the "fixedpos" mode, the blocks are determined by distance to the player, or by the order in the list. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Location_Order { get { @@ -432,7 +441,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The position of the blocks when using "fixedpos" or "both" mode.. + /// 查詢類似 The position of the blocks when using "fixedpos" or "both" mode. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Locations { get { @@ -441,7 +450,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to output logs when digging blocks.. + /// 查詢類似 Whether to output logs when digging blocks. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Log_Block_Dig { get { @@ -450,7 +459,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to "lookat", "fixedpos" or "both". Digging the block being looked at, the block in a fixed position, or the block that needs to be all met.. + /// 查詢類似 "lookat", "fixedpos" or "both". Digging the block being looked at, the block in a fixed position, or the block that needs to be all met. 的當地語系化字串。 /// internal static string ChatBot_AutoDig_Mode { get { @@ -459,9 +468,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically drop items in inventory + /// 查詢類似 Automatically drop items in inventory ///You need to enable Inventory Handling to use this bot - ///See this file for an up-to-date list of item types you can use with this bot: https://mccteam.github.io/r/item/#L12. + ///See this file for an up-to-date list of item types you can use with this bot: https://mccteam.github.io/r/item/#L12 的當地語系化字串。 /// internal static string ChatBot_AutoDrop { get { @@ -470,7 +479,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to "include", "exclude" or "everything". Include: drop item IN the list. Exclude: drop item NOT IN the list. + /// 查詢類似 "include", "exclude" or "everything". Include: drop item IN the list. Exclude: drop item NOT IN the list 的當地語系化字串。 /// internal static string ChatBot_AutoDrop_Mode { get { @@ -479,8 +488,8 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically eat food when your Hunger value is low - ///You need to enable Inventory Handling to use this bot. + /// 查詢類似 Automatically eat food when your Hunger value is low + ///You need to enable Inventory Handling to use this bot 的當地語系化字串。 /// internal static string ChatBot_AutoEat { get { @@ -489,10 +498,10 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically catch fish using a fishing rod + /// 查詢類似 Automatically catch fish using a fishing rod ///Guide: https://mccteam.github.io/g/bots/#auto-fishing ///You can use "/fish" to control the bot manually. - ////!\ Make sure server rules allow automated farming before using this bot. + ////!\ Make sure server rules allow automated farming before using this bot 的當地語系化字串。 /// internal static string ChatBot_AutoFishing { get { @@ -501,7 +510,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Keep it as false if you have not changed it before.. + /// 查詢類似 Keep it as false if you have not changed it before. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Antidespawn { get { @@ -510,7 +519,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Switch to a new rod from inventory after the current rod is unavailable.. + /// 查詢類似 Switch to a new rod from inventory after the current rod is unavailable. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Auto_Rod_Switch { get { @@ -519,7 +528,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to start fishing automatically after entering a world.. + /// 查詢類似 Whether to start fishing automatically after entering a world. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Auto_Start { get { @@ -528,7 +537,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How soon to re-cast after successful fishing.. + /// 查詢類似 How soon to re-cast after successful fishing. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Cast_Delay { get { @@ -537,7 +546,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Will not use rods with less durability than this (full durability is 64). Set to zero to disable this feature.. + /// 查詢類似 Will not use rods with less durability than this (full durability is 64). Set to zero to disable this feature. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Durability_Limit { get { @@ -546,7 +555,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to This allows the player to change position/facing after each fish caught.. + /// 查詢類似 This allows the player to change position/facing after each fish caught. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Enable_Move { get { @@ -555,7 +564,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How long after entering the game to start fishing (seconds).. + /// 查詢類似 How long after entering the game to start fishing (seconds). 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Fishing_Delay { get { @@ -564,7 +573,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Fishing timeout (seconds). Timeout will trigger a re-cast.. + /// 查詢類似 Fishing timeout (seconds). Timeout will trigger a re-cast. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Fishing_Timeout { get { @@ -573,7 +582,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to A "stationary" hook that moves above this threshold in the Y-axis will be considered to have caught a fish.. + /// 查詢類似 A "stationary" hook that moves above this threshold in the Y-axis will be considered to have caught a fish. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Hook_Threshold { get { @@ -582,7 +591,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Used to adjust the above two thresholds, which when enabled will print the change in the position of the fishhook entity upon receipt of its movement packet.. + /// 查詢類似 Used to adjust the above two thresholds, which when enabled will print the change in the position of the fishhook entity upon receipt of its movement packet. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Log_Fish_Bobber { get { @@ -591,7 +600,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use the mainhand or the offhand to hold the rod.. + /// 查詢類似 Use the mainhand or the offhand to hold the rod. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Mainhand { get { @@ -600,7 +609,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to It will move in order "1->2->3->4->3->2->1->2->..." and can change position or facing or both each time. It is recommended to change the facing only.. + /// 查詢類似 It will move in order "1->2->3->4->3->2->1->2->..." and can change position or facing or both each time. It is recommended to change the facing only. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Movements { get { @@ -609,7 +618,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Hook movement in the X and Z axis less than this value will be considered stationary.. + /// 查詢類似 Hook movement in the X and Z axis less than this value will be considered stationary. 的當地語系化字串。 /// internal static string ChatBot_AutoFishing_Stationary_Threshold { get { @@ -618,8 +627,8 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically relog when disconnected by server, for example because the server is restating - ////!\ Use Ignore_Kick_Message=true at own risk! Server staff might not appreciate if you auto-relog on manual kicks. + /// 查詢類似 Automatically relog when disconnected by server, for example because the server is restating + ////!\ Use Ignore_Kick_Message=true at own risk! Server staff might not appreciate if you auto-relog on manual kicks 的當地語系化字串。 /// internal static string ChatBot_AutoRelog { get { @@ -628,7 +637,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The delay time before joining the server. (in seconds). + /// 查詢類似 The delay time before joining the server. (in seconds) 的當地語系化字串。 /// internal static string ChatBot_AutoRelog_Delay { get { @@ -637,7 +646,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to When set to true, autorelog will reconnect regardless of kick messages.. + /// 查詢類似 When set to true, autorelog will reconnect regardless of kick messages. 的當地語系化字串。 /// internal static string ChatBot_AutoRelog_Ignore_Kick_Message { get { @@ -646,7 +655,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to If the kickout message matches any of the strings, then autorelog will be triggered.. + /// 查詢類似 If the kickout message matches any of the strings, then autorelog will be triggered. 的當地語系化字串。 /// internal static string ChatBot_AutoRelog_Kick_Messages { get { @@ -655,7 +664,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Retries when failing to relog to the server. use -1 for unlimited retries.. + /// 查詢類似 Retries when failing to relog to the server. use -1 for unlimited retries. 的當地語系化字串。 /// internal static string ChatBot_AutoRelog_Retries { get { @@ -664,9 +673,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Run commands or send messages automatically when a specified pattern is detected in chat + /// 查詢類似 Run commands or send messages automatically when a specified pattern is detected in chat ///Server admins can spoof chat messages (/nick, /tellraw) so keep this in mind when implementing AutoRespond rules - ////!\ This bot may get spammy depending on your rules, although the global messagecooldown setting can help you avoiding accidental spam. + ////!\ This bot may get spammy depending on your rules, although the global messagecooldown setting can help you avoiding accidental spam 的當地語系化字串。 /// internal static string ChatBot_AutoRespond { get { @@ -675,7 +684,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Do not remove colors from text (Note: Your matches will have to include color codes (ones using the § character) in order to work). + /// 查詢類似 Do not remove colors from text (Note: Your matches will have to include color codes (ones using the § character) in order to work) 的當地語系化字串。 /// internal static string ChatBot_AutoRespond_Match_Colors { get { @@ -684,7 +693,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Logs chat messages in a file on disk.. + /// 查詢類似 Logs chat messages in a file on disk. 的當地語系化字串。 /// internal static string ChatBot_ChatLog { get { @@ -693,12 +702,12 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to This bot allows you to send and recieve messages and commands via a Discord channel. + /// 查詢類似 This bot allows you to send and recieve messages and commands via a Discord channel. ///For Setup you can either use the documentation or read here (Documentation has images). ///Documentation: https://mccteam.github.io/g/bots/#discord-bridge ///Setup: ///First you need to create a Bot on the Discord Developers Portal, here is a video tutorial: https://www.youtube.com/watch?v=2FgMnZViNPA . - ////!\ IMPORTANT /!\: When creating a bot, you MUST ENABLE "Message Content Intent", "Server Members Intent" and "Presence Intent [rest of string was truncated]";. + ////!\ IMPORTANT /!\: When creating a bot, you MUST ENABLE "Message Content Intent", "Server Members Intent" and "Presence Intent [字串的其餘部分已遭截斷]"; 的當地語系化字串。 /// internal static string ChatBot_DiscordBridge { get { @@ -707,7 +716,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The ID of a channel where you want to interact with the MCC using the bot.. + /// 查詢類似 The ID of a channel where you want to interact with the MCC using the bot. 的當地語系化字串。 /// internal static string ChatBot_DiscordBridge_ChannelId { get { @@ -716,10 +725,10 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Message formats + /// 查詢類似 Message formats ///Words wrapped with { and } are going to be replaced during the code execution, do not change them! ///For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time. - ///For Discord message formatting, check the following: https://mccteam.github.io/r/dc-fmt.html. + ///For Discord message formatting, check the following: https://mccteam.github.io/r/dc-fmt.html 的當地語系化字串。 /// internal static string ChatBot_DiscordBridge_Formats { get { @@ -728,7 +737,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The ID of a server/guild where you have invited the bot to.. + /// 查詢類似 The ID of a server/guild where you have invited the bot to. 的當地語系化字串。 /// internal static string ChatBot_DiscordBridge_GuildId { get { @@ -737,7 +746,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How long to wait (in seconds) if a message can not be sent to discord before canceling the task (minimum 1 second).. + /// 查詢類似 How long to wait (in seconds) if a message can not be sent to discord before canceling the task (minimum 1 second). 的當地語系化字串。 /// internal static string ChatBot_DiscordBridge_MessageSendTimeout { get { @@ -746,7 +755,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to A list of IDs of people you want to be able to interact with the MCC using the bot.. + /// 查詢類似 A list of IDs of people you want to be able to interact with the MCC using the bot. 的當地語系化字串。 /// internal static string ChatBot_DiscordBridge_OwnersIds { get { @@ -755,7 +764,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Your Discord Bot token.. + /// 查詢類似 Your Discord Bot token. 的當地語系化字串。 /// internal static string ChatBot_DiscordBridge_Token { get { @@ -764,11 +773,11 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically farms crops for you (plants, breaks and bonemeals them). + /// 查詢類似 Automatically farms crops for you (plants, breaks and bonemeals them). ///Crop types available: Beetroot, Carrot, Melon, Netherwart, Pumpkin, Potato, Wheat. ///Usage: "/farmer start" command and "/farmer stop" command. ///NOTE: This a newly added bot, it is not perfect and was only tested in 1.19.2, there are some minor issues like not being able to bonemeal carrots/potatoes sometimes. - ///or bot jumps onto the farm land and breaks it (this happens rarely but still happens). We are looking forward at improving this. [rest of string was truncated]";. + ///or bot jumps onto the farm land and breaks it (this happens rarely but still happens). We are looking forward at improving this. [字串的其餘部分已遭截斷]"; 的當地語系化字串。 /// internal static string ChatBot_Farmer { get { @@ -777,7 +786,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Delay between tasks in seconds (Minimum 1 second). + /// 查詢類似 Delay between tasks in seconds (Minimum 1 second) 的當地語系化字串。 /// internal static string ChatBot_Farmer_Delay_Between_Tasks { get { @@ -786,11 +795,11 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Enabled you to make the bot follow you + /// 查詢類似 Enabled you to make the bot follow you ///NOTE: This is an experimental feature, the bot can be slow at times, you need to walk with a normal speed and to sometimes stop for it to be able to keep up with you ///It's similar to making animals follow you when you're holding food in your hand. ///This is due to a slow pathfinding algorithm, we're working on getting a better one - ///You can tweak the update limit and find what works best for you. (NOTE: Do not but a very low one, because you might achieve the opposite, /// [rest of string was truncated]";. + ///You can tweak the update limit and find what works best for you. (NOTE: Do not but a very low one, because you might achieve the opposite, /// [字串的其餘部分已遭截斷]"; 的當地語系化字串。 /// internal static string ChatBot_FollowPlayer { get { @@ -799,7 +808,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Do not follow the player if he is in the range of 3 blocks (prevents the bot from pushing a player in an infinite loop). + /// 查詢類似 Do not follow the player if he is in the range of 3 blocks (prevents the bot from pushing a player in an infinite loop) 的當地語系化字串。 /// internal static string ChatBot_FollowPlayer_Stop_At_Distance { get { @@ -808,7 +817,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The rate at which the bot does calculations (in seconds) (You can tweak this if you feel the bot is too slow). + /// 查詢類似 The rate at which the bot does calculations (in seconds) (You can tweak this if you feel the bot is too slow) 的當地語系化字串。 /// internal static string ChatBot_FollowPlayer_Update_Limit { get { @@ -817,9 +826,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to A small game to demonstrate chat interactions. Players can guess mystery words one letter at a time. + /// 查詢類似 A small game to demonstrate chat interactions. Players can guess mystery words one letter at a time. ///You need to have ChatFormat working correctly and add yourself in botowners to start the game with /tell <bot username> start - ////!\ This bot may get a bit spammy if many players are interacting with it. + ////!\ This bot may get a bit spammy if many players are interacting with it 的當地語系化字串。 /// internal static string ChatBot_HangmanGame { get { @@ -828,9 +837,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Relay messages between players and servers, like a mail plugin + /// 查詢類似 Relay messages between players and servers, like a mail plugin ///This bot can store messages when the recipients are offline, and send them when they join the server - ////!\ Server admins can spoof PMs (/tellraw, /nick) so enable this bot only if you trust server admins. + ////!\ Server admins can spoof PMs (/tellraw, /nick) so enable this bot only if you trust server admins 的當地語系化字串。 /// internal static string ChatBot_Mailer { get { @@ -839,12 +848,12 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Allows you to render maps in the console and into images (which can be then sent to Discord using Discord Bridge Chat Bot) + /// 查詢類似 Allows you to render maps in the console and into images (which can be then sent to Discord using Discord Bridge Chat Bot) ///This is useful for solving captchas which use maps ///The maps are rendered into Rendered_Maps folder if the Save_To_File is enabled. ///NOTE: ///If some servers have a very short time for solving captchas, enabe Auto_Render_On_Update to see them immediatelly in the console. - ////!\ Make sure server rules allow bots to be used on the server, or you risk being punished.. + ////!\ Make sure server rules allow bots to be used on the server, or you risk being punished. 的當地語系化字串。 /// internal static string ChatBot_Map { get { @@ -853,7 +862,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Automatically render the map once it is received or updated from/by the server. + /// 查詢類似 Automatically render the map once it is received or updated from/by the server 的當地語系化字串。 /// internal static string ChatBot_Map_Auto_Render_On_Update { get { @@ -862,7 +871,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Delete all rendered maps on unload/reload or when you launch the MCC again.. + /// 查詢類似 Delete all rendered maps on unload/reload or when you launch the MCC again. 的當地語系化字串。 /// internal static string ChatBot_Map_Delete_All_On_Unload { get { @@ -871,7 +880,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Get a notification when you have gotten a map from the server for the first time. + /// 查詢類似 Get a notification when you have gotten a map from the server for the first time 的當地語系化字串。 /// internal static string ChatBot_Map_Notify_On_First_Update { get { @@ -880,7 +889,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Resize an rendered image, this is useful when images that are rendered are small and when are being sent to Discord.. + /// 查詢類似 Resize an rendered image, this is useful when images that are rendered are small and when are being sent to Discord. 的當地語系化字串。 /// internal static string ChatBot_Map_Rasize_Rendered_Image { get { @@ -889,7 +898,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to render the map in the console.. + /// 查詢類似 Whether to render the map in the console. 的當地語系化字串。 /// internal static string ChatBot_Map_Render_In_Console { get { @@ -898,7 +907,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The size that a rendered image should be resized to, in pixels (eg. 512).. + /// 查詢類似 The size that a rendered image should be resized to, in pixels (eg. 512). 的當地語系化字串。 /// internal static string ChatBot_Map_Resize_To { get { @@ -907,7 +916,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to store the rendered map as a file (You need this setting if you want to get a map on Discord using Discord Bridge).. + /// 查詢類似 Whether to store the rendered map as a file (You need this setting if you want to get a map on Discord using Discord Bridge). 的當地語系化字串。 /// internal static string ChatBot_Map_Save_To_File { get { @@ -916,9 +925,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Send a rendered map (saved to a file) to a Discord or a Telegram channel via the Discord or Telegram Bride chat bot (The Discord/Telegram Bridge chat bot must be enabled and configured!) + /// 查詢類似 Send a rendered map (saved to a file) to a Discord or a Telegram channel via the Discord or Telegram Bride chat bot (The Discord/Telegram Bridge chat bot must be enabled and configured!) ///You need to enable Save_To_File in order for this to work. - ///We also recommend turning on resizing.. + ///We also recommend turning on resizing. 的當地語系化字串。 /// internal static string ChatBot_Map_Send_Rendered_To_Bridges { get { @@ -927,7 +936,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Log the list of players periodically into a textual file.. + /// 查詢類似 Log the list of players periodically into a textual file. 的當地語系化字串。 /// internal static string ChatBot_PlayerListLogger { get { @@ -936,7 +945,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to (In seconds). + /// 查詢類似 (In seconds) 的當地語系化字串。 /// internal static string ChatBot_PlayerListLogger_Delay { get { @@ -945,9 +954,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Send MCC console commands to your bot through server PMs (/tell) + /// 查詢類似 Send MCC console commands to your bot through server PMs (/tell) ///You need to have ChatFormat working correctly and add yourself in botowners to use the bot - ////!\ Server admins can spoof PMs (/tellraw, /nick) so enable RemoteControl only if you trust server admins. + ////!\ Server admins can spoof PMs (/tellraw, /nick) so enable RemoteControl only if you trust server admins 的當地語系化字串。 /// internal static string ChatBot_RemoteControl { get { @@ -956,9 +965,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Enable recording of the game (/replay start) and replay it later using the Replay Mod (https://www.replaymod.com/) + /// 查詢類似 Enable recording of the game (/replay start) and replay it later using the Replay Mod (https://www.replaymod.com/) ///Please note that due to technical limitations, the client player (you) will not be shown in the replay file - ////!\ You SHOULD use /replay stop or exit the program gracefully with /quit OR THE REPLAY FILE MAY GET CORRUPT!. + ////!\ You SHOULD use /replay stop or exit the program gracefully with /quit OR THE REPLAY FILE MAY GET CORRUPT! 的當地語系化字串。 /// internal static string ChatBot_ReplayCapture { get { @@ -967,7 +976,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How long should replay file be auto-saved, in seconds. Use -1 to disable.. + /// 查詢類似 How long should replay file be auto-saved, in seconds. Use -1 to disable. 的當地語系化字串。 /// internal static string ChatBot_ReplayCapture_Backup_Interval { get { @@ -976,8 +985,8 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Schedule commands and scripts to launch on various events such as server join, date/time or time interval - ///See https://mccteam.github.io/g/bots/#script-scheduler for more info. + /// 查詢類似 Schedule commands and scripts to launch on various events such as server join, date/time or time interval + ///See https://mccteam.github.io/g/bots/#script-scheduler for more info 的當地語系化字串。 /// internal static string ChatBot_ScriptScheduler { get { @@ -986,12 +995,12 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to This bot allows you to send and receive messages and commands via a Telegram Bot DM or to receive messages in a Telegram channel. + /// 查詢類似 This bot allows you to send and receive messages and commands via a Telegram Bot DM or to receive messages in a Telegram channel. ////!\ NOTE: You can't send messages and commands from a group channel, you can only send them in the bot DM, but you can get the messages from the client in a group channel. ///----------------------------------------------------------- ///Setup: ///First you need to create a Telegram bot and obtain an API key, to do so, go to Telegram and find @botfather - ///Click on "Start" button and re [rest of string was truncated]";. + ///Click on "Start" button and re [字串的其餘部分已遭截斷]"; 的當地語系化字串。 /// internal static string ChatBot_TelegramBridge { get { @@ -1000,7 +1009,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to A list of Chat IDs that are allowed to send messages and execute commands. To get an id of your chat DM with the bot use ".chatid" bot command in Telegram.. + /// 查詢類似 A list of Chat IDs that are allowed to send messages and execute commands. To get an id of your chat DM with the bot use ".chatid" bot command in Telegram. 的當地語系化字串。 /// internal static string ChatBot_TelegramBridge_Authorized_Chat_Ids { get { @@ -1009,7 +1018,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to An ID of a channel where you want to interact with the MCC using the bot.. + /// 查詢類似 An ID of a channel where you want to interact with the MCC using the bot. 的當地語系化字串。 /// internal static string ChatBot_TelegramBridge_ChannelId { get { @@ -1018,10 +1027,10 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Message formats + /// 查詢類似 Message formats ///Words wrapped with { and } are going to be replaced during the code execution, do not change them! ///For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time. - ///For Telegram message formatting, check the following: https://mccteam.github.io/r/tg-fmt.html. + ///For Telegram message formatting, check the following: https://mccteam.github.io/r/tg-fmt.html 的當地語系化字串。 /// internal static string ChatBot_TelegramBridge_Formats { get { @@ -1030,7 +1039,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How long to wait (in seconds) if a message can not be sent to Telegram before canceling the task (minimum 1 second).. + /// 查詢類似 How long to wait (in seconds) if a message can not be sent to Telegram before canceling the task (minimum 1 second). 的當地語系化字串。 /// internal static string ChatBot_TelegramBridge_MessageSendTimeout { get { @@ -1039,7 +1048,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Your Telegram Bot token.. + /// 查詢類似 Your Telegram Bot token. 的當地語系化字串。 /// internal static string ChatBot_TelegramBridge_Token { get { @@ -1048,8 +1057,8 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to MCC does it best to detect chat messages, but some server have unusual chat formats - ///When this happens, you'll need to configure chat format below, see https://mccteam.github.io/g/conf/#chat-format-section. + /// 查詢類似 MCC does it best to detect chat messages, but some server have unusual chat formats + ///When this happens, you'll need to configure chat format below, see https://mccteam.github.io/g/conf/#chat-format-section 的當地語系化字串。 /// internal static string ChatFormat { get { @@ -1058,7 +1067,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to MCC support for common message formats. Set "false" to avoid conflicts with custom formats.. + /// 查詢類似 MCC support for common message formats. Set "false" to avoid conflicts with custom formats. 的當地語系化字串。 /// internal static string ChatFormat_Builtins { get { @@ -1067,7 +1076,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to use the custom regular expressions below for detection.. + /// 查詢類似 Whether to use the custom regular expressions below for detection. 的當地語系化字串。 /// internal static string ChatFormat_UserDefined { get { @@ -1076,11 +1085,11 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Startup Config File + /// 查詢類似 Startup Config File ///Please do not record extraneous data in this file as it will be overwritten by MCC. /// ///New to Minecraft Console Client? Check out this document: https://mccteam.github.io/g/conf.html - ///Want to upgrade to a newer version? See https://github.com/MCCTeam/Minecraft-Console-Client/#download. + ///Want to upgrade to a newer version? See https://github.com/MCCTeam/Minecraft-Console-Client/#download 的當地語系化字串。 /// internal static string Head { get { @@ -1089,7 +1098,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to This setting affects only the messages in the console.. + /// 查詢類似 This setting affects only the messages in the console. 的當地語系化字串。 /// internal static string Logging { get { @@ -1098,7 +1107,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Regex for filtering chat message.. + /// 查詢類似 Regex for filtering chat message. 的當地語系化字串。 /// internal static string Logging_ChatFilter { get { @@ -1107,7 +1116,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Show server chat messages.. + /// 查詢類似 Show server chat messages. 的當地語系化字串。 /// internal static string Logging_ChatMessages { get { @@ -1116,7 +1125,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Regex for filtering debug message.. + /// 查詢類似 Regex for filtering debug message. 的當地語系化字串。 /// internal static string Logging_DebugFilter { get { @@ -1125,7 +1134,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Please enable this before submitting bug reports. Thanks!. + /// 查詢類似 Please enable this before submitting bug reports. Thanks! 的當地語系化字串。 /// internal static string Logging_DebugMessages { get { @@ -1134,7 +1143,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Show error messages.. + /// 查詢類似 Show error messages. 的當地語系化字串。 /// internal static string Logging_ErrorMessages { get { @@ -1143,7 +1152,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to "disable" or "blacklist" OR "whitelist". Blacklist hide message match regex. Whitelist show message match regex.. + /// 查詢類似 "disable" or "blacklist" OR "whitelist". Blacklist hide message match regex. Whitelist show message match regex. 的當地語系化字串。 /// internal static string Logging_FilterMode { get { @@ -1152,7 +1161,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Informative messages. (i.e Most of the message from MCC). + /// 查詢類似 Informative messages. (i.e Most of the message from MCC) 的當地語系化字串。 /// internal static string Logging_InfoMessages { get { @@ -1161,7 +1170,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Log file name.. + /// 查詢類似 Log file name. 的當地語系化字串。 /// internal static string Logging_LogFile { get { @@ -1170,7 +1179,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Write log messages to file.. + /// 查詢類似 Write log messages to file. 的當地語系化字串。 /// internal static string Logging_LogToFile { get { @@ -1179,7 +1188,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Prepend timestamp to messages in log file.. + /// 查詢類似 Prepend timestamp to messages in log file. 的當地語系化字串。 /// internal static string Logging_PrependTimestamp { get { @@ -1188,7 +1197,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Keep color codes in the saved text.(look like "§b"). + /// 查詢類似 Keep color codes in the saved text.(look like "§b") 的當地語系化字串。 /// internal static string Logging_SaveColorCodes { get { @@ -1197,7 +1206,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Show warning messages.. + /// 查詢類似 Show warning messages. 的當地語系化字串。 /// internal static string Logging_WarningMessages { get { @@ -1206,7 +1215,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Make sure you understand what each setting does before changing anything!. + /// 查詢類似 Make sure you understand what each setting does before changing anything! 的當地語系化字串。 /// internal static string Main_Advanced { get { @@ -1215,8 +1224,8 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to AccountList: It allows a fast account switching without directly using the credentials - ///Usage examples: "/tell <mybot> reco Player2", "/connect <serverip> Player1". + /// 查詢類似 AccountList: It allows a fast account switching without directly using the credentials + ///Usage examples: "/tell <mybot> reco Player2", "/connect <serverip> Player1" 的當地語系化字串。 /// internal static string Main_Advanced_account_list { get { @@ -1225,7 +1234,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Toggle auto respawn if client player was dead (make sure your spawn point is safe).. + /// 查詢類似 Toggle auto respawn if client player was dead (make sure your spawn point is safe). 的當地語系化字串。 /// internal static string Main_Advanced_auto_respawn { get { @@ -1234,7 +1243,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Set the owner of the bot. /!\ Server admins can impersonate owners!. + /// 查詢類似 Set the owner of the bot. /!\ Server admins can impersonate owners! 的當地語系化字串。 /// internal static string Main_Advanced_bot_owners { get { @@ -1243,7 +1252,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use "mcc", "vanilla" or "none". This is how MCC identifies itself to the server.. + /// 查詢類似 Use "mcc", "vanilla" or "none". This is how MCC identifies itself to the server. 的當地語系化字串。 /// internal static string Main_Advanced_brand_info { get { @@ -1252,7 +1261,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Leave empty for no logfile.. + /// 查詢類似 Leave empty for no logfile. 的當地語系化字串。 /// internal static string Main_Advanced_chatbot_log_file { get { @@ -1261,7 +1270,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to If turned off, the emoji will be replaced with a simpler character (for /chunk status).. + /// 查詢類似 If turned off, the emoji will be replaced with a simpler character (for /chunk status). 的當地語系化字串。 /// internal static string Main_Advanced_enable_emoji { get { @@ -1270,7 +1279,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Toggle entity handling.. + /// 查詢類似 Toggle entity handling. 的當地語系化字串。 /// internal static string Main_Advanced_entity_handling { get { @@ -1279,7 +1288,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to exit directly when an error occurs, for using MCC in non-interactive scripts.. + /// 查詢類似 Whether to exit directly when an error occurs, for using MCC in non-interactive scripts. 的當地語系化字串。 /// internal static string Main_Advanced_exit_on_failure { get { @@ -1288,7 +1297,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use "none", "slash"(/) or "backslash"(\).. + /// 查詢類似 Use "none", "slash"(/) or "backslash"(\). 的當地語系化字串。 /// internal static string Main_Advanced_internal_cmd_char { get { @@ -1297,7 +1306,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Toggle inventory handling.. + /// 查詢類似 Toggle inventory handling. 的當地語系化字串。 /// internal static string Main_Advanced_inventory_handling { get { @@ -1306,7 +1315,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Fill in with in-game locale code, check https://mccteam.github.io/r/l-code.html. + /// 查詢類似 Fill in with in-game locale code, check https://mccteam.github.io/r/l-code.html 的當地語系化字串。 /// internal static string Main_Advanced_language { get { @@ -1315,7 +1324,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Load translations applied to MCC when available, turn it off to use English only.. + /// 查詢類似 Load translations applied to MCC when available, turn it off to use English only. 的當地語系化字串。 /// internal static string Main_Advanced_LoadMccTrans { get { @@ -1324,7 +1333,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use "auto", "no" or "force". Force-enabling only works for MC 1.13+.. + /// 查詢類似 Use "auto", "no" or "force". Force-enabling only works for MC 1.13+. 的當地語系化字串。 /// internal static string Main_Advanced_mc_forge { get { @@ -1333,7 +1342,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use "auto" or "1.X.X" values. Allows to skip server info retrieval.. + /// 查詢類似 Use "auto" or "1.X.X" values. Allows to skip server info retrieval. 的當地語系化字串。 /// internal static string Main_Advanced_mc_version { get { @@ -1342,7 +1351,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Controls the minimum interval (in seconds) between sending each message to the server.. + /// 查詢類似 Controls the minimum interval (in seconds) between sending each message to the server. 的當地語系化字串。 /// internal static string Main_Advanced_message_cooldown { get { @@ -1351,7 +1360,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Enable support for joining Minecraft Realms worlds.. + /// 查詢類似 Enable support for joining Minecraft Realms worlds. 的當地語系化字串。 /// internal static string Main_Advanced_minecraft_realms { get { @@ -1360,7 +1369,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The minimum height to use when calculating the image size from the height of the terminal.. + /// 查詢類似 The minimum height to use when calculating the image size from the height of the terminal. 的當地語系化字串。 /// internal static string Main_Advanced_MinTerminalHeight { get { @@ -1369,7 +1378,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The minimum width used when calculating the image size from the width of the terminal.. + /// 查詢類似 The minimum width used when calculating the image size from the width of the terminal. 的當地語系化字串。 /// internal static string Main_Advanced_MinTerminalWidth { get { @@ -1378,7 +1387,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Enable head movement while walking to avoid anti-cheat triggers.. + /// 查詢類似 Enable head movement while walking to avoid anti-cheat triggers. 的當地語系化字串。 /// internal static string Main_Advanced_move_head_while_walking { get { @@ -1387,7 +1396,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to A movement speed higher than 2 may be considered cheating.. + /// 查詢類似 A movement speed higher than 2 may be considered cheating. 的當地語系化字串。 /// internal static string Main_Advanced_movement_speed { get { @@ -1396,7 +1405,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Only works on Windows XP-8 or Windows 10 with old console.. + /// 查詢類似 Only works on Windows XP-8 or Windows 10 with old console. 的當地語系化字串。 /// internal static string Main_Advanced_player_head_icon { get { @@ -1405,7 +1414,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to For remote control of the bot.. + /// 查詢類似 For remote control of the bot. 的當地語系化字串。 /// internal static string Main_Advanced_private_msgs_cmd_name { get { @@ -1414,7 +1423,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How to retain profile key. Use "none", "memory" or "disk".. + /// 查詢類似 How to retain profile key. Use "none", "memory" or "disk". 的當地語系化字串。 /// internal static string Main_Advanced_profilekey_cache { get { @@ -1423,7 +1432,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use "no", "fast" (5s timeout), or "yes". Required for joining some servers.. + /// 查詢類似 Use "no", "fast" (5s timeout), or "yes". Required for joining some servers. 的當地語系化字串。 /// internal static string Main_Advanced_resolve_srv_records { get { @@ -1432,7 +1441,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Cache compiled scripts for faster load on low-end devices.. + /// 查詢類似 Cache compiled scripts for faster load on low-end devices. 的當地語系化字串。 /// internal static string Main_Advanced_script_cache { get { @@ -1441,9 +1450,9 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to ServerList: It allows an easier and faster server switching with short aliases instead of full server IP + /// 查詢類似 ServerList: It allows an easier and faster server switching with short aliases instead of full server IP ///Aliases cannot contain dots or spaces, and the name "localhost" cannot be used as an alias. - ///Usage examples: "/tell <mybot> connect Server1", "/connect Server2". + ///Usage examples: "/tell <mybot> connect Server1", "/connect Server2" 的當地語系化字串。 /// internal static string Main_Advanced_server_list { get { @@ -1452,7 +1461,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to How to retain session tokens. Use "none", "memory" or "disk".. + /// 查詢類似 How to retain session tokens. Use "none", "memory" or "disk". 的當地語系化字串。 /// internal static string Main_Advanced_session_cache { get { @@ -1461,7 +1470,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Decode links embedded in chat messages and show them in console.. + /// 查詢類似 Decode links embedded in chat messages and show them in console. 的當地語系化字串。 /// internal static string Main_Advanced_show_chat_links { get { @@ -1470,7 +1479,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Show inventory layout as ASCII art in inventory command.. + /// 查詢類似 Show inventory layout as ASCII art in inventory command. 的當地語系化字串。 /// internal static string Main_Advanced_show_inventory_layout { get { @@ -1479,7 +1488,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to System messages for server ops.. + /// 查詢類似 System messages for server ops. 的當地語系化字串。 /// internal static string Main_Advanced_show_system_messages { get { @@ -1488,7 +1497,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Messages displayed above xp bar, set this to false in case of xp bar spam.. + /// 查詢類似 Messages displayed above xp bar, set this to false in case of xp bar spam. 的當地語系化字串。 /// internal static string Main_Advanced_show_xpbar_messages { get { @@ -1497,7 +1506,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Temporary fix for Badpacket issue on some servers.. + /// 查詢類似 Temporary fix for Badpacket issue on some servers. 的當地語系化字串。 /// internal static string Main_Advanced_temporary_fix_badpacket { get { @@ -1506,7 +1515,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use "none", "bit_4", "bit_8" or "bit_24". This can be checked by opening the debug log.. + /// 查詢類似 Use "none", "bit_4", "bit_8" or "bit_24". This can be checked by opening the debug log. 的當地語系化字串。 /// internal static string Main_Advanced_TerminalColorDepth { get { @@ -1515,7 +1524,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Uses more ram, cpu, bandwidth but allows you to move around.. + /// 查詢類似 Uses more ram, cpu, bandwidth but allows you to move around. 的當地語系化字串。 /// internal static string Main_Advanced_terrain_and_movements { get { @@ -1524,7 +1533,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Customize the TCP connection timeout with the server. (in seconds). + /// 查詢類似 Customize the TCP connection timeout with the server. (in seconds) 的當地語系化字串。 /// internal static string Main_Advanced_timeout { get { @@ -1533,7 +1542,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Prepend timestamps to chat messages.. + /// 查詢類似 Prepend timestamps to chat messages. 的當地語系化字串。 /// internal static string Main_Advanced_timestamps { get { @@ -1542,7 +1551,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Login=Email or Name. Use "-" as password for offline mode. Leave blank to prompt user on startup.. + /// 查詢類似 Login=Email or Name. Use "-" as password for offline mode. Leave blank to prompt user on startup. 的當地語系化字串。 /// internal static string Main_General_account { get { @@ -1551,7 +1560,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to The address of the game server, "Host" can be filled in with domain name or IP address. (The "Port" field can be deleted, it will be resolved automatically). + /// 查詢類似 The address of the game server, "Host" can be filled in with domain name or IP address. (The "Port" field can be deleted, it will be resolved automatically) 的當地語系化字串。 /// internal static string Main_General_login { get { @@ -1560,7 +1569,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Microsoft Account sign-in method: "mcc" OR "browser". If the login always fails, please try to use the "browser" once.. + /// 查詢類似 Microsoft Account sign-in method: "mcc" OR "browser". If the login always fails, please try to use the "browser" once. 的當地語系化字串。 /// internal static string Main_General_method { get { @@ -1569,7 +1578,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Account type: "mojang" OR "microsoft". Also affects interactive login in console.. + /// 查詢類似 Account type: "mojang" OR "microsoft". Also affects interactive login in console. 的當地語系化字串。 /// internal static string Main_General_server_info { get { @@ -1578,7 +1587,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Settings below are sent to the server and only affect server-side things like your skin.. + /// 查詢類似 Settings below are sent to the server and only affect server-side things like your skin. 的當地語系化字串。 /// internal static string MCSettings { get { @@ -1587,7 +1596,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Allows disabling chat colors server-side.. + /// 查詢類似 Allows disabling chat colors server-side. 的當地語系化字串。 /// internal static string MCSettings_ChatColors { get { @@ -1596,7 +1605,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use "enabled", "commands", or "disabled". Allows to mute yourself.... + /// 查詢類似 Use "enabled", "commands", or "disabled". Allows to mute yourself... 的當地語系化字串。 /// internal static string MCSettings_ChatMode { get { @@ -1605,7 +1614,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to MC 1.7- difficulty. "peaceful", "easy", "normal", "difficult".. + /// 查詢類似 MC 1.7- difficulty. "peaceful", "easy", "normal", "difficult". 的當地語系化字串。 /// internal static string MCSettings_Difficulty { get { @@ -1614,7 +1623,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to If disabled, settings below are not sent to the server.. + /// 查詢類似 If disabled, settings below are not sent to the server. 的當地語系化字串。 /// internal static string MCSettings_Enabled { get { @@ -1623,7 +1632,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use any language implemented in Minecraft.. + /// 查詢類似 Use any language implemented in Minecraft. 的當地語系化字串。 /// internal static string MCSettings_Locale { get { @@ -1632,7 +1641,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to MC 1.9+ main hand. "left" or "right".. + /// 查詢類似 MC 1.9+ main hand. "left" or "right". 的當地語系化字串。 /// internal static string MCSettings_MainHand { get { @@ -1641,7 +1650,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Value range: [0 - 255].. + /// 查詢類似 Value range: [0 - 255]. 的當地語系化字串。 /// internal static string MCSettings_RenderDistance { get { @@ -1650,10 +1659,10 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Connect to a server via a proxy instead of connecting directly + /// 查詢類似 Connect to a server via a proxy instead of connecting directly ///If Mojang session services are blocked on your network, set Enabled_Login=true to login using proxy. ///If the connection to the Minecraft game server is blocked by the firewall, set Enabled_Ingame=true to use a proxy to connect to the game server. - ////!\ Make sure your server rules allow Proxies or VPNs before setting enabled=true, or you may face consequences!. + ////!\ Make sure your server rules allow Proxies or VPNs before setting enabled=true, or you may face consequences! 的當地語系化字串。 /// internal static string Proxy { get { @@ -1662,7 +1671,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to connect to the game server through a proxy.. + /// 查詢類似 Whether to connect to the game server through a proxy. 的當地語系化字串。 /// internal static string Proxy_Enabled_Ingame { get { @@ -1671,7 +1680,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to connect to the login server through a proxy.. + /// 查詢類似 Whether to connect to the login server through a proxy. 的當地語系化字串。 /// internal static string Proxy_Enabled_Login { get { @@ -1680,7 +1689,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to download MCC updates via proxy.. + /// 查詢類似 Whether to download MCC updates via proxy. 的當地語系化字串。 /// internal static string Proxy_Enabled_Update { get { @@ -1689,7 +1698,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Only required for password-protected proxies.. + /// 查詢類似 Only required for password-protected proxies. 的當地語系化字串。 /// internal static string Proxy_Password { get { @@ -1698,7 +1707,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Supported types: "HTTP", "SOCKS4", "SOCKS4a", "SOCKS5".. + /// 查詢類似 Supported types: "HTTP", "SOCKS4", "SOCKS4a", "SOCKS5". 的當地語系化字串。 /// internal static string Proxy_Proxy_Type { get { @@ -1707,7 +1716,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Proxy server must allow HTTPS for login, and non-443 ports for playing.. + /// 查詢類似 Proxy server must allow HTTPS for login, and non-443 ports for playing. 的當地語系化字串。 /// internal static string Proxy_Server { get { @@ -1716,7 +1725,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Only required for password-protected proxies.. + /// 查詢類似 Only required for password-protected proxies. 的當地語系化字串。 /// internal static string Proxy_Username { get { @@ -1725,7 +1734,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Chat signature related settings (affects minecraft 1.19+). + /// 查詢類似 Chat signature related settings (affects minecraft 1.19+) 的當地語系化字串。 /// internal static string Signature { get { @@ -1734,7 +1743,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Microsoft accounts only. If disabled, will not be able to sign chat and join servers configured with "enforce-secure-profile=true". + /// 查詢類似 Microsoft accounts only. If disabled, will not be able to sign chat and join servers configured with "enforce-secure-profile=true" 的當地語系化字串。 /// internal static string Signature_LoginWithSecureProfile { get { @@ -1743,7 +1752,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use red    color block to mark chat without legitimate signature. + /// 查詢類似 Use red    color block to mark chat without legitimate signature 的當地語系化字串。 /// internal static string Signature_MarkIllegallySignedMsg { get { @@ -1752,7 +1761,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use green  color block to mark chat with legitimate signatures. + /// 查詢類似 Use green  color block to mark chat with legitimate signatures 的當地語系化字串。 /// internal static string Signature_MarkLegallySignedMsg { get { @@ -1761,7 +1770,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use yellow color block to mark chat that have been modified by the server.. + /// 查詢類似 Use yellow color block to mark chat that have been modified by the server. 的當地語系化字串。 /// internal static string Signature_MarkModifiedMsg { get { @@ -1770,7 +1779,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Use gray   color block to mark system message (always without signature). + /// 查詢類似 Use gray   color block to mark system message (always without signature) 的當地語系化字串。 /// internal static string Signature_MarkSystemMessage { get { @@ -1779,7 +1788,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to display chat and messages in commands without legal signatures. + /// 查詢類似 Whether to display chat and messages in commands without legal signatures 的當地語系化字串。 /// internal static string Signature_ShowIllegalSignedChat { get { @@ -1788,7 +1797,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Set to true to display messages modified by the server, false to display the original signed messages. + /// 查詢類似 Set to true to display messages modified by the server, false to display the original signed messages 的當地語系化字串。 /// internal static string Signature_ShowModifiedChat { get { @@ -1797,7 +1806,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to sign the chat send from MCC. + /// 查詢類似 Whether to sign the chat send from MCC 的當地語系化字串。 /// internal static string Signature_SignChat { get { @@ -1806,7 +1815,7 @@ namespace MinecraftClient { } /// - /// Looks up a localized string similar to Whether to sign the messages contained in the commands sent by MCC. For example, the message in "/msg" and "/me". + /// 查詢類似 Whether to sign the messages contained in the commands sent by MCC. For example, the message in "/msg" and "/me" 的當地語系化字串。 /// internal static string Signature_SignMessageInCommand { get { diff --git a/MinecraftClient/Resources/ConfigComments/ConfigComments.resx b/MinecraftClient/Resources/ConfigComments/ConfigComments.resx index da56bedc..700f776a 100644 --- a/MinecraftClient/Resources/ConfigComments/ConfigComments.resx +++ b/MinecraftClient/Resources/ConfigComments/ConfigComments.resx @@ -189,6 +189,9 @@ You need to enable Entity Handling to use this bot Allow attacking passive mobs. + + Capped between 1 to 4 + How long to wait between each attack. Set "Custom = false" to let MCC calculate it.