- Slot Mobile Site
- Slot Mobile Store
- Slot Mobile Phones Computer Village Ikeja
- Slot Mobile App
- Slot Mobile Phone Shop
- The Slot Mob mobile casino app gives you access to a host of the world's best slots, jackpot slots and live casino games, all in one handy mobile app. We pride ourselves on our incredible selection.
- Slot Mob and Slotto are similar regarding games, promotional deals, match bonuses, free spins, and minimum deposit. Slot Mob and its sister site Slotto offer the same games: Both sister sites offer exciting games on their sites like video slots, table games, live casino and jackpots to their players.
Some of the many monsters that can spawn in the overworld. From left to right: Zombie, Spider, Enderman, Creeper, Skeleton, Drowned, Witch, Slime. A mob is a living, moving game entity. The term 'mob' is short for 'mobile'.1 All mobs can be attacked and hurt (from falling, attacked by player or another mob, falling into the void, etc.) and some of them can drown or burn. Different types of.
Permission level required | 2[JE only] |
---|---|
Restrictions | Cheat only[BE only] |
Replaces items in the inventories of blocks (chest, furnaces, etc.) or entities (players or mobs) with the given item(s).
Syntax[edit]
- Java Edition
replaceitem block <pos> <slot> <item> [<count>]
replaceitem entity <targets> <slot> <item> [<count>]
- Bedrock Edition
replaceitem block <position: x y z> slot.container <slotId: int> <itemName: Item> [amount: int] [data: int] [components: json]
replaceitem entity <target: target> <slotType: EntityEquipmentSlot> <slotId: int> <itemName: Item> [amount: int] [data: int] [components: json]
replaceitem block <position: x y z> slot.container <slotId: int> <oldItemHandling: ReplaceMode> <itemName: Item> [amount: int] [data: int] [components: json]
replaceitem entity <target: target> <slotType: EntityEquipmentSlot> <slotId: int> <oldItemHandling: ReplaceMode> <itemName: Item> [amount: int] [data: int] [components: json]
Arguments[edit]
JE: <pos>
: block_pos
BE: position: x y z
: CommandPosition
- Specifies the position of the block to be modified.
- In Java Edition, it must be a block position composed of <x>, <y> and <z>, each of which must be an integer or tilde and caret notation. In Bedrock Edition, it must be a three-dimensional coordinates composed of <x>, <y> and <z>, each of which must be a floating-point number or tilde and caret notation.
JE: <targets>
: entity
BE: target: target
: CommandSelector<Actor>
- Specifies one or more entities to modify.
- Must be a player name, a target selector or a UUID[Java Edition only].
Slot Mobile Site
JE: <slot>
: item_slot
BE: slotType: EntityEquipmentSlot
, slot.container
and <slotId: int>
: int
- Specifies the inventory slot to be modified. Valid values depend on whether a block or an entity is being modified.
- In Bedrock Edition,
slotId: int
must be a 32-bit integer number. And it must be between -2147483648 and 2147483647 (inclusive).
container.<slot_number>
(BE: slot.container <slotId: int>
) where <slot_number> or <slotId: int> is replaced with a number specifying the slot.- Chests, dispensers, droppers, hoppers, and trapped chests are numbered 0 for the top-left slot and then increase first horizontally, then vertically (so, for example, a chest's top row slots are numbered 0 to 8 from left to right). Double chests and double trapped chests are treated as two single container blocks.
- A brewing stand's bottom slots are numbered 0 to 2 from left to right, its top slot is 3 and the fuel slot is 4.
- A furnace's slots are numbered 0 for the input slot, 1 for the fuel slot, and 2 for the output slot.
/data
.Slot | Slot Numbers | Restrictions |
---|---|---|
armor.chest (BE: slot.armor.chest <slotId: int> ) | any number[Bedrock Edition only] | armor stands, mobs, and players only (though not all mobs will show or make use of the items) |
armor.feet (BE: slot.armor.feet <slotId: int> ) | any number[Bedrock Edition only] | |
armor.head (BE: slot.armor.head <slotId: int> ) | any number[Bedrock Edition only] | |
armor.legs (BE: slot.armor.legs <slotId: int> ) | any number[Bedrock Edition only] | |
weapon.mainhand (BE: slot.weapon.mainhand <slotId: int> ) | any number[Bedrock Edition only] | |
weapon.offhand (BE: slot.weapon.offhand <slotId: int> ) | any number[Bedrock Edition only] | |
container.<slot_number> (BE: slot.container <slotId: int> ) | 0–53 | players, item frames[Java Edition only] (slot 0), and minecarts only |
enderchest.<slot_number> (BE: slot.enderchest <slotId: int> ) | 0–26 | players only |
hotbar.<slot_number> (BE: slot.hotbar <slotId: int> ) | 0–8 | |
inventory.<slot_number> (BE: slot.inventory <slotId: int> ) | 0–26 | |
horse.saddle (BE: slot.saddle <slotId: int> ) | any number[Bedrock Edition only] | horses, donkeys, and mules only; <item> or itemName: Item must be a saddle |
horse.chest [Java Edition only] | donkeys, and mules only; <item> must be a chest | |
horse.armor (BE: slot.armor <slotId: int> ) | any number[Bedrock Edition only] | horses and llamas only; <item> or itemName: Item must be a type of horse armor (if a horse) or a carpet (if a llama) |
horse.<slot_number> (BE: slot.chest <slotId: int> ) | 0–14 | donkeys and mules with chests only |
villager.<slot_number> (BE: slot.inventory <slotId: int> ) | 0–7 | villagers only |
JE: <item>
: item_stack
BE: itemName: Item
: CommandItem
- Specifies the item to be placed in the block or entity's inventory slot.
JE: <count>
: integer
BE: amount: int
: int
- Specifies the number of items to be placed in the block or entity's inventory slot.
- Must be a 32-bit integer number. In Java Edition, it must be between -2147483648 and 2147483647 (inclusive). And it must be between 1 and 64 (inclusive).
BE: data: int
: int
- Specifies the item data for the item(s) to be placed in the block or entity's inventory slot. Values which are invalid for the specified item id will default to 0. If not specified, defaults to 0.
- Must be a 32-bit integer number. It must be between -2147483648 and 2147483647 (inclusive).
BE: components: json
: Json::Value
- Specifies the item components. Like data tags but supports only
minecraft:can_place_on
,minecraft:can_destroy
,minecraft:item_lock
, andminecraft:keep_on_death
functions (see Commands/give#Examples) - Must be a JSON Object.
BE: oldItemHandling: ReplaceMode
- Must be one of:
destroy
- Directly replaces items ignoring the original items in the specified slot.keep
- Does not replace items if an item occupies that slot.
Result[edit]
Command | Trigger | Java Edition | Bedrock Edition |
---|---|---|---|
any | the arguments are not specified correctly | Unparseable | Failed |
<count> exceeds the stack limit of the specified item | Failed | Successful | |
/replaceitem block ... | the specified block is not a container | Failed | |
the specified block does not have the specified slot | |||
/replaceitem entity ... | <targets> or target: target fails to resolve to one or more entities (named players must be online) | ||
All selected entities meets one or more of the following conditions:
| |||
/replaceitem ... keep | an item occupies the specified slot in keep mode | N/A | |
any | On success | Replaces the items in the specified slot with the specified items (previous items in that slot are lost). |
Output[edit]
Command | Edition | Situation | Success Count | /execute store success ... | /execute store result ... |
---|---|---|---|---|---|
any | Java Edition | On fail | 0 | 0 | 0 |
/replaceitem block ... | On success | 1 | 1 | 1 | |
/replaceitem entity ... | On success | 1 | 1 | the number of entities whose items are successfully replaced | |
any | Bedrock Edition | On fail | 0 | N/A | N/A |
/replaceitem block ... | On success | 1 | N/A | N/A | |
/replaceitem entity ... | On success | the number of entities whose items are successfully replaced | N/A | N/A |
Examples[edit]
- To replace the items in the bottom-right slot of a single chest two block above with four spruce saplings:
replaceitem block ~ ~2 ~ container.26 minecraft:spruce_sapling 4
[Java Edition only]replaceitem block ~ ~2 ~ slot.container 26 sapling 4 1
[Bedrock Edition only]
- To replace the items in the rightmost hotbar slot of the nearest player with four spruce saplings:
replaceitem entity @p hotbar.8 minecraft:spruce_sapling 4
[Java Edition only]replaceitem entity @p slot.hotbar 8 sapling 4 1
[Bedrock Edition only]
History[edit]
Java Edition | |||||
---|---|---|---|---|---|
1.8 | 14w26a | Added /replaceitem . | |||
1.14 | 18w43a | /replaceitem can now be used on item frames. | |||
Upcoming Java Edition | |||||
1.17 | 20w46a | Removed /replaceitem . Replaced with /item replace . | |||
Pocket Edition | |||||
1.0.5 | alpha 1.0.5.0 | Added /replaceitem . | |||
1.1.0 | alpha 1.1.0.0 | CanPlaceOn and CanDestroy functions are now supported for /replaceitem . | |||
Bedrock Edition | |||||
1.16.0 | beta 1.16.0.55 | Added new overload for /replaceitem with an option for destroy or keep. |
See also[edit]
/data
— can also replace items in a container, or a mob's inventory/give
— give items to players without specifying specific inventory slots or overwriting other items/blockdata
(outdated) — can also replace items in a container/entitydata
(outdated) — can also replace items in a mob's inventory, or modify the drop chances of armor and weapons
The Mob Heist Slot | |
---|---|
Game Name | The Mob Heist |
Game Type | Video |
Software | Makitone Gaming |
Slot Reels | 5 |
Slot Lines | 25 |
Min Bet | $0.25 |
Max Bet | $125 |
Max Win | 800 |
RTP | N/A |
The Gang of The Mob Heist consists of the Goon, the Girl, the Boss, the Boy and the Doc. One, two, three, four or five symbol matches of these characters will pay a multiplier for the total bet. Gang members will remain located on the reels to start free spins with players earning up to 15 free spins during gameplay.
Spin the reels of this game to join the mobsters as they try to rob five banks, accessing a bonus round and earning wilds along the way!
The Mob Heist
All You Need to Know About This Slot Game
The Gang keeps things interesting on the reels. Every time they show up, a funny animation begins as the characters dance on the reels. The music and dancing makes for a fun aspect of this online slot title.
The wild in this game is the female cop. She will be expanded during free spins mode and will always substitute for other symbols except for The Gang or the bonus. Five wilds will pay the maximum jackpot of 800 in the game.
Additional symbols in the game include tools used for breaking open the safe in the banks and traditional card symbols. The two best symbols to see on the reels are the knife and liquor bottle. Both will pay as much as 300 coins when a five of a kind match is found on the reels.
To activate the bonus game, players need to see the safe symbol on the reels. Found on reels one and five, this symbol will activate the Bank Job Bonus. Once you are transported to this special round, you will need to place dynamite on the vault door. When the door blows up, you will find that your prize is revealed.
The Mob Heist also includes a Double Up round. After each win, choose to wager your winnings with a Double Up game. Select a card, choosing if it will be higher or lower than the dealer. Choose correctly and you double up your prize!
Symbols to Watch For
Slot Mobile Store
- The Gang: The five gang members will pay multiplied prizes when appearing on a win line, plus activate as many as 15 free spins
- Wild: The wild in this game is the female cop. She will expand during free spins mode and will substitute for others symbols, except the bonus and gang members, to help create a winning combination.
- Flick Knife/Liquor Bottle: Two of the highest paying symbols in the game. Earn a five of a kind combination to win up to 300 coins
- Bonus Symbol: Represented by a safe, earn this symbol on reels one or five to activate the Bank Job Bonus to win a prize.
The Mob Heist is a colorful and fun online slot game that easily transports players back in time to when mobs ruled the roost. Join the silly gang as they try to take down five different banks and revel in the spoils. Earn free spins and wild substitutions along the way as well as access a special bonus round for even more great prizes!
The Mob Heist was created by Makitone Gaming and can be found at Cafe Casino, one of our top-rated recommended online casinos. Give the game a spin today to have a little fun and hopefully earn a prize!
Play The Mob Heist Slots for Free
Give The Mob Heist a spin for free here, before playing for real money.
Try Your Luck and Play The Mob Heist for Real Money
- Bonus Game: The bonus symbol in The Mob Heist will activate the Bank Job Bonus round, where dynamite is set on the vault door to blow it up and reveal a prize
- Progressive Jackpot: There is no progressive jackpot connected to this game
- Wild Symbol: The female cop is the wild, substituting for other symbols, except the bonus and gang members, to help create a winning combination
- Scatter Symbol: The Gang characters act as the scatter to provide access to free spins
- Autoplay Option: No Autoplay option is offered
- Multiplier: Earn multipliers with The Gang symbols
- Free Spins: Earn up to 15 free spins with The Gang symbols
Dollar Sign
Double Up
Double Arrows
Slot Mobile Phones Computer Village Ikeja
Triple Bars
Why Play The Mob Heist
Slot Mobile App
Whether you enjoy a uniquely themed slot game or want to be taken back to the 1930s mob era, The Mob Heist is the right slot for you! Created by Makitone Gaming, this title features unique graphics and animations, placing a silly twist on the gangster topic. Join the five gang members as they try to tackle robbing five banks, offering players free spins along the way.
Slot Mobile Phone Shop
Wilds and bonus symbols keep gameplay interesting, with the possibility to win big and special prizes along the way. Find this game at Cafe Casino, one of our highly recommended online casinos, ready for real money gameplay. Create a new player account today at the online casino to get started.