Skip to content

Instantly share code, notes, and snippets.

@torralbaalla
torralbaalla / README.md
Last active May 27, 2021 15:43
MCPI-Reborn Dockerless build.

Minecraft Pi Reborn - Dockerless build

Warnings

Only for RPis - Tested on a RPi 4B - You still need Full/Fake KMS - Not magic. Conflicts with minecraft-pi-reborn-* Unsupported - Use at your own risk.

Script(s) to build MCPI-Reborn without Docker.

dockerless-build.sh gets MCPI-Reborn, applies some patches (in the dockerless.diff file, you have to download it too), and builds it without the Docker dependency. The resulting DEB will be placed under minecraft-pi-reborn. Then you can install it and run minecraft-pi or try to use MCPIL to launch it (it should be compatible).

@torralbaalla
torralbaalla / items.h
Last active February 14, 2021 15:02 — forked from TheBrokenRail/item.cpp
MCPI items/tiles
void* shovelIron = 0x17ba64;
void* pickaxeIron = 0x17ba68;
void* hatchetIron = 0x17ba6c;
void* flintAndSteel = 0x17ba70;
void* apple = 0x17ba74;
void* arrow = 0x17a878;
void* emerald = 0x17ba80;
void* ingotIron = 0x17ba84;
void* ingotGold = 0x17ba88;
void* swordIron = 0x17ba8c;
@torralbaalla
torralbaalla / dice.js
Last active November 15, 2020 13:07
Dice in JavaScript with an (aprox.) 49.7%-50.3% distribution.
function dice()
{
var seed = Date.now() * 11 ^ ~31;
var a = seed << 8;
var b = seed << 16;
var c = seed << 32;
var d = seed << 64;
a = a ^ b;
b = b ^ c;
c = c ^ d;
@torralbaalla
torralbaalla / README.md
Last active June 11, 2022 00:54
Minecraft Pi Patched.

MCPI Patched

How to use this patch?

First, you'll need to make sure you have libsdl2-dev and libopengl-dev installed:

sudo apt-get install -y libsdl2-dev libopengl-dev

If the second isn't avaiable, install libgl-dev.

Then compile it as following:

@torralbaalla
torralbaalla / plugins.c
Last active July 24, 2020 17:11
E(P)API: environ (Plugin) API.
/*
* plugins.c
*
* Copyright 2020 Alvarito050506 <donfrutosgomez@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
// ==UserScript==
// @name Test
// @namespace https://boxcrittersmods.ga
// @version 0.1.0
// @description Test
// @author Alvarito050506
// @match https://boxcritters.com/play/index.html
// @grant unsafeWindow
// @require https://cdn.boxcrittersmods.ga/crittersdk/master/src/lib.js
// @run-at document-end
// ==UserScript==
// @name a
// @namespace https://boxcrittersmods.ga
// @version a
// @description s
// @author A
// @match https://boxcritters.com/play/index.html
// @grant unsafeWindow
// @require https://cdn.boxcrittersmods.ga/crittersdk/master/src/lib.js
// @run-at document-end
//==UserScript==
// @name Test
// @namespace https://boxcrittersmods.ga
// @version 0.1.0
// @description Testeando
// @author Alvarito050506
// @match https://boxcritters.com/play/*
// @match http://boxcritters.com/play/*
// @run-at document-end
// @grant none
//==UserScript==
// @name Test
// @namespace https://boxcrittersmods.ga
// @version 0.1.0
// @description Testeando
// @author Alvarito050506
// @match https://boxcritters.com/play/*
// @match http://boxcritters.com/play/*
// @run-at document-end
// @grant none
@torralbaalla
torralbaalla / client.min.js
Last active November 25, 2019 13:58
Example Box Critters standard mod.
var itemSS,itemData;function World(t,e){console.info("-----------------------------------"),console.info("[BOX CRITTERS]"),console.info("A awesome world created by RocketSnail and modded by the community!"),console.info("-----------------------------------"),console.info("https://twitter.com/rocketsnail"),console.info("https://rocketsnail.com"),console.info("-----------------------------------"),this.events={},this.player,this.settings={lobby:"tavern"},this.critters={},this.symbols={},this.effects={},this.items={},this.stage=new createjs.Stage(t),this.stage.room=new createjs.Container,this.stage.menu=new createjs.Container,this.stage.gear=new createjs.Container,this.stage.addChild(this.stage.room),this.stage.addChild(this.stage.menu),this.stage.addChild(this.stage.gear),this.beep=new BeepContainer(850,480),this.stage.addChild(this.beep),this.map=new MapContainer(this),this.stage.addChild(this.map),this.room,e&&(this.socket=e,this.chat=new Chat(e,this),this.code=new Code(e,this),this.handleSocket(e,this));var