Back to mods
VRobot project artwork

CurseForge · Minecraft mod

VRobot

Visually Programmable Mining and Building Robots.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which VRobot release should I use?

Updated 6 years ago
beta file vrobot-1.15.2-0.4.jar
Game version 1.15.2
Loader Forge

vrobot-1.15.2-0.4.jar targets 1.15.2 with Forge. The project page does not say whether this file belongs on the client, dedicated server, or both. All 1 required mods have matching files.

Where it goes

Is VRobot required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Forge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does vrobot-1.15.2-0.4.jar need?

vrobot-1.15.2-0.4.jar. Change the file and its required mods may change too.

All 1 required mods have matching files

Install Visibilis first. We found matching files for this game-version and loader setup.

Visibilis Needed by vrobot-1.15.2-0.4.jar
required
Matching file found Matched file: visibilis-1.15.2-1.9.jar

We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add VRobot without breaking your instance.

Built for vrobot-1.15.2-0.4.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use vrobot-1.15.2-0.4.jar. It targets 1.15.2 with Forge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install Visibilis first. We found matching files for this game-version and loader setup.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside vrobot-1.15.2-0.4.jar. It opens that exact file at the source.

About this project

What does VRobot add?

Make sure you install the following as well (version 1.15.2-1.8):

Visibilis is required to run this mod.

This mod is very WIP and only published for testing and to help me improve it and get ideas.

Get a robot by typing:

/give @p vrobot:robot

About

VRobot allows you to progrmm either harvesting robots or building robots. Both types of robots are programmed using a visual programming language provided by the mod API Visibilis.

Harvesting Robots

    • Can not go through walls (TODO)
    • Use tools to harvest; affected by enchantments (like silk touch) and other tool features (TiC hammers!)
    • Require energy (any furnace fuel also works) (TODO)

Building Robots (TODO)

    • Can go through walls
    • Can place blocks
    • Require energy (any furnace fuel also works) (TODO)

Visual Coding - How everything works

Lets talk about how it works.

Robot + Code

The robot can be either Idle or Working. By calling "start" or "continue" (nodes; or you click the buttons) you make the robot go into the Working state. By calling "pause" or "end" you make the robot go into the Idle state.

Idle State

The robot does nothing here. It waits for a player to activate it via button click or (if programmed that way) it waits for a redstone signal or possibly other factors it can react to (TODO).

Working State

The robot continues to work until interrupted or told to pause/stop. This happens manually or when a node is called. The robot might also stop if the robot is interrupted in doing something or can not execute a certain robot action (eg. it wants to go forward but there is a block) (TODO).

Code Execution Details

Generally, the robot always follows the following principle:

    • Run the visual code (Tick node)
    • Work down all queued robot actions
    • Repeat

On the initial start, however, the Initialize node is called (this is done only once; only when the robot is started, NOT when it is continued), instead of the Tick node. These 2 mentioned nodes are event nodes; they are the beginning of your code. They get called from outside your coding frame and from that point on you can decide what it called next.

You can programm your robot using only the Initialize node

I already mentioned that the robot just works down all robot actions. So you can just queue all actions you want in the Initialize phase and not use the Tick phase at all. Eg. you tell the robot to Harvest Front and then to Move Forward, and now to repeat this 10 times. The robot does all of that and then nothing anymore, as the Initialize node is only called once. The advantage is simplicity and predictability, the disadvantage is that you do not have access to Immediates. The more advanced strategy is to programm everything in the Tick phase. This gets called every time the robot has worked down the robot action queue. This now also allows you to use Immediates.

Node Types

There are 2 types of nodes that are used by the robot: Immediates and Robot Actions. There is also Other node types which do not fall under the first 2 categories:

Immediates

    • Do not cost energy
    • Execute immediately on code execution
    • Finish immediately (0 time)

Robot Actions

    • Cost energy
    • Buffered in the robot (in a queue); get executed 1 by 1 after code execution is done
    • Take time to finish (depending on action and other factors eg. harvesting depends on tool and block)

Example: Possible Errors or Immediates

Lets say you call the following code on the Initialize node: 4x Forward (Robot Action), 1x Export Items (Immediate) This would actually do the reverse, it would first execute the Export Items node, and only then move Foward 4 times.

Other

These can be anything, from simple calculations to variable saving. These are generally just helper nodes to calculate or do something needed for Immediates or Robot Actions.

Project description from CurseForge.

Pick your setup

VRobot by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

1 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

VRobot versions and loaders

4 of 4 releases match

Looking for an older file? The official CurseForge project page is in Resources.