用法

如何啟動程式:

使用命令行參數:

Windows 系統

簡單的啟動 MinecraftClient.exe

小提示

我們建議您在Windows上使用Windows Terminal在新視窗開啟 為了更好的用戶體驗👍 有時您需注意像是 emojis 符號在 /chunk 無法在"CMD"或"Powershell 5"上成功運作

Linux,macOS 系統

To run the client you need to type the following command in your terminal emulator:

./MinecraftClient

If you want to keep it running in the background you can use screen (Linux only)

例如:

# Start the screen
screen -S mcc

# Run it
./MinecraftClient

# Detach from the screen by pressing CTRL + A + D

# Re-attach if you want to have accces again
screen -r mcc

Learn more on how to use the screen command: YouTube在新視窗開啟

Docker 雲端

See Run using Docker

指令的用法如下

而大量實用可供參考的指令參數,您可以在這Minecraft Console Client 了解他們。

在這您可以熟悉指令的運作

For people who are not familiar with the usage of programs in the command line (terminal emulators), here we will explain what every single thing means, if you're already experienced you can skip this.

In command line (terminal emulators) you can run programs by specifying their name and hitting enter, usually programs have additional way of being configured, started or provided some additional data in a different manner, this is achieved by using command line parameters.

Command line parameters are written after the name of the program, they're separated by spaces and they can have a few different formats, examples:

  • someparameter
  • -some-parameter
  • --some-other-parameter
  • --some-setting="some value"
  • -a=5

Parameters with a single dash (-) are usually used for a single letter (short-hand) parameters, while the ones with a double dash (--) are being used for parameters with a longer/full name.

When you are reading examples, you will often see something like this: <something here>, this means that this is a place holder and it should be changed with some value, excluding the < and the >.

For example <username> you need to change to an username of your liking, example: notch (< and > should not be included).

[ and ] mean that a parameter is an optional one.

They also can hold some values, example from the MCC:

MinecraftClient.exe --debugmessages=false

When a parameter has a textual value that includes one more spaces, you will need to wrap it the value in double quotes ("), example: --some-parameter="some text here with spaces in it"

Here is an example for using a --help command line parameter for MCC that will print out a page on how to use MCC from the command line:

MinecraftClient.exe --help

在MCC上快速啟動的指令群範例

小提示

在Linux、macOS、PowerShell ,您需要使用的指令樣式如下: ./MinecraftClient而非MinecraftClient.exe

MinecraftClient.exe --help
MinecraftClient.exe <username> <password> <server>
MinecraftClient.exe --setting=value [--other settings]
MinecraftClient.exe --section.setting=value [--other settings]
MinecraftClient.exe <settings-file.ini> [--other settings]

範例:

# Logging in as a user: notch, with a password: password123 onto a server with the ip: mc.someserver.com:25565
MinecraftClient.exe notch password123 mc.someserver.com:25565

# Overriding a setting from MinecraftClient.ini using a command line parameter
MinecraftClient.exe --debugmessages=false

# Providing a custom settings ini file and overriding a language to Chinese
MinecraftClient.exe CustomSettingsFile.ini --language=zh

關於命令行參數的使用規則

您可以按照以下規則,來組合想一起使用的指令參數:

  • First positional argument may be either the login or a settings file
  • Other positional arguments are read in order: login, password, server, command
  • Arguments starting with -- can be in any order and position

Examples and further explanations:

MinecraftClient.exe <login> <password> <server>
  • This will automatically connect you to the chosen server.
  • You may omit password and/or server to specify e.g. only the login
  • To specify a server but ask password interactively, use "" as password.
  • To specify offline mode with no password, use - as password.
MinecraftClient.exe <login> <password> <server> "/mycommand"
  • This will automatically send /mycommand to the server and close.
  • To send several commands and/or stay connected, use the 1ScriptScheduler1 bot instead.
MinecraftClient.exe <myconfig.ini>
  • This will load the specified configuration file
  • If the file contains login / password / server ip, it will automatically connect.
MinecraftClient.exe --setting=value [--other settings]
  • Specify settings on the command-line, see possible value in the configuration file
  • Use --section.setting=value for settings outside the [Main] section
  • Example: --antiafk.enabled=true for enabling the AntiAFK bot
MinecraftClient.exe <myconfig.ini> <login> <password> <server> [--other settings]
  • Load the specified configuration file and override some settings from the file

MCC內建指令

These commands can be performed from the chat prompt, scripts or remote control.

From chat prompt, commands must by default be prepended with a slash, eg. /quit.

In scripts and remote control, no slash is needed to perform the command, eg. quit.

小提示

Some commands may not be documented yet or are defined in description of Chat Bots, use /help to list them all, or you can contribute to this page.

animation

  • Description:

    Swing your main or off hand.

  • 使用方法:

    /animation <mainhand|offhand>
    

bed

  • Description:

    Allows you to make the bot sleep easily, all about sleeping in one command.

  • 使用方法:

    Basic usage: bed leave|sleep <x> <y> <z>|sleep <radius>

  • 範例:

    Leave a bed:

    /bed leave
    

    Sleep in a bed on 124 84 76:

    /bed sleep 124 84 76
    

    Sleep in a bed using relative coordinates:

    /bed sleep ~ ~ ~-2
    

    Automatically find a bed in radius of 50 blocks and sleep in it:

    /bed sleep 50
    

blockinfo

小提示

You need to have Terrain And Movements enabled in order for this to work.

  • Description:

    Reports the block type at the given position.

    If you use the -s option it will report the types of blocks around the targeted blokcs.

  • 使用方法:

    Basic usage:

    /blockinfo <x> <y> <z> [-s]
    

bots

  • Description:

    Allows you to list and unload a specific bot or all bots.

    Useful when debugging and developing scripts.

  • 使用方法:

    /bots <list|unload <bot name|all>>
    
  • 範例:

    Unload a bot called CustomScript

    /bots unload CustomScript
    

    Unload all bots

    /bots unload all
    

changeslot

  • Description:

    Change your selected slot in the hotbar.

    小提示

    You need to have Inventory Handling enabled in order for this to work.

  • 使用方法:

    /changeslot <1-9>
    

chunk

  • Description:

    Displays the chunk loading status in a nice way.

    注意

    To use this feature you need to enable the Terrain and Movements

    小提示

    You need a terminal with emoji support, like Powershell 7, Windows Terminal or Alacritty, if you do not want emoji support and want to use cmd or powershell 5, disable emojis with: enableemoji

  • 使用方法:

    /chunk status [chunkX chunkZ|locationX locationY locationZ]
    

    How it looks:

    Chunk status

dig

  • Description:

    Dig a block on a specific coordinate.

  • 使用方法:

    /dig <x> <y> <z>
    
  • 例如:

    /dig 127 63 12
    

    Using relative coordinates:

    /dig ~ ~-1 ~2
    

dropitem

  • Description:

    Drop all items of a specific type from your inventory.

    小提示

    You need to have Inventory Handling enabled in order for this to work.

  • 使用方法:

    /dropitem <itemtype>
    

    小提示

    All item types can be found here在新視窗開啟.

  • 例如:

    /dropitem diamond
    

enchant

小提示

You need to have Inventory Handling enabled in order for this to work.

  • Description:

    Allows you to enchant items in an enchanting table.

    You need to first open an enchanting table and then place and item that you want to enchant and lapis in the enchanting table, and then you can execute the command.

    To open an enchanting table you can use the useblock command.

  • 使用方法:

    Basic usage:

    /enchant <top|middle|bottom>
    

entity

  • Description:

    Attack an entity, use an entity or get a list of entities around you.

    小提示

    You need to have Inventory Handling and Entity Handling enabled in order for this to work.

  • 使用方法:

    Basic usage:

    /entity <id|entitytype> <attack|use>
    

    Get a list of entities around you:

    /entity
    

    小提示

    All entity types can be found here在新視窗開啟.

  • 範例:

    Attack a Zombie:

    /entity Zombie attack
    

execif

  • Description:

    Allows you to execute a command if a specific condition is met.

    The condition is a C# expression and the local variables you set using set, setrnd or the configuration file can be used.

    The condition is always returned as a boolean, so only comparison can be done, if needed cast the expression result to bool.

    Also the instance of MCC is available with MCC..

    小提示

    All local variables are treated as strings in the app, when comparing their values, you can use <variable> == "<value>", or better use .Equals在新視窗開啟 method

  • 使用方法:

    Basic usage: /execif <condition (C# expression)> <command>

  • 範例:

    Setting a variable and using it:

    /set test=Something
    /execif 'test == "Something"' "send Success!"
    

    小提示

    You can use single quote (') to wrap your expression if the expression contains double quote (")

    Adding back-slash (\) before the double quote will also work (/execif "test == \"Something\"" "send Success!")

    ``` /set test2=1 /execif 'test2 == "1"' "send Success 2!" ```

    Basic C# expression:

    /execif "1 + 2 + 3 == 6" "send Success!"
    

    Using MCC class:

    /execif "MCC.GetHealth() == 20.0" "send Success!"
    

    Using in combination with execmulti:

    /execif "1 == 1" "execmulti send 1 -> send 2 -> send 3"
    

execmulti

  • Description:

    Allows you to execute multiple commands in succession on a single line, useful for debugging or when using execif

    Commands are separated by ->

  • 使用方法:

    Basic usage: execmulti <command 1> -> <command 2> -> <command 3> -> ...

  • 範例:

    /execmulti send 1 -> send 2 -> send 3 -> sneak
    

quit

  • Alias: exit

  • Description:

    Disconnect from the server and close the application

reco

  • Description:

    Disconnect and reconnect to the server

  • 使用方法:

    /reco [account]
    

    小提示

    [account] is an account alias defined in accounts file, for more info check out accountlist

reload

  • Description:

    Reloads settings from MinecraftClient.ini and Chat Bots.

    小提示

    Some settings won't be reloaded since they are used before the client initialization. Also, settings provided by the command line paramteres will be overriden. This also does not reload the ReplayBot due to technical limitations.

  • 使用方法:

    /reload
    

connect

  • Description:

    Go to the given server and resume the script

  • 使用方法:

    /connect <server> [account]
    

    小提示

    <server> is either a server IP or a server alias defined in servers file, for more info check out serverlist

    小提示

    [account] is an account alias defined in accounts file, for more info check out accountlist

script

  • Description:

    Run a script containing a list of commands

  • 使用方法:

    /script <script name>
    

send

  • Description:

    Send a message or a command to the server

  • 使用方法:

    /send <text>
    

respawn

  • Description:

    Use this to respawn if you are dead (like clicking "respawn" in-game)

  • 使用方法:

    /respawn
    

log

  • Description:

    Display some text in the console (useful for scripts)

  • 使用方法:

    /log <text>
    
  • 例如:

    /log this is some text
    

list

  • Description:

    List players logged in to the server (uses tab list info sent by server)

  • 使用方法:

    /list
    

set

  • Description:

    Set a value which can be used as %variable% in further commands

  • 使用方法:

    /set <variable>=<value>
    
  • 範例:

    /set abc=123
    

setrnd

  • Description:

    Set a %variable% randomly to one of the provided values

  • 使用方法:

    /setrnd <variable> string1 "\"string2\" string3"
    
  • 範例:

    /setrnd <variable> -7 to 10
    

    (Set a %variable% to a number from -7 to 10)

sneak

  • Description:

    Toggle sneaking.

  • 使用方法:

    /Sneak
    

tps

  • Description:

    Get the server TPS (Ticks Per Second).

  • 使用方法:

    /tps
    

useitem

  • Description:

    Use item in the hand, this can be used to do a right click on items which open menus on servers.

    小提示

    You need to have Inventory Handling enabled in order for this to work.

    注意

    The Inventory Handling is currently not supported in 1.4.6 - 1.9

  • 使用方法:

    /useitem
    

useblock

  • Description:

    Place a block from a hand on a specific coordinate or open an inventory:

    • chest/trap chest
    • furnace
    • brewing stand
    • dispenser/dropper
    • hopper
    • shulker
    • loom

    小提示

    You need to have Inventory Handling and Terrain and Movements enabled in order for this to work.

    小提示

    Not all inventories have a GUI representation in an ASCII art format.

    注意

    The Inventory Handling is currently not supported in 1.4.6 - 1.9.

  • 使用方法:

    /useblock <x> <y> <z>
    
  • 例如:

    /useblock 43 72 7
    

follow

  • Description:

    Make the bot follow a player.

    小提示

    This command is avaliable only with Follow Player Chat Bot enabled.

    小提示

    You need to have Inventory Handling enabled in order for this to work.

    小提示

    You need to have Enity Handling enabled in order for this to work.

  • 使用方法:

    /follow <player name|stop>
    
  • 例如:

    /follow milutinke
    

wait

  • Description:

    Wait X ticks (10 ticks = ~1 second. Only for scripts)

  • 使用方法:

    Fixed time:

    /wait <time>
    

    Random time:

    /wait <minimum time> to <maximum time>
    

    小提示

    You can use - instead of to

  • 範例:

    /wait 20
    
    /wait 20 to 100
    
    /wait 20-35
    

move

  • Description:

    Used for moving when terrain and movements feature is enabled.

    小提示

    You need to have Terrain and Movements enabled in order for this to work.

    注意

    The Terrain and Movements is currently not supported in 1.4.6 - 1.6.

  • 使用方法:

    /move <on|off|get|up|down|east|west|north|south|center|x y z|gravity [on|off]> [-f]: walk or start walking. "-f": force unsafe movements like falling or touching fire
    
  • 範例:

    Enable gravity

    /move gravity on
    

    Move to coordinates:

    /move 125 72 34
    

    Move to a center of a block:

    /move center
    

nameitem

  • Description:

    This command allows you to name an item when you have an Anvil inventory open and an item in the first slot (slot number 0),

    After you place an item in the first slot of the anvil, use this command, and then do a click on the slot 2 to get an item from the anvil, then do a click on an empty slot in your inventory.

  • 使用方法:

    /nameitem <name of the item>
    
  • 例如:

    /nameitem My super duper sword 2000
    
  • Full Example with anvil:

    # Open an anvil
    /useblock 12 74 321
    
    # Click on an axe in slot 12
    /inventory container click 12
    
    # Put an axe to the slot 0 in anvil
    /inventory container click 0
    
    # Set the new name
    /nameitem My fancy axe
    
    # Click on the axe in slot 2 in the anvil
    /inventory container click 2
    
    # Put the axe back in your inventory in slot 12
    /inventory container click 12
    
    # Close the anvil
    /inventory container close
    

look

  • Description:

    Used for looking at direction when terrain and movements is enabled

  • 使用方法:

    /look <x y z|yaw pitch|up|down|east|west|north|south>
    
  • 範例:

    /look up
    
    /look east
    

inventory

  • Description:

    Used for inventory manipulation.

    小提示

    You need to have Inventory Handling enabled in order for this to work.

    注意

    The Inventory Handling is currently not supported in 1.4.6 - 1.9.

    MCC defines inventories as containers internally, so player's inventory, chests, droppers, dispensers, hoppers, chest minecarts, barrels, furnaces, etc... are all considered a container, and each one of them has it's ID, the words container and inventory can be used interchangeably.

    Inventory has slots and each one of them has an id.

    小提示

    This command DOES NOT physically open a container (eg. chest), for that you need to use useblock command first.

    An example of player inventory with annotated IDs in ASCII art and a list of items:

    Player Inventory

  • 使用方法:

    Basic usage:

    /inventory <player|container|<id>> <action> [action parameters] | /inventory <inventories/i> | /inventory <search/s> <item type> [amount]
    

    小提示

    player and container can be simplified with p and c accordingly

    Actions:

    • click
    • drop

    Show/Preview items in an inventory:

    /inventory <player|id>
    

    Click/Shift-Click on an item in an inventory:

    /inventory <player|container|<id>> <click> <slot id> [left|right|middle|Shift|ShiftRight]
    

    小提示

    The default click is left click

    Close an inventory:

    /inventory <player|container|<id>> close
    

    Drop item(s) from an inventory:

    /inventory <player|id> drop <slot id> <number of items|all>
    

    小提示

    To drop all items from a slot, you can use: all

    Give an item to the player inventory from a creative menu when in the creative mode:

    /inventory creativegive <slot id> <item type> <amount>
    

    小提示

    To find item types, check out this list在新視窗開啟

    Delete an item from a player's inventory when in the creative mode:

    /inventory creativedelete <slot id>
    

    Show all available inventories:

    /inventory inventories
    

    Search for an item of specified type in available inventories:

    /inventory search <item type>
    
  • 範例:

    Show player's inventory:

    /inventory player
    

    Show/Preview items in an inventory using an id:

    /inventory 3
    

    Click on an item in player's inventory in slot number/id 36:

    /inventory player click 36
    

    Right-Click on an item in slot number/id 4 in an inventory with an id 2:

    /inventory 2 click 4 right
    

    Close an inventory with an id 2:

    /inventory 2 close
    

    Drop a single item from a player's inventory in slot number/id 36:

    /inventory player drop 36 1
    

    Drop all items from a player's inventory in slot number/id 37:

    /inventory player drop 37 all
    

    Give an item to the player inventory from a creative menu when in the creative mode:

    /inventory creativegive 36 diamondblock 64
    

    小提示

    To find item types, check out this list在新視窗開啟

    Delete an item from a player's inventory in slot number/id 36 when in the creative mode:

    /inventory creativedelete 36
    

    Search for 10 Slime Blocks in available inventories:

    /inventory s SlimeBlock 10
    

debug

  • Description:

    Toggle debug messages, useful for chatbot developers.

help

  • Description:

    Show commands help.

    小提示

    Use "/send /help" for server help