0 => "Air"
1 => "Stone"
2 => "Grass"
3 => "Dirt"
4 => "Cobblestone"
5 => "WoodenPlank"
β β | |
βββ ββββ | |
ββββ ββββββ | |
βββββββββββββββββββ | |
βββββββββββββββββββββ | |
βββββββββββββββββββββββ | |
βββββββββββββββββββββββββ | |
βββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββ |
<?php | |
/** | |
* @name VirtualInventories | |
* @main VirtualInventories\Loader | |
* @version 1.0.0 | |
* @api 1.12.0 | |
* @description Way to open virtual custom inventories | |
* @author iksaku | |
*/ |
#!/bin/bash | |
MAGIC='fefd' | |
SESSIONTYPE='09' | |
SESSION='01020304' | |
LONG="0" | |
while getopts ":l" opt; do | |
case $opt in |
alert('hello ' + document.location.href); |
<?php | |
$a = new A(); | |
$reflection = new \ReflectionClass($a); | |
$property = $reflection->getProperty('privateProperty'); | |
$property->setAccessible(true); | |
$property->setValue($a, 'new-value'); | |
echo $a->getPrivateProperty(); | |
//outputs: |
All target selectors start with @
. The following character is the selector type. For example, @p
means 'closest player'.
Target selectors may have additional, optional arguments. You can specify these in [ ]
, using the syntax a=0
. For example, @p[a=0,b=5,c=-500]
.
There is a special short syntax for just specifying x
, y
, z
and r
arguments; simply list their values separated by a comma, without x=
. For example: @p[100,64,-100,5]
for 5 range, x=100
, y=64
and z=-100
. Each of these are optional and skippable by leaving them empty. For example, to just specify y
coordinate: @p[,64]
.
x
- X coordinate for search center. Default is senders coordinate, or 0.y
- Y coordinate for search center. Default is senders coordinate, or 0.