Advertisement
StealthyExpertX

PE/Bedrock/WIN10 Chunk Format

Oct 11th, 2017
1,053
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.62 KB | None | 0 0
  1. NBT PE/Bedrock/Win10 Chunk Format Compiled By StealthyExpert, @RedstonerLabs & iPxD Mods, @iPxD_Official
  2.  
  3. Credit's to jocopa3 for creating A list of almost every Entity/TileEntity/Biome/Block/Item ID
  4. https://gist.github.com/jocopa3/f8c9f9158ede0e9d057781188ba440f5
  5.  
  6. Tools used to create this page MCCToolChest, MCCToolChest-PE, Universal Minecraft Editor
  7. http://mcctoolchest.com/download
  8. https://www.universalminecrafteditor.com
  9.  
  10.  
  11.  
  12. NBT/CODE RESOURCES:
  13.  
  14. book & quill
  15. http://www.mediafire.com/file/5wjmnod7tju78a5/Book_%26_Quill_Formats.zip
  16. nbt pe/bedrock library v1 all tileentities
  17. http://www.mediafire.com/file/255tl9r3d9jdih5/PE-BEDROCK+NBT+Library+V1.zip
  18.  
  19. (CHUNK FORMAT)
  20.  
  21. (ITEM FORMAT)
  22.  
  23. (ENTITY FORMAT)
  24.  
  25. (MOBS FORMAT)
  26.  
  27. (TILEENTITY FORMAT)
  28.  
  29. (COLOR FORMAT)
  30.  
  31. §0 Black
  32. §1 Dark Blue
  33. §2 Dark Green
  34. §3 Dark Aqua
  35. §4 Dark Red
  36. §5 Dark Purple
  37. §6 Gold
  38. §7 Gray
  39. §8 Dark Gray
  40. §9 Blue
  41. §a Green
  42. §b Aqua
  43. §c Red
  44. §d Light Purple
  45. §e Yellow
  46. §f White
  47.  
  48. §k Obfuscated
  49. §l Bold
  50. §m Strikethrough
  51. §n Underline
  52. §o Italic
  53. §r Reset
  54.  
  55. (COMMANDS/COMMAND BLOCK FORMAT)
  56.  
  57. (STRUCTURE FORMAT)
  58.  
  59. (LEVEL FORMAT)
  60.  
  61. (MAP FORMAT)
  62.  
  63. (NBT TAG FORMAT)
  64.  
  65. (PLAYER FORMAT)
  66. THE ROOT TAG_Compound:
  67.  
  68. [Abilities/permissions of the player.]
  69. TAG_Compound:abilities(
  70.  
  71. [If player can attack mobs.]
  72. TAG_Byte:attackmobs = True or False
  73.  
  74. [If player can attack players.]
  75. TAG_Byte:attackplayers = True or False
  76.  
  77. [If player can build & mine.]
  78. TAG_Byte:buildandmine = True or False
  79.  
  80. [If player can use switches & doors.]
  81. TAG_Byte:doorsandswitches = True or False
  82.  
  83. [If player is flying currently.]
  84. TAG_Byte:flying = True or False
  85.  
  86. [If player can instantly build/break blocks like in creative mode.]
  87. TAG_Byte:instabuild = True or False
  88.  
  89. [If player is invulnerable to all damage, caused by mobs, entities, players, ect.]
  90. TAG_Byte:invulnerable = True or False
  91.  
  92. [Unknown what effect this has on the player?]
  93. TAG_Byte:lightning = True or False
  94.  
  95. [If the player can fly.]
  96. TAG_Byte:mayfly = True or False
  97.  
  98. [If the player is op he can use commands]
  99. TAG_Byte:op = True or False
  100.  
  101. [If the player can open containers such as, Chest, Ender Chest, Dispensers.]
  102. TAG_Byte:opencontainers = True or False
  103.  
  104. [If the player can teleport self & other players.]
  105. TAG_Byte:teleport= True or False
  106.  
  107. [If player has permissions at certain levels 3 is the host permission level.]
  108. TAG_Int:permissionsLevel = 3 is Host, 2 is unknown, 1 is unknown, 0 is unknown.
  109.  
  110. [If player has permissions at certain levels 2 is the host permission level.]
  111. TAG_Int:playerPermissionsLevel = 3 is unknown, 1 is unknown, 2 is host, 0 is unknown.
  112.  
  113. [If player has fly Speed at 0.5 which is the default fly speed.]
  114. TAG_Float:flySpeed = 0.5 default, 0 cant fly/move at all.
  115.  
  116. [If player has walk Speed at 0.1 which is the default walk speed.]
  117. TAG_Float:walkSpeed = 0.1 default, 0 cant walk at all.
  118. )
  119.  
  120. [Default spawn inventory of all players that first join the world.]
  121. TAG_Compound:fixedInventory(
  122.  
  123. [Default spawn inventory of all players that first join the world.]
  124. TAG_List:fixedInventoryItems is empty by default you can add items to this list tag, See (ITEM FORMAT) for details.
  125. )
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133. (LOOT TABLE FORMAT)
  134.  
  135. (ENTITY IDS)
  136. chicken
  137. cow
  138. pig
  139. sheep
  140. wolf
  141. villager
  142. mooshroom
  143. squid
  144. rabbit
  145. bat
  146. iron_golem
  147. snow_golem
  148. ocelot
  149. horse
  150. donkey
  151. mule
  152. skeleton_horse
  153. zombie_horse
  154. polar_bear
  155. llama
  156. zombie
  157. creeper
  158. skeleton
  159. spider
  160. zombie_pigman
  161. slime
  162. enderman
  163. silverfish
  164. cave_spider
  165. ghast
  166. magma_cube
  167. blaze
  168. zombie_villager
  169. witch
  170. stray
  171. husk
  172. wither_skeleton
  173. guardian
  174. elder_guardian
  175. wither
  176. ender_dragon
  177. shulker
  178. endermite
  179. vindicator
  180. item
  181. tnt
  182. falling_block
  183. xp_bottle
  184. xp_orb
  185. eye_of_ender_signal
  186. ender_crystal
  187. shulker_bullet
  188. dragon_fireball
  189. arrow
  190. snowball
  191. egg
  192. painting
  193. minecart
  194. fireball
  195. splash_potion
  196. ender_pearl
  197. leash_knot
  198. wither_skull
  199. boat
  200. wither_skull_dangerous
  201. lightning_bolt
  202. small_fireball
  203. area_effect_cloud
  204. hopper_minecart
  205. tnt_minecart
  206. chest_minecart
  207. command_block_minecart
  208. lingering_potion
  209. llama_spit
  210. evocation_fang
  211. evocation_illager
  212. vex
  213.  
  214. (SPAWN EGGS IDS)
  215.  
  216. (PARTICLE IDS)
  217.  
  218. (BIOME IDS)
  219.  
  220. (ENCHANT IDS)
  221.  
  222. protection 0
  223. fire_protection 1
  224. feather_falling 2
  225. blast_protection 3
  226. projectile_protection 4
  227. thorns 5
  228. respiration 6
  229. depth_strider 7
  230. aqua_affinity 8
  231. sharpness 9
  232. smite 10
  233. bane_of_arthropods 11
  234. knockback 12
  235. fire_aspect 13
  236. looting 14
  237. efficiency 15
  238. silk_touch 16
  239. durability 17
  240. fortune 18
  241. power 19
  242. punch 20
  243. flame 21
  244. infinity 22
  245. luck_of_the_sea 23
  246. lure 24
  247. frost_walker 25
  248. mending 26
  249.  
  250. (ATTRIBUTE IDS)
  251. minecraft:health
  252. minecraft:luck
  253. minecraft:player.exhaustion
  254. minecraft:movement
  255. minecraft:absorption
  256. minecraft:knockback_resistance
  257. minecraft:fall_damage
  258. minecraft:follow_range
  259. minecraft:attack_damage
  260. minecraft:player.hunger
  261. minecraft:player.saturation
  262. minecraft:player.level
  263. minecraft:player.experience
  264.  
  265.  
  266. (POTION IDS)
  267.  
  268. (ITEM IDS)
  269. iron_shovel 256
  270. iron_pickaxe 257
  271. iron_axe 258
  272. flint_and_steel 259
  273. apple 260
  274. bow 261
  275. arrow 262
  276. coal 263
  277. coal 0
  278. charcoal 1
  279. diamond 264
  280. iron_ingot 265
  281. gold_ingot 266
  282. iron_sword 267
  283. wooden_sword 268
  284. wooden_shovel 269
  285. wooden_pickaxe 270
  286. wooden_axe 271
  287. stone_sword 272
  288. stone_shovel 273
  289. stone_pickaxe 274
  290. stone_axe 275
  291. diamond_sword 276
  292. diamond_shovel 277
  293. diamond_pickaxe 278
  294. diamond_axe 279
  295. stick 280
  296. bowl 281
  297. mushroom_stew 282
  298. golden_sword 283
  299. golden_shovel 284
  300. golden_pickaxe 285
  301. golden_axe 286
  302. string 287
  303. feather 288
  304. gunpowder 289
  305. wooden_hoe 290
  306. stone_hoe 291
  307. iron_hoe 292
  308. diamond_hoe 293
  309. golden_hoe 294
  310. wheat_seeds 295
  311. wheat 296
  312. bread 297
  313. leather_helmet 298
  314. leather_chestplate 299
  315. leather_leggings 300
  316. leather_boots 301
  317. chainmail_helmet 302
  318. chainmail_chestplate 303
  319. chainmail_leggings 304
  320. chainmail_boots 305
  321. iron_helmet 306
  322. iron_chestplate 307
  323. iron_leggings 308
  324. iron_boots 309
  325. diamond_helmet 310
  326. diamond_chestplate 311
  327. diamond_leggings 312
  328. diamond_boots 313
  329. golden_helmet 314
  330. golden_chestplate 315
  331. golden_leggings 316
  332. golden_boots 317
  333. flint 318
  334. porkchop 319
  335. cooked_porkchop 320
  336. painting 321
  337. golden_apple 322
  338. sign 323
  339. wooden_door 324
  340. bucket 325
  341. bucket 0
  342. milk 1
  343. bucketWater 8
  344. bucketLava 10
  345. minecart 328
  346. saddle 329
  347. iron_door 330
  348. redstone 331
  349. snowball 332
  350. boat 333
  351. oak 0
  352. spruce 1
  353. birch 2
  354. jungle 3
  355. acacia 4
  356. big_oak 5
  357. leather 334
  358. brick 336
  359. clay_ball 337
  360. reeds 338
  361. paper 339
  362. book 340
  363. slime_ball 341
  364. chest_minecart 342
  365. egg 344
  366. compass 345
  367. fishing_rod 346
  368. clock 347
  369. glowstone_dust 348
  370. fish 349
  371. cooked_fish 350
  372. dye 351
  373. black (ink sac) 0
  374. red 1
  375. green 2
  376. brown (cocoa beans) 3
  377. blue 4
  378. purple 5
  379. cyan 6
  380. silver 7
  381. gray 8
  382. pink 9
  383. lime 10
  384. yellow 11
  385. lightBlue 12
  386. magenta 13
  387. orange 14
  388. white (bonemeal) 15
  389. bone 352
  390. sugar 353
  391. cake 354
  392. bed 355
  393. repeater 356
  394. cookie 357
  395. map_filled 358
  396. default 0
  397. monument 3
  398. mansion 4
  399. shears 359
  400. melon 360
  401. pumpkin_seeds 361
  402. melon_seeds 362
  403. beef 363
  404. cooked_beef 364
  405. chicken 365
  406. cooked_chicken 366
  407. rotten_flesh 367
  408. ender_pearl 368
  409. blaze_rod 369
  410. ghast_tear 370
  411. gold_nugget 371
  412. nether_wart 372
  413. potion 373
  414. glass_bottle 374
  415. spider_eye 375
  416. fermented_spider_eye 376
  417. blaze_powder 377
  418. magma_cream 378
  419. brewing_stand 379
  420. cauldron 380
  421. ender_eye 381
  422. speckled_melon 382
  423. spawn_egg 383
  424. experience_bottle 384
  425. fireball 385
  426. emerald 388
  427. frame 389
  428. flower_pot 390
  429. carrot 391
  430. potato 392
  431. baked_potato 393
  432. poisonous_potato 394
  433. emptyMap 395
  434. emptyMap 0
  435. emptyLocatorMap 2
  436. golden_carrot 396
  437. skull 397
  438. skeleton 0
  439. wither 1
  440. zombie 2
  441. player 3
  442. creeper 4
  443. dragon 5
  444. carrotOnAStick 398
  445. netherStar 399
  446. pumpkin_pie 400
  447. enchanted_book 403
  448. comparator 404
  449. netherbrick 405
  450. quartz 406
  451. tnt_minecart 407
  452. hopper_minecart 408
  453. prismarine_shard 409
  454. hopper 410
  455. rabbit 411
  456. cooked_rabbit 412
  457. rabbit_stew 413
  458. rabbit_foot 414
  459. rabbit_hide 415
  460. horsearmorleather 416
  461. horsearmoriron 417
  462. horsearmorgold 418
  463. horsearmordiamond 419
  464. lead 420
  465. nameTag 421
  466. prismarine_crystals 422
  467. muttonRaw 423
  468. muttonCooked 424
  469. end_crystal 426
  470. spruce_door 427
  471. birch_door 428
  472. jungle_door 429
  473. acacia_door 430
  474. dark_oak_door 431
  475. chorus_fruit 432
  476. chorus_fruit_popped 433
  477. dragon_breath 437
  478. splash_potion 438
  479. lingering_potion 441
  480. command_block_minecart 443
  481. elytra 444
  482. shulker_shell 445
  483. totem 450
  484. iron_nugget 452
  485. beetroot 457
  486. beetroot_seeds 458
  487. beetroot_soup 459
  488. salmon 460
  489. clownfish 461
  490. pufferfish 462
  491. cooked_salmon 463
  492. appleEnchanted 466
  493.  
  494. (BLOCK IDS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement