This tool is used to generate the data found in BedrockData.
Place the script in the root of a PocketMine-MP source code repository. Make sure the composer autoloader has been appropriately generated.
php decoder.php input_file.txt
/* ==UserStyle== | |
@name GitHub better profile status | |
@version 1.0.0 | |
@description Puts the status below the profile picture and makes it always show | |
@namespace GitHub | |
@author XenialDan | |
@homepageURL https://gist.github.com/thebigsmileXD/667a5a024be03d4ac788dde9d2cb69d1 | |
@supportURL https://gist.github.com/thebigsmileXD/667a5a024be03d4ac788dde9d2cb69d1 | |
@updateURL https://gist.githubusercontent.com/thebigsmileXD/667a5a024be03d4ac788dde9d2cb69d1/raw/1a78e232ab96ecde110eea0fca5e566331533a2a/better-github-profile-status.css | |
==/UserStyle== */ |
.dl_body { | |
min-height: 100%; | |
} | |
.dl_body > * { | |
display: none !important; | |
} | |
.dl_body > .dl_translator_page_container { | |
display: flex !important; | |
height: 100%; | |
width: 100%; |
using System; | |
using System.Runtime.InteropServices; | |
using System.Windows.Interop; | |
namespace HostingAppTest | |
{ | |
// based on https://stackoverflow.com/q/30186930/426315 | |
public class HwndHostEx : HwndHost | |
{ | |
private readonly IntPtr _childHandle; |
// ==UserScript== | |
// @name autounping | |
// @namespace Violentmonkey Scripts | |
// @match *://discord.com/* | |
// @grant none | |
// @version 1.1 | |
// @author - | |
// @description 4/21/2021, 6:00:42 PM | |
// @noframes | |
// ==/UserScript== |
This tool is used to generate the data found in BedrockData.
Place the script in the root of a PocketMine-MP source code repository. Make sure the composer autoloader has been appropriately generated.
php decoder.php input_file.txt
A big oak tree is made up of a main trunk and multiple branches. A "branch" always contains leaves, but may not always contain logs.
heightLimit
: The actual height of the tree, including leaf blocks at the top (between 5 and 16)trunkHeight
: The height of the trunkleafDistanceLimit
: The distance from a log that leaves can generate, set to 4 for sapling growth, though appears to be set to 5 for natural growth for some reason<?php | |
const GRID = 16;//16 * 16 icons | |
$filename = basename("glyph_E1",".png"); | |
$startChar = hexdec(substr($filename, strrpos($filename, "_")+1)."00"); | |
$i=0; | |
do{ | |
$x = $i % GRID; | |
$z = ($i - ($i % GRID)) / GRID; | |
$ci = $startChar + $i;//char index | |
$char = mb_chr($ci); |
My folder structure: | |
PM | |
- virions | |
-- virion.phar | |
- pmmp | |
-- <minecraft_version> i.e. 1.14 | |
--- pmmp.phar | |
I added the folders "1.14" and "virions" to "External Libraries" on the bottom of the "Project" list/sidebar | |
right click "PHP" and choose "Include path" |
// File automatically generated by MinecraftSymbols | |
// Address : 04f42008 | |
extern "C" | |
{ | |
void* GImGui; | |
} | |
// Address : 008c6b4d | |
extern "C" |