Loot Bag Plus Addon Mcpe

Loot Bag + Addon (1.20) enhances your gaming experience by enabling you to uncover diverse treasures through defeating entities. Depending on the difficulty of the entity, the rewards escalate. Furthermore, this addon provides extensive customization options. For additional details, refer to the feature section below.

Loot Bag + Addon (1.20) - MCPE/Bedrock Mod 1

Features:

How does it work:

  • Through the give command or in the creative you can find 6 item Loot Bag ( common, uncommon, rare, epic, legendary ), one Loot Bag Book

Loot Bag + Addon (1.20) - MCPE/Bedrock Mod 2

Loot Bag Book:

  • This item will allow you to preview the treasures you might find inside the loot bags. Crafting item:

Loot Bag + Addon (1.20) - MCPE/Bedrock Mod 3

  • By clicking on one of the loot bag icons, you will be able to view information about the bag itself and its contents. You can navigate between pages using the arrows. Pages are automatically generated each time you add a new loot in the appropriate file of the configuration folder.

Loot Bag + Addon (1.20) - MCPE/Bedrock Mod 4

Loot Bag + Addon (1.20) - MCPE/Bedrock Mod 5

Loot Bag + Addon (1.20) - MCPE/Bedrock Mod 6

Loot Bag + Addon (1.20) - MCPE/Bedrock Mod 7

Loot Bag base:

In the bags you can find random loots in this case there are 10 loots per bag, which based on the rarity of the bag increases the rarity and quantity of the item or other. going into the addon folder obviously in your world you have to go to: scripts/config/loot

Here you will find 5 js files in which you can customize your loot, the files are divided by the rarity of the bags. to add an extra loot or modify the existing one it is simple, let’s take an example:

Show Spoiler

script/config/loot

  • 1:{
  • chance:3,
  • name:’Beacon Time’,
  • description:’do you want powers?’,
  • drop:{
  • item:{
  • 1:{id:”minecraft:beacon”, amount:1},
  • },
  • effect:{
  • 1:{id:’haste’,time:10000,amplifer:3,particle:true},
  • 2:{id:’strength’,time:10000,amplifer:3,particle:true},
  • }
  • }
  • },

its value in this case is 1, already in the config you will find up to 10, to add others just do in numerical order so 11 12 13 and so on

  • chance: ( the probability of that loot coming out )
  • name : ( name of the loot that will appear in the book )
  • description : ( description of the loot that will appear in the book )
  • drop : ( here is everything you can do if this loot comes out )

in the drop you can insert:

Item

item: ( in the item enter what type of object you want to give the player a block, an item whatever you want as in the example below but every time you add an item increase the value, here for example I give 2 items so value 1 item and value 2 item, if you add more you increase ) Inside the item you can insert other values to customize the object when it is given, you can put

  • id:( here is the id of the item )
  • name: ( the name you want to give the item when it is given to the player )
  • amount ( the quantity of that item that must give the player 1 diamond or 3 diamonds )
  • lore ( the description then the lore you want to give to the item when it is given to the player )item:{   1:{id:”minecraft:emerald”,name:’base’, amount:5},   2:{id:”minecraft:emerald_block”,name:’Good Emerald’,lore:’cool block emerald’,amount:1}, }

Sound

  • sound: ( enter this value if you want it to play a sound )
  • sound:’block.lantern.hit’

Message

  • message: ( here insert a message that will be sent to the player, if you want more messages just do as in the example below and increase its value )
  • message:{
  • 1:’He how are you’,
  • 2:’I hope so’
  • }
  • Command
  • command: ( here instead enter the commands that will have to be performed on the player, to add others just increase the value )
  • command:{
  • 1:’title @s title Hii’,
  • 2:’title @s actionbar gg’
  • }

Particles

particles: ( if you want it to make particles on the player enter the name of the particle as in the example )

particles:’minecraft:totem_particle’,

Effect

effect: ( instead, if you want to insert classic status effects, just do as in the example and if you want to insert others, just increase the value ) On effects you can decide the time and power of the state using these parameters

  • id: ( the name of the effect you want to run )
  • time: ( how long the effect should last )
  • amplifer: ( when the effect needs to be enhanced )
  • particle: ( if you want the particles of the effect to be seen, if you set true they are not seen, if you set false they are seen )effect:{   1:{id:’haste’,time:10000,amplifer:3,particle:true},   2:{id:’strength’,time:10000,amplifer:3,particle:true}, }

Obviously, you can decide what you want to insert in the drop, like the same thing for the item to give the name and lore, these are data that you can also not insert, they simply serve to give greater customization.

Entity Drop:

To find loot bags are obtained by killing mobs, obviously based on the difficulty the drop reward increases, but if you want to modify or add entities just go to: scripts/config/entity
Once you have already found the basic Minecraft entities, to add external entities just enter their ID as in the example below. As per the item, you must each time increase the value which here in the example is 1, but already in the file, you will find 73, because all the Minecraft Bedrock entities are present. This does not affect the classic loot drop of mobs, but only adds.

Show Spoiler

scripts/config/entity

Id: ( name of the entity that must release the loot after death )

drop: ( if you set true when that entity dies it will give loot, if you set false that entity will not drop loot )

loot: ( item that must drop after deat ) inside the loot you have to put in order all the items you want to give, which in my case are 5 different Loot Bags1: {

  • id: ‘da:floating_text’,
  • drop: true,
  • loot: {
  • 0: {id: ‘da:loot_bag_common’, min: 1, max: 2, chance: 25},
  • 1: {id: ‘da:loot_bag_uncommon’, min: 1, max: 2, chance: 15},
  • 2: {id: ‘da:loot_bag_rare’, min: 1, max: 1, chance: 10},
  • 3: {id: ‘da:loot_bag_epic’, min: 1, max: 1, chance: 5},
  • 4: {id: ‘da:loot_bag_legendary’, min: 1, max: 1, chance: 1}
  • }
  • },

Item

what you have to put in the drop inside the values

  • id: ( name of the item it must give )
  • min: ( minimum quantity you must give of that item )
  • max : ( maximum quantity you can give of that item )
  • chance : ( probability that from that item )0: {id: ‘da:loot_bag_common’, min: 1, max: 2, chance: 25},

How to install:

How To Install Mod / Addon on Minecraft PE

How To Install Texture Packs on Minecraft PE

How To Install Map on Minecraft PE

Loot Bag + Addon (1.20) Download Links

For Minecraft PE/Bedrock 1.20

mcaddon: Download from server 1Download from server 2

Mods

1.19.4 Mods

1.19.3 Mods

1.19.2 Mods

1.18.2 Mods

1.16.5 Mods

1.15.2 Mods

1.12.2 Mods

1.8.9 Mods

1.7.10 Mods

1.18.1 Mods

1.17.1 Mods

1.14.4 Mods

1.13.2 Mods

1.11.2 Mods

1.10.2 Mods

1.9.4 Mods

Minecraft Modpacks

1.19.4 Modpacks

1.19.3 Modpacks

1.19.2 Modpacks

1.18.2 Modpacks

1.16.5 Modpacks

1.12.2 Modpacks

1.7.10 Modpacks

Forge Mods

Fabric Mods

Quilt Mods

Resource Packs

1.19.4 Resource Packs

1.19.3 Resource Packs

1.19.2 Resource Packs

1.18.2 Resource Packs

1.16.5 Resource Packs

1.15.2 Resource Packs

1.12.2 Resource Packs

1.8.9 Resource Packs

1.7.10 Resource Packs

1.18.1 Resource Packs

1.17.1 Resource Packs

1.14.4 Resource Packs

1.13.2 Resource Packs

1.11.2 Resource Packs

1.10.2 Resource Packs

1.9.4 Resource Packs

Shaders

1.19.4 Shaders

1.19.3 Shaders

1.19.2 Shaders

1.18.2 Shaders

1.17.1 Shaders

1.16.5 Shaders

Maps

1.19.4 Maps

1.19.3 Maps

1.19.2 Maps

1.18.2 Maps

1.16.5 Maps

1.15.2 Maps

1.12.2 Maps

1.8.9 Maps

1.7.10 Maps

1.18.1 Maps

1.17.1 Maps

1.14.4 Maps

1.13.2 Maps

1.11.2 Maps

1.10.2 Maps

1.9.4 Maps

Data Packs

1.19.4 Data Packs

1.19.3 Data Packs

1.19.2 Data Packs

1.18.2 Data Packs

1.16.5 Data Packs

1.15.2 Data Packs

1.18.1 Data Packs

1.17.1 Data Packs

1.14.4 Data Packs

1.13.2 Data Packs

MCPE/Bedrock

Mods & Addons

MCPE 1.19 Add-ons

MCPE 1.19 Mods

Texture Packs

MCPE 1.19 Texture Packs

MCPE 1.19 Resource Packs

Maps

MCPE 1.19 Maps

Clients

MCPE 1.19 Clients

Mod Menu Clients

Shaders

MCPE 1.19 Shaders

Render Dragon Shaders

Launchers

Skin Packs

Clients

1.19.4 Clients

1.19.3 Clients

1.19.2 Clients

1.18.2 Clients

1.16.5 Clients

1.12.2 Clients

1.8.9 Clients

Launchers

1.19.4 Launchers

1.19.3 Launchers

1.19.2 Launchers

1.18.2 Launchers

1.16.5 Launchers

1.12.2 Launchers

1.7.10 Launchers

Seeds

1.19.4 Seeds

1.19.3 Seeds

1.19.2 Seeds

1.18.2 Seeds

Skins

Plugins

Bukkit Plugins

Spigot Plugins

Paper Plugins

Tutorials

Installation Guide

Mobs Wiki Guide

Seeds Wiki Guide

Biomes Wiki Guide

Status Effects Wiki Guide

Enchantments Wiki Guide

Materials Wiki Guide

Command Blocks

Versions

Backlinks