Skip to content

Instantly share code, notes, and snippets.

View msjyoo's full-sized avatar

Michael Yoo msjyoo

View GitHub Profile
@msjyoo
msjyoo / MCPE 0.7.3 Protocol Information - Burger Vitrine
Created August 18, 2013 12:52
A detailed information sheet of the protocols and IDs used in the 0.7.3 version of MCPE.
<!doctype html>
<html>
<head>
<title>Burger Vitrine</title>
<link rel="stylesheet" href="resources/style.css" />
<script src="resources/jquery.js"></script>
<script src="resources/vitrine.js"></script>
</head>
<body>
package com.willowtreeapps.demo;
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.Window;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends Activity {
<?php
/*
__PocketMine Plugin__
name=ChatGuard
description=ChatGuard
version=1.1.0
author=sekjun9878
class=ChatGuard
apiversion=8,9,10,11,12,13,14
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 lucienajax
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 danbell245
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 King_Budder1
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 Septer8
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 Daud101
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 alacho
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 Chriscar90
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1 tblucas alacho lucienajax Daud101 tblucas
2013-10-07 20:47:08 [INFO] * SinglLADDY lucienajax lucienajax King_Budder1
/**
____ _ _ __ __ _ __ __ ____
| _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
| |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
| __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
string(1) "1"
}
["markup"]=>
string(0) ""
["WAPodsubpods"]=>
array(1) {
[0]=>
array(6) {
["attributes"]=>
array(1) {
<?php
/*
name=BattleField
description=A heavily customized PVP Ranking plugin
author=sekjun9878
version=1.0.0
class=BattleField
apiversion=9
*/
Incorrect way
use PocketMine\ASpace\Block ABlock;
use PocketMine\BSpace\Block as BBlock;
ABlock::Blah;
BBlock::Blah;
Correct Way
@msjyoo
msjyoo / PocketMine_Syntax_Example.php
Created July 6, 2014 12:04
This Gist an example code complying with the PocketMine-MP Contributing Syntax Standard.
<?php
namespace DeveloperName\Example;
class ExampleClass{
const EXAMPLE_CLASS_CONSTANT = 1;
public $examplePublicVariable = "defaultValue";
private $examplePrivateVariable;
public function __construct($firstArgument, &$secondArgument = null){