HACKING MINECRAFT 1. LET’S OVERCLOCK Type sudo raspi-config Change 7: Over clock 900Mhz at max Change 8: Select memory share = 128MB.

Slides:



Advertisements
Similar presentations
Using Jeroo Dianne Meskauskas
Advertisements

Support.ebsco.com Using the Search History Feature Tutorial.
COMPUTER PROGRAMMING Task 1 LEVEL 6 PROGRAMMING: Be able to use a text based language like Python and JavaScript & correctly use procedures and functions.
MINECRAFT MOD PROGRAMMING Part III of Minecraft: Pi Edition October 31, 2015.
PIIT Computer Science Summer Camp - Alice July 10, 2012 Brenda Parker Computer Science Department MTSU.
V Avon High School Tech Club Agenda Old Business –Executive Committee –LCCUG meeting volunteer(s) –Reward Points Program New Business –Weekly.
Blockly Minecraft Task 1 ) Please copy the example task. Task by task
Right-click on the colored box and remove it.
S A B D C T = 0 S gets message from above and sends messages to A, C and D S.
HACKING MINECRAFT. LET’S OVERCLOCK sudo raspi-config Change 7: Over clock 900Mhz at max Change 8: Select memory share = 128MB.
Installing Hugs on Windows March 31, Installing Hugs Go to Click on the Hugs link under implementations.
Whiteboardmaths.com © 2007 All rights reserved
This is a Flash Drive. It is also known as a: Key Drive, Thumb Drive, Jump Drive, USB Drive, Pen Drive.
The “Cool” Way to Share Your PowerPoint. Slideshare 1. Go to 2. Sign up for a free account – Click.
Learning to program using Minecraft. Learning Objective Know what Minecraft is and to explain some of it’s uses Build a simple house in creative mode.
SliTaz GNU/Linux is a free operating system working completely in memory from removable media such as a CD rom or USB key. It is light, speedy and fully.
Data Analysis Lab 04 Regression and Multiple Regression.
Basic Instructions on how to use One Drive and share files. ONE Drive Your LogoYour own footer.
Block Operator User Manual for eblocks.bih.nic.in.
Hey, Ferb, I know what we’re gonna do today! Aims: Use formatted printing. Use the “while” loop. Understand functions. Objectives: All: Understand and.
How to Post my Response. Click! To reply or respond to an existing topic/question, start by reading the message in the topic. Reply from within each.
Helping Plants Grow Well
Intro to Python Adriane Huber Debbie Bartlett Python Lab #1Python Lab #1 1.
Healthy food in Nepal School Net Japan Naoto Kurimoto.
Water Pollution How water polluted in world? Effects of water pollution.
PATTERNS CLASS 4 By :Ms.K.Karthika Patterns are things that are arranged following a rule or rule Example: there is a pattern in these numbers: 2, 7,
Advanced Outlook If I only had a brain!. C ONTACTS Create a business card Your name in contacts Click on ”Business Card” Upload a background image Type.
Save Her Save Her Save Her I SAID SAVE HER!.
Programming for GCSE 1.0 Beginning with Python T eaching L ondon C omputing Margaret Derrington KCL Easter 2014.
Make a dice challenge! This is a starter activity and should take 5 minutes [ slide 1 ] 1.Log in to your computer 2.Open IDLE 3.Copy the code below in.
Introduction to Python Lesson 1 First Program. Learning Outcomes In this lesson the student will: 1.Learn some important facts about PC’s 2.Learn how.
Python module distribution. Modules in Python Modules are everywhere.
Hacking Minecraft on the Raspberry Pi using Python
HACKING MINECRAFT.
Introduction to Minecraft Pi Aims: To know what Minecraft is To learn how to enter code into Minecraft Pi To successfully enter at least 2 Python programs.
Outlook to the Max Create mailbox folders and public folders o Create and apply rules to manage, forward messages o Use rules to automatically reply to.
Print out your name blocks! (15 points). Create a new “idw”
Unit 3. Care for the Earth. the earth cut down trees.
Hacking Minecraft on the Raspberry Pi using Python Lesson 2 1.
Lecture 6: Basic Entities TEALS MINECRAFT PROJECT.
Installing git In Linux: sudo apt-get install git In Windows: download it from run the setuphttp://git-scm.com/download/win.
Login using your own username and password Go to programming -> geany Enter the following program: Open LX Terminal, enter these 2 commands from mcpi.minecraft.
Interacting Sprites Module 3: Investigation 1
Sharing and Synching files
Customizing the Quick Access Toolbar in Microsoft Office
Venture A guide to Advance ing
Attach In Gmail very Easily
Hacking Minecraft on the Raspberry Pi using Python
Hacking Minecraft on the Raspberry Pi using Python
Hacking Minecraft on the Raspberry Pi using Python
Shall we make a Christmas Card?
Shall we make a Christmas Card?
Print out your name blocks! (15 points)
Shall we make a Christmas Card?
BBC Microbit.
Hacking Minecraft on the Raspberry Pi using Python
In peer-to-peer networks such as gnutella, each host must search out other hosts. When a host finds another host, these hosts become neighbors. Often a.
Shall we make a Christmas Card?
4/21.
Python programming exercise
CSCI N207 Data Analysis Using Spreadsheet
Programming In Lesson 4.
Java Programming with BlueJ Objectives
Move this box to see the hints (there are two hints for this code)
More to Learn Creating a shortcut
Input and Output Python3 Beginner #3.
Accessing SMIRF Please go to: mwr. army
Project Name name.
Functions Overview © 2018 Kris Jordan.
if-then-else Conditional Control Statement
Presentation transcript:

HACKING MINECRAFT 1

LET’S OVERCLOCK Type sudo raspi-config Change 7: Over clock 900Mhz at max Change 8: Select memory share = 128MB

HACKING MINECRAFT In the LX Terminal: sudo idle Open a ‘new’ window Type the code and click save Save into the PI/Home folder Pess F5 to save and run the code

SENDING A MESSAGE from mcpi import minecraft​ ​mc = minecraft.Minecraft.create() mc.postToChat("Hello world")

WHERE AM I? from mcpi import minecraft​ ​mc = minecraft.Minecraft.create() import time while True: time.sleep(1.0) pos = mc.player.getPos() print pos.x, pos.y, pos.z

TELEPORTATION from mcpi import minecraft​ ​mc = minecraft.Minecraft.create() x, y, z = mc.player.getPos() mc.player.setPos(x, y+100, z) 1.try teleporting somewhere else

PLANTING A FLOWER from mcpi import minecraft​ ​mc = minecraft.Minecraft.create() import time flower = 38 while True: x, y, z = mc.player.getPos() mc.setBlock(x, y, z, flower) time.sleep(0.1)

WALKING ON WATER from mcpi import minecraft​ ​mc = minecraft.Minecraft.create() import time Water = 9 Ice = 79 while True: x, y, z = mc.player.getPos() blockBelow = mc.getBlock(x, y – 1, z) if blockBelow == Water: mc.setBlock(x, y – 1, z, ice)

10 x 10 x10 BLOCK from mcpi import minecraft​ ​mc = minecraft.Minecraft.create() import time stone = 1 x, y, z = mc.player.getPos() mc.setBlocks(x+1, y+1, z+1, x+11, y+11, z+11, stone) 1.Can you remove the middle so it is hollow? 2.Add a door? 3.Add a roof?