Blingedit Documentation

Total Page:16

File Type:pdf, Size:1020Kb

Blingedit Documentation BlingEdit Documentation SethBling Feb 29, 2020 Contents 1 Getting started 3 1.1 Installation................................................3 1.2 The BlingEdit sword...........................................3 2 Selecting and cursor 5 2.1 Selecting a Region............................................5 2.2 Changing the Cursor...........................................6 3 Operations 7 3.1 Delete...................................................7 3.2 Fill....................................................7 3.3 Replace..................................................7 3.4 Clone...................................................8 3.5 Randomize................................................8 3.6 Plugins..................................................9 4 Writing your own plugin 11 5 Changelog 13 i ii BlingEdit Documentation Contents 1 BlingEdit Documentation 2 Contents CHAPTER 1 Getting started 1.1 Installation • Download v1.0.2 of the datapack here. • Within your Minecraft world file, place blingedit.zip into the datapacks subfolder. • Launch the world, or if it’s already running, use the /reload command. – The world must not be in peaceful mode. 1.2 The BlingEdit sword To use any of the datapack’s features, you must create the BlingEdit Sword. Simply put a diamond sword into an anvil, and rename it to BlingEdit. Note that correct spacing and capitalization is required. Everything in the datapack requires you to be holding the BlingEdit Sword. 3 BlingEdit Documentation 4 Chapter 1. Getting started CHAPTER 2 Selecting and cursor 2.1 Selecting a Region In order to do anything with BlingEdit you must select a region. When holding the BlingEdit Sword, a cursor will show up. By default the cursor appears floating 5m in front of you. Left click to select one corner of the region. Move the cursor and left click again to select the opposite corner of the rectangular region. 2.1.1 Modifying the Selected Region When you select a region, there are a couple ways to modify the region until you get what you want. Up/Down/Left/Right/Forward/Backward When you select a region, 6 buttons will appear in chat that will move the entire region by 1 block in any direction. Left/Right/Forward/Backward will change depending on the direction you’re facing. Selecting a Region Anchor By left clicking on any of the red cubes that form the region’s bounding box, you can move one or more faces of the region. Clicking on a corner will move three faces at once, clicking on an edge will move two faces at once, and clicking in the middle of a side will move just that side. To click on an anchor, you actually attack it with the sword, so if it’s occluded by blocks it won’t work. Once you’ve moved the anchor to the desired position, left click again to release it. Resetting the Region To select a new region from scratch, simply deselect and reselect your BlingEdit Sword. 5 BlingEdit Documentation 2.2 Changing the Cursor With the BlingEdit Sword selected, press the “drop item” key. This will toggle your cursor between Floating Cursor and Raycast Cursor. As well as display some configuration options. 2.2.1 Floating Cursor The floating cursor always appears a fixed number of blocks directly in front of you. This can be used to select a location that’s floating in midair. 2.2.2 Raycast Cursor The raycast cursor will follow the direction that you’re pointing until it reaches a solid block. Depending on how it’s configured, it’ll either end inside the block you’re pointing at, or just before that block. This mode makes it easier to tell exactly where the cursor is, and select locations more quickly, but it can’t be used to select mid-air locations. 6 Chapter 2. Selecting and cursor CHAPTER 3 Operations Once you’ve selected a region, there are several editing operations you can perform. These operations will be listed in chat, simply click on the operation you wish to perform. 3.1 Delete This simply clears all blocks in the region. 3.2 Fill This fills the region entirely with a single block. Select the [Fill] operation, then use /setblock~~~<block> to select the block to use. 3.3 Replace This finds all blocks of a certain type and replaces them with another type of block. Select the [Replace] operation. Then use /setblock~~~<block> to select the block to replace, use: /setblock~~~<block> again to select the block to replace with. 7 BlingEdit Documentation 3.4 Clone This will clone all blocks in the selected region to another destination. There are several methods and options that can be used when doing this. When you select the [Clone] operation, the option to enable/disable the cloning of air blocks will appear in chat as well. A green destination region will appear, and it will be the same size as the red source region. 3.4.1 Moving the destination region When the green destination region appears, you’ll be moving it by default. Click to set its location. Note that you can change your cursor type as described earlier in this manual. To move it with the cursor again, left click to attack any of the green anchor points. You can also use the Up/Down/Left/Right/Forward/Backward buttons to move the destination region by a single block in any of those directions. It’s not possible to resize the destination region, since its must match the source region. 3.4.2 Confirm Clone This will clone all blocks from the source region to the destination region, and then select the destination region for further editing. 3.4.3 Clone & Repeat This will clone all blocks from the source region to the destination, and then move both the source and destination region so that the clone operation can be repeated. By clicking this several times, you can stack many copies of the same structure next to each other at any offset you’d like. 3.4.4 Clone Brush In Clone Brush mode, simply left clicking will paste the region at the cursor. Remember that you can change cursor modes as described earlier in this manual by pressing the “drop item” key. This can be used to quickly place many copies of the source structure in a point-and-click fashion. 3.4.5 Cancel Use this to exit all clone operations. 3.5 Randomize This set of operations is used to place blocks drawn from a random pool of blocks. Before randomizing any blocks, a Random Block Pool must be selected. 3.5.1 Store Selected Region as Random Block Pool This will store the region you have selected. All blocks in this region, including air, form the Random Block Pool. When further randomization operations are performed, a random set of coordinates from within this region will be selected, and the block at those coordinates will be used. Note that you can change blocks in this region after selecting 8 Chapter 3. Operations BlingEdit Documentation the region as the Random Block Pool, and that the region needs to be loaded when perform other randomization operations. 3.5.2 Fill Selected Region from Random Block Pool Every block in the selected region will obtain a random block from the Random Block Pool. 3.5.3 Replace in Selected Region from Random Block Pool When you select this operation, you’ll be asked which type of block you want to replace. Use /setblock~~~<block> to select the block. Each instance of that kind of block within the selected region will be replaced by a block from the Random Block Pool. 3.6 Plugins Selecting this operation will display a list of installed plugins. To install a plugin, download the datapack and put it in the datapacks folder in your save directory. 3.6.1 My Plugins Vegetate - Any empty blocks in the selected region which are on top of a grass block may receive random vegetation. 3.6. Plugins 9 BlingEdit Documentation 10 Chapter 3. Operations CHAPTER 4 Writing your own plugin A plugin is a datapack responsible for performing an edit operation in the selected region. To write a plugin, you must include the following: • Every tick, check if any players have their disp_plugins score set to 1. If they do, send them a light_purple tellraw message with a clickable element that will run a function that implements the plugin’s operation. I suggest calling the function run. – For example: execute as @e[type=minecraft:player] run execute if score @s disp_plugins ,!matches 1.. run tellraw @s ["",{"text":"[Vegetate]","clickEvent":{"action": ,!"run_command","value":"/function blingedit_vegetate:run"},"color":"light_ ,!purple"}] • At the beginning of your plugin’s run function, use: function blingedit:plugin_can_run Then check if player Global has a plugin_can_run score of 1. If it does, you’re free to perform the operation. If not, it could mean the player hasn’t selected a region, or that they aren’t in the right state to run a plugin. • plugin_can_run also sets several scores for player Global. The objectives box_xmin, box_ymin, box_zmin, box_xmax, box_ymax and box_zmax define the minimum and maximum bounds of the region’s bounding box. Use those coordinates however you like. • At the end of your run function, use gamerule sendCommandFeedback false • to disable the text would be displayed by clicking the tellraw link. BlingEdit will automatically re-enable the gamerule if it was previously enabled. 11 BlingEdit Documentation 12 Chapter 4. Writing your own plugin CHAPTER 5 Changelog BlingEdit is a datapack for Minecraft 1.13 which gives you a bunch of world editing tools, inspired by MCEdit and WorldEdit. 13.
Recommended publications
  • Free Minecraft Alts
    Free Minecraft Alts Free Minecraft Alts CLICK HERE TO ACCESS MINECRAFT GENERATOR minecraft creeper juice free printable labels free 24 7 minecraft pe server hosting In this video review, the narrator gives a detailed look at how you can hack Minecraft by obtaining a free limited amount of resources (such as wood or iron). This is not a hack tool but rather an online generator. This approach is great for those who don't want to download anything and those who don't know how to install anything. This generator is completely free of charge! Check out the video below to see it in action!", Some of the first mods were just new items which let players add new items into their game. This is a big deal because it's easy to overlook the small things when you're playing Minecraft. No one wants to miss out on anything, so new items make the game much more interesting and can take it up to new levels. More Info Download: MINECRAFT MODS", On a positive note, the game also allows players who are unable to play due to technical issues to create their own customized server in order for them to continue playing the game with their friends. On July 8th 2021, Facepunch Studios announced that "Rust" would be rebuilt with the use of a new development engine in order to create next-generation visuals and longer-term gameplay improvements.", how to get into minecraft free minecraft realms free trial download Doesn't matter what type of server you are looking for - Factions, Survival, SkyBlock, Creative or Towny - we have you covered.
    [Show full text]
  • How to Use Wurst
    How To Use Wurst How To Use Wurst CLICK HERE TO ACCESS MINECRAFT GENERATOR The first site that we are going to talk about today is the website for the popular game Minecraft. This is just another simple mod that you can easily add into your game in order to get the most out of it. The site gives you a lot of the best mods for the game and helps to make it so that everyone will have an easy time finding out what mod they want to use before they install it into their game. The website gives you a description about how the mod works, what kind of features it has, as well as some information about how you should go about installing it into your own version of Minecraft. More Info Download: MINECRAFT", Cook in a skillet over medium heat. Drain any fat and use in recipes or add to pasta sauce. Storage/Leftovers. Raw pork can be kept in the fridge for 2 days or frozen for 2 months (more food safety info here). Keep in freezer bags with the date labeled on the outside. On this page select your currency and confirm your mobile number. The next step is to make sure you're human and not a robot. To do so, just select the box "I'm not a robot. I agree with the Terms and Conditions". After this you will be asked to confirm your email address. Once done, your trial will start.", These are mods that change existing world features, block types, and height levels etc.
    [Show full text]
  • Minecraft Download World Edit Minecraft Download World Edit
    minecraft download world edit Minecraft download world edit. Completing the CAPTCHA proves you are a human and gives you temporary access to the web property. What can I do to prevent this in the future? If you are on a personal connection, like at home, you can run an anti-virus scan on your device to make sure it is not infected with malware. If you are at an office or shared network, you can ask the network administrator to run a scan across the network looking for misconfigured or infected devices. Another way to prevent getting this page in the future is to use Privacy Pass. You may need to download version 2.0 now from the Chrome Web Store. Cloudflare Ray ID: 67a5ce68cdbef14e • Your IP : 188.246.226.140 • Performance & security by Cloudflare. Minecraft download world edit. Please choose a download for your platform. We officially support WorldEdit for Bukkit. Find the plugins folder inside your Bukkit server's folder. Place the downloaded ".jar" file in your plugins folder. Start your server as you may have done before. Either configure your permissions plugin (if you are using one); otherwise, use /op your_name to make yourself a server operator. We officially support WorldEdit for MinecraftForge. Find the mods folder inside your Minecraft client/server's folder. Place the downloaded ".jar" file in your mods folder. Start your server or client as you may have done before. Either configure your permissions plugin (if you are using one); otherwise, use /op your_name to make yourself a server operator. We officially support WorldEdit for Fabric.
    [Show full text]
  • Minecraft As a Tool for Engaging Children in Urban Planning: a Case Study in Tirol Town, Brazil
    International Journal of Geo-Information Article Minecraft as a Tool for Engaging Children in Urban Planning: A Case Study in Tirol Town, Brazil Bruno de Andrade 1,* , Alenka Poplin 2 and Ítalo Sousa de Sena 3 1 School of Architecture, Planning and Environmental Policy, University College Dublin, D04 V1W8 Dublin, Ireland 2 College of Design, Community and Regional Planning Department, Iowa State University, Ames, IA 50011, USA; [email protected] 3 Department of Geography, Federal University of São João del-Rei, São João del-Rei 36307-352, Brazil; [email protected] * Correspondence: [email protected]; Tel.: +353-87-3439101 Received: 17 December 2019; Accepted: 4 March 2020; Published: 13 March 2020 Abstract: The purpose of this paper is to explore the potential of Minecraft’s game environment for urban planning with older and younger children in a public school in Tirol town, Brazil. Minecraft is employed as an innovative tool to tackle the present lack of engagement and involvement of key societal actors such as children and young people in urban planning. Thus, how can games support children to co-design their future city? Which heritage values do they represent graphically in the game environment? Geogames are games that provide a visualization of a real spatial context and in this study, Minecraft is the tool which we use to explore youth engagement. We designed two experiments, which tested Minecraft as a geogame environment for engaging young people in urban planning. These experiments were conducted with children, who emerged as active emancipated actors to bring their values to the planning practice.
    [Show full text]
  • Free Minecraft Skins Xbox One
    Free Minecraft Skins Xbox One Free Minecraft Skins Xbox One CLICK HERE TO ACCESS MINECRAFT GENERATOR Minecraft - Play game_name online free game. Use any type of devices and gadgets to play the well-known game_name game. We are sure you do not need any explanation how to play game_name, because it has become the world legend long ago. Minecraft 1.12.2 ForgeWurst Hacked Client Downloads ForgeWurst 0.11 Beta - AntiSpam, Repair Mode. ForgeWurst 0.10 Beta - AutoFish, MobSpawnESP Explore infinite worlds and build everything from the simplest of homes to the grandest of castles. Play in creative mode with unlimited resources or mine deep into the world in survival mode, crafting weapons and armor to fend off dangerous mobs. Create, explore and survive alone or with friends on mobile devices or Windows 10. EXPAND YOUR GAME: cheat minecraft pocket edition android indonesia minecraft bedwars hacks 1.8 burg minecraft suchen cheat op hack minecraft 1.8 download how to be a hacker in minecraft nintendo switch old minecraft hacking server cloud Minecraft: Windows 10 Edition Beta is also available to purchase for $9.99 in the Windows Store — as long as you're running Windows 10. For more on Windows 10, check out The Verge's review ... free minecraft pocket edition maps hack evillhack minecraft games extreme The best place to get cheats, codes, cheat codes, walkthrough, guide, FAQ, unlockables, tricks, and secrets for Minecraft: Switch Edition for Nintendo Switch. Introducing a wonderful addon that will bring an awesome addon to Minecraft, Terracotta Expansion. An expansion type of add-on that focusing on biomes, mobs, and… Ore Addon for Minecraft v3.1 minecraft hacks 1.7.1 dot hack weapons mod minecraft 1.12 2 you can't cheat in minecraft Minecraft: Java Edition (formerly Minecraft) is the original version of Minecraft, developed by Mojang Studios for Windows, macOS, and Linux.
    [Show full text]
  • Minecraft Story Mode Free
    Minecraft Story Mode Free Minecraft Story Mode Free CLICK HERE TO ACCESS MINECRAFT GENERATOR Rust is a survival game released in 2012 developed by Facepunch Studios. It is similar to Minecraft as it allows players to build and destroy structures using various blocks.", The Minecraft Bedrock Edition is a new game on the market. It's like Java version of Minecraft, but everything is changed to be more like mobile or console. It has all of the original features of Minecraft and you can play with your friends, make new friends and chat in real-time right from your phone.", How to Use the Minecraft Worlds Generator STEP 1 Download the Minecraft worlds generator files here. STEP 2 Download the Minecraft worlds generator tool. STEP 3 Follow the instructions on the tool to generate any worlds you want! Don't forget to switch off your Internet connection so that no other users can access your world. STEP 4 Download and install the Minecraft versions 1.7.8 or 1.7.9 files from this page. STEP 5 Enjoy! You should now have your desired world type ready!", Your Minecraft Bedrock Edition server will be available for players who want to play on their own terms. You can create an unlimited number of servers, each with its own set of options that will cater to a variety of players' needs. Minecraft Bedrock Edition is known for its flexibility, and this new version is no exception. You can choose to allow or disallow griefing at your own discretion in a variety of different ways.
    [Show full text]
  • Games for Field Testing
    Games for field testing IO6: Games for field testing Disclaimer This project has been funded with support from the European Commission (Project number: 2017-1-UK01-KA201-036783). The information on this website reflects the views only of the authors, and the Commission cannot be held responsible for any use which may be made of the information contained therein. 1 EU FUNDED GUINEVERE PROJECT (2017-2019) IO Number: 6 IO Name: Games for field testing Description: These games built in this IO aim to connect different virtual worlds and let the pupils or students telecollaborate with each other through, for example, using a shared scoreboard, shared communication and other means we will explore during the project.The GUINEVERE Virtual World, built in OpenSimulator, will be the main area for developing the games. During and after the development time, this virtual world will be connected to other existing projects (so called grids) in Europe which also run the OpenSimulator software, in order to easily exchange information and accept virtual visitors from the other 'grids'. This connection to other grids can be opened and closed whenever needed. To ensure the virtual world will be a safe place for younger pupils to work on, the accounts of the GUINEVERE Virtual World all have to be approved by the project manager who is in charge of the account creation and approval. No unapproved visitors will be allowed to enter. On the GUINEVERE Virtual World there an island will act as the front door to the virtual world and all users will enter here. Moreover, a separate orientation island will be built there for the teachers and pupils in order to learn the basic steps of working in a virtual world.
    [Show full text]
  • Minecraft Thumbnail Maker Free
    Minecraft Thumbnail Maker Free Minecraft Thumbnail Maker Free CLICK HERE TO ACCESS MINECRAFT GENERATOR minecraft 1.12 1 cheats christian christmas clip art free downloads santa clipart free download clip art borders free download hd clip art pin Freshmaza New Video Song Download 2014 - WhatsApp Status is minecraft free to download If you are ever unsure how to design a bathroom for your Minecraft home, then this is the video for you! With over 40 unique and creative ideas for a wide ra... can you hack in minecraft on a ps4 download wusrt hack minecraft 1.12.2 This Minecraft tutorial explains how to use cheats and game commands with screenshots and step-by-step instructions. In Minecraft, there are cheats and game commands that you can use to change game modes, time, weather, summon mobs or objects, or find the seed used by the World Generator. In this video, I show you exactly how to make a modded Minecraft server in 1.12.2, so you can start playing modded Minecraft with your friends.Make sure you ... Chisels & Bits превратит «квадратный» дом в живописный особняк с красивой мебелью. ... Chisel — мод на декоративные блоки в Minecraft 1.12.2-1.7.10. Lucky Block Mod для Minecraft 1.12.2. free harry potter minecraft skins minecraft free download apk softonic how to install minecraft all versions for free Play Minecraft Survival game online in your browser free of charge on Arcade Spot. Minecraft Survival is a high quality game that works in all major modern web browsers. This online game is part of the Puzzle, Physics, Mobile, and HTML5 gaming categories.
    [Show full text]
  • The Minecraft Session Table of Contents
    Welcome to the Minecraft session Table of Contents Introduction………………………………………………………………………………….Slides 3-8 Creative Mode……………………………………………………………………………… Slide 9 Survival Mode………………………………………………………………………………. Slide 10-16 Tools…………………………………………………………………………………………………… Slide 12 Difficulties…………………………………………………………………………………………. Slide 13 Monsters……………………………………………………………………………………………..Slides 14 & 15 Weapons & Armor………………………………………………………………………………. Slide 16 Hardcore Mode……………………………………………………………………………. Slide 17 Crafting……………………………………………………………………………………….. Slides 18 & 19 Controls……………………………………………………………………………………….. Slide 20 Today’s Session……………………………………………………………………………. Slide 21 What is Minecraft? Minecraft is an open world sandbox game that focuses on building, exploration, and survival. It is an independently developed (indie) game created by Markus Persson and his company Mojang. Although there is an “ending” to the game, the user sets out his/her own objectives, as each action in the game provides rewards. Background Originally known as Cave Game, the first development phase of Minecraft began on May 10th, 2009. After a short development cycle of only 6 days, the first version of the game was publicly released on the 17th of May, 2009. This phase of the game would later become known as Classic, and it can still be played to this day. Over the next couple of years, Minecraft would go through many updates and changes, before being officially released on November 18th, 2011. The Rise of Minecraft Being an indie game, Minecraft lacked a fan base upon initial release. At the time, YouTube personalities began to upload “Let’s Plays,” videos in which people would play a video game and provide live commentary of their interactions. SeaNanners and YogsCast, two successful YouTube channels (at the time roughly 200,000-400,000 subscribers each) presented their adventures in this unknown game to a large audience which multiplied as the videos were spread on social media.
    [Show full text]
  • Arxiv:2012.04751V1 [Cs.AI] 8 Dec 2020
    EvoCraft: A New Challenge for Open-Endedness Djordje Grbic1, Rasmus Berg Palm1, Elias Najarro1, Claire Glanois2, Sebastian Risi1;3 1IT University of Copenhagen, 2Shanghai University, 3modl.ai Abstract. This paper introduces EvoCraft, a framework for Minecraft designed to study open-ended algorithms. We introduce an API that provides an open-source Python interface for communicating with Minecraft to place and track blocks. In contrast to previous work in Minecraft that focused on learning to play the game, the grand challenge we pose here is to automatically search for increasingly complex artifacts in an open-ended fashion. Compared to other environments used to study open-endedness, Minecraft allows the construction of almost any kind of structure, including actuated machines with circuits and mechanical com- ponents. We present initial baseline results in evolving simple Minecraft creations through both interactive and automated evolution. While evolution succeeds when tasked to grow a structure towards a specific target, it is unable to find a solution when rewarded for creating a simple machine that moves. Thus, EvoCraft offers a challenging new environment for au- tomated search methods (such as evolution) to find complex artifacts that we hope will spur the development of more open-ended algorithms. A Python implementation of the EvoCraft framework is available at: github.com/real-itu/Evocraft-py. 1 Introduction Artificial intelligence (AI) approaches have shown remarkable advances in the last couple of years, solving increasingly complex challenges. A key driver in these advances has been specific environ- ments and competitions that allowed different approaches to be easily compared. For example, developing frameworks and learning environments, such as the StarCraft II Learning Environment [41] has spurred the development of many recent advances in the field [9,41].
    [Show full text]
  • Schematic Skywars
    Schematic Skywars I have developed some schematics for use with SkyWars Servers. The beacons are where the players are going to spawn in the map. These schematics are free. SkyWars Map! First Map Of SkyWars: Map For 1.8. Others creations from AndreSAS · Bluey Areney! By Jc · Bridge Of Brick - 1.7 1.8 - Jc · House - Jc Whit Elevator. mapa e schematic de skywars completo para download. SF Games Tutorial. This map features a nature-themed design with cool colors. All islands, loot and utilities are spread evenly throughout the map, providing a fair.. Free Skywars Map - Schematic Download Descarga mapas para SkyWars / Mapas para. (Skywars). 44 replies wb51ma.png. Download: mediafire.com/download/npch3n11v187385/skywars_lobby.schematic. -Jpsch_. Posted Mar 28, 15. Schematic Skywars Read/Download Skywars lobby by StarkGames, a Minecraft creation. Today I have a SkyWars map to submit! If I messed up the schematic, let me know and I'll brush up on my MCEdit skills, because I really suck at it x) Here. The Minecraft Hub Skywars Schematic Project was contributed by Nessvno. Hi Guys! I am Nessvno, an Italian with the build passion. This is a work in my. SKY WARS CLASSIC. This map was made in two hours to schematic - mediafire.com/?a24ty4pn3442081. 0. votes. Posted 13/1/15. ImTheIce. Dan the map looks absolutely awesome. The only current issue I find with it is how the 8 islands would drop down onto a platform (the main portion of the map). Installation Download SkyWars.jar and put it in your plugins/ directory Place your schematics in the plugins/SkyWars/schematics directory Set the lobby with /sw.
    [Show full text]
  • Minecraft Bedrock Free with Java
    Minecraft Bedrock Free With Java Minecraft Bedrock Free With Java CLICK HERE TO ACCESS MINECRAFT GENERATOR Players complete a challenge and win prizes such as weapons, armor, unique items, etc. Creative Games Servers: Players can build anything they want with real-world objects inside the game.", The tool will also allow you to set up an infinite supply of resources, and it won't take ages to get the materials for the things you want to build. With Minecraft Hack, all you need is a bit of time and nothing else.", What is Minecraft? [Minecraft Basics]", Gamy also offers combat friendly Minecraft servers so you can play on your own server without being attacked by other players or griefed by admins. If you want to play on a combat friendly server, click here for more information.", How to Download and Install Minecraft Version 1.5.2 STEP 1 Download the Minecraft version 1.5.2 files here. STEP 2 Download the Minecraft version 1.5.2 worlds generator here (optional). STEP 3 Download a Winrar alternative called 7zip and use it to extract the downloaded file.. STEP 4 Locate the download folder and copy over the contents of it into your Minecraft game folder located at C:\Users\YOUR_USERNAME_HERE\AppData\Roaming\.minecraft\. STEP 5 Restart your computer. Your Minecraft version 1.5.2 world should now be ready to play! To confirm, in the game settings, you should see the 'New world' button that reads "1.5". If you don't see this button, then something has not gone right - make sure you install the Minecraft worlds generator before trying again!
    [Show full text]