Code Monkey home page Code Monkey logo

minecraft-console-client's Introduction

Logo

Minecraft Console Client (MCC)

Documentation | Download | Installation | Configuration | Usage

GitHub Actions build status Discord server

About ℹ️

Minecraft Console Client (MCC) is a lightweight cross-platform open-source Minecraft TUI client for Java edition that allows you to connect to any Minecraft Java server, send commands and receive text messages in a fast and easy way without having to open the main Minecraft game.

Download

Get development builds from the Releases section

How to use 📚

Getting Help 🙋

Check out the Website, README and existing Discussions: Maybe your question is answered there. If not, please open a New Discussion and ask your question. If you find a bug, please report it in the Issues section.

Discord

We now have a Discord server, click here to join.

Helping Us ❤️

We are a small community so we need help to implement upgrades for new Minecraft versions, fixing bugs and expanding the project. We are always looking for motivated people to contribute. If you feel like it could be you, please have a look at the issues section :)

How to contribute 📝

If you'd like to contribute to Minecraft Console Client, great, just fork the repository and submit a pull request on the Master branch. To contribute to the website / online documentation see also the Website repository.

Alt

Translating Minecraft Console Client 🌍

To improve translations for MCC, please visit: Crowdin - Minecraft Console Client.

Building from the source 🏗️

This section has been moved to our new Documentation website.

License ⚖️

Unless specifically stated, the code is from the MCC Team or Contributors, and available under CDDL-1.0. Else, the license and original author are mentioned in source file headers. The main terms of the CDDL-1.0 license are basically the following:

  • You may use the licensed code in whole or in part in any program you desire, regardless of the license of the program as a whole (or rather, as excluding the code you are borrowing). The program itself may be open or closed source, free or commercial.
  • However, in all cases, any modifications, improvements, or additions to the CDDL code (any code that is referenced in direct modifications to the CDDL code is considered an addition to the CDDL code, and so is bound by this requirement; e.g. a modification of a math function to use a fast lookup table makes that table itself an addition to the CDDL code, regardless of whether it's in a source code file of its own) must be made publicly and freely available in source, under the CDDL license itself.
  • In any program (source or binary) that uses CDDL code, recognition must be given to the source (either project or author) of the CDDL code. As well, modifications to the CDDL code (which must be distributed as source) may not remove notices indicating the ancestry of the code.

More info at http://qstuff.blogspot.fr/2007/04/why-cddl.html Full license at http://opensource.org/licenses/CDDL-1.0

minecraft-console-client's People

Contributors

0jumpero avatar barney avatar bas950 avatar breadbyte avatar brucechenqaq avatar carbonneuron avatar cubik65536 avatar daenges avatar dependabot[bot] avatar devbobcorn avatar dogwatch avatar featherbear avatar fieu avatar gldym avatar initsuj avatar ithackerstein avatar justcool393 avatar lokulin avatar mcflurrybaby avatar milutinke avatar nekiplay avatar oldkingok avatar orelio avatar overhash avatar pokechu22 avatar reinforcezwei avatar repository avatar xdavidwu avatar zizzydizzymc avatar zorua162 avatar

Stargazers

 avatar  avatar  avatar

minecraft-console-client's Issues

[Question] Discord webhook i need to create a whitelist that the webhook reacts too (grabs)

Prerequisites

Console Client Version

build 531

Description of the Question

Im trying to get the webhook to only find the leaderboard.

Solutions you've already considered

  1. editing the whole script to make it only detect 1 chat
  2. have someone add on to it to add a whitelist and black list

Attach screenshot here (If applicable)

No response

Anythings that could help us answering the question

No response

Minecraft Version

1.12.2

Device

Desktop

Operating System

Windows

Server Address (If applicable)

play.jailmc.com

[BUG]

Prerequisites

  • I made sure I am running the latest development build
  • I tried to look for similar issues before opening a new one
  • I have set debugmessages=true in config to diagnose my issue
  • I have redacted session tokens and passwords before attaching screenshots

Minecraft Version

1.17.9

Console Client Version

latest

Expected Behavior

The github issue form should work

Actual Behavior

It worked

Steps to Reproduce the bug

  1. Create new issue
  2. Fill in the form
  3. Submit it

Attach screenshot here (If applicable)

image

Anythings that could help diagnosing the bug

No response

Device

Desktop

Operating System

Windows

Server Address (If applicable)

No response

[BUG] how get websocket-server.dll for discrodrelay.cs

Prerequisites

  • I made sure I am running the latest development build
  • I tried to look for similar issues before opening a new one
  • I have set debugmessages=true in config to diagnose my issue
  • I have redacted session tokens and passwords before attaching screenshots

Minecraft Version

1.16.5

Console Client Version

latest

Expected Behavior

i dont see in https://github.com/ReinforceZwei/Minecraft-Console-Client/releases/tag/v0.0.1-beta

Actual Behavior

i see in https://github.com/ReinforceZwei/Minecraft-Console-Client/releases/tag/v0.0.1-beta

Steps to Reproduce the bug

Attach screenshot here (If applicable)

No response

Anythings that could help diagnosing the bug

No response

Device

No response

Operating System

No response

Server Address (If applicable)

No response

AutoCraft TODO list

Core functions

  • Item stacking mechanism, item stack limit, stackable/non-stackable item
  • Shift click handling
  • Auto dropping items
  • Search and open crafting table
  • Auto crafting

Improvement list

  • Able to handle item left in the crafting area
  • Try to empty some space if inventory is full while crafting
  • Able to choose between drop crafted item or keep it
  • Able to decide the quantity of crafted item
  • Split item stack if possible (stack of x64 diamond split to 9 stacks for crafting diamond block)

Related improvement:

  • Write item moving methods in Container class

Useful script

Convert a C# class file to MCC ChatBot script.

let fs = require("fs");

function extractClass(content){
    let start = content.search("class");
    let lines = content.substring(start);
    let bCount = 0;
    let included = false;
    let endIdx;

    for (let i = 0; i < lines.length; i++){
        if (lines[i] === "{") {bCount++; continue;}
        if (lines[i] === "}") {bCount--; continue;}
        if (bCount > 0) included = true;
        if (included && bCount == 0) {endIdx = i; break;}
    }

    //console.log(endIdx);

    lines = lines.substring(0, endIdx);
    //console.log(lines);

    let linesArr = lines.split(/[\r\n]+/);
    let newContent = [];

    linesArr.forEach(l => {
        if (l.startsWith("    "))
            newContent.push(l.substring(4));
        else
            newContent.push(l);
    });
    return newContent.join("\r\n");
}

function extractClassName(classString){
    return /class (\w+) :/.exec(classString)[1];
}

function test(){
    let lines = fs.readFileSync("a.txt").toString();
    let c = extractClass(lines);
    let converted = `//MCCScript 1.0
MCC.LoadBot(new ${extractClassName(c)}());
//MCCScript Extensions
${c}`;
    fs.writeFileSync("new.cs", converted);
}

//test();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.