• 1

    posted a message on Fastest way to get a skeleton skull in 1.12
    Quote from Mr_N_Derman»

    As for the pit idea, why not have several larger pits. As they fill with mobs, use an invisibility poition to enter the pits and name tag the creepers without them detecting you. Over time you will get the other mobs despawn but the creepers will not. Obviously you'll need quite a few tags, but once you get one a CC in one of the pits, wiat for a skeleton to spawn in it, kill any other mobs so you only have the skelly and the CC and effect the detonation...


    If I'm not digging small pits, why do I need pits at all? Maybe I should just fence off a big field, name tag all the creepers in the field, and kill the other monsters. Eventually I should have so many creepers that all monsters stop spawning.

    Posted in: Survival Mode
  • 1

    posted a message on finding villager with specific profession with nbt

    The command

    /execute as @e[type=villager, limit=100] if data entity @s {VillagerData:{profession:"minecraft:cartographer"}} run tp @p

    works. You can also use this other command, which I'm pretty sure does the same thing but looks simpler.

    /tp @e[nbt={VillagerData:{profession:"minecraft:cartographer"}}] @p
    Posted in: Commands, Command Blocks and Functions
  • 1

    posted a message on How to make players lose all items on death without dropping them

    "execute if entity @p[scores={score_deathcount_min=1}] run <whatever command>" lets you run whatever command when the nearest player dies. To destroys items, I think you can run "execute if entity @p[scores={score_deathcount_min=1}] run kill @e[type=item,distance=..4]".

    Posted in: Commands, Command Blocks and Functions
  • 1

    posted a message on Creating a resource/texture pack

    Do you know how to find the ".minecraft" folder?


    If yes, create a folder in ".minecraft" called "resourcepacks", create a folder in "resourcepacks", and name that the name of your resource pack. To make the resource pack work, the folder needs to contain a file called "pack.mcmeta" and a folder called "assets". The "pack.mcmeta" file needs to look like this.


    {
    "pack":{
    "pack_format":4,
    "description":"type whatever you want here"
    }
    }


    I use Notepad++ to edit it. I don't know what other text editors can open a .mcmeta file.


    Now that you have a "pack.mcmeta" file, Minecraft should be able to recognize your resource pack. If you want your resource pack to really do something, then you need to add files to the "assets" folder. To make sure you're naming stuff the right names and putting them in the right folders, go to ".minecraft" and then "versions". Open the folder whose name is the latest version ("1.13.2" at the time of writing). Somehow extract the .jar file. (I like using 7-Zip) You should get a folder called "assets" that's structured the exact same way that the "assets" folder of your resource pack should be structured. If you want to edit a file, copy the file (and all the folders in its pathway) from the extracted "assets" folder to the "assets" folder in your resource pack. For example, you can edit the stone texture by creating a file at "assets\minecraft\textures\block\stone.png" in your resource pack and editing that file.

    Posted in: Resource Pack Help
  • 1

    posted a message on What exactly does sort=arbitrary do?

    If I run a command like

    /execute at @e[type=mooshroom,limit=1,sort=arbitrary] run setblock ~ ~ ~ stone

    when multiple Mooshrooms are loaded, it always runs the command on one particular Mooshroom. What's special about that one?

    Posted in: Commands, Command Blocks and Functions
  • 1

    posted a message on Is Minecraft Dying...?
    Quote from Toklo_23»

    That’s just not how functions work. A graph that curves up would imply that that the game is selling exponentially, which is just now how sales works. Let me put that into content. Let’s start at 2 copies of the game. The model you’re suggesting would then mean that 4 games would be sold. Then 16. Then 256. Then 65,536. Sales, in this case Minecraft, are based on the linear function. That is why the graph is an incline, not a curve. And from what the graph suggests sales are doing pretty well.



    If something sold 1 copy on day 1, 2 copies on day 2, and 3 copies on day 3, then its cumulative sales would be 1 on day 1, 3 on day 2, and 6 on day 3. If you graphed it, then it would curve up just like the exponential curve, but it's definitely not an exponential curve. So not everything that curves up is exponential.

    The cumulative sales for Minecraft is linear, so it's selling about the same number of copies each year. I don't know how you guys define "growing", but selling the same amount each year doesn't look like "growing" to me.

    Quote from OonaMistwalker»


    With customer service like this, Minecraft is killing itself. I *ONLY* play it because my bestie does.


    If not for that, I'd crumple my receipt for it into a ball, throw it on the ground, stomp on it, light it on fire and pee on the ashes.


    Oh and the Youtuber community doesn't help. At all.


    When you've developed a game with over 24000000 players, come back and tell me that you can get to every email within 9 months.
    Also why do you care what people are doing on Youtube when you can just play games by yourself?
    Posted in: Discussion
  • 1

    posted a message on Why do you always think that Minecraft has died?

    Minecraft is a video game. Video games are played only when people want to play them, and they're only what players think they are. So if everyone thinks Minecraft is dead, then it's dead. How good or fun the game is doesn't matter. Based on Google Trends, Minecraft started dying in 2013, around official release version 1.6. Of course, this has nothing to do with my own opinion, which is that Minecraft is still getting better.

    Posted in: Discussion
  • 1

    posted a message on Minecraft Public Username Question

    If username history was completely hidden from public, then trolls could troll, get banned, change their username, and immediately go back to trolling.

    Posted in: Discussion
  • 1

    posted a message on -=[ Help With Coding ]=-

    I think what you want is a repeating command block set to unconditional and always active. There needs to be a redstone comparator whose back end touches this repeating command block, and whatever TP command in a command block on the other end of the comparator. Inside the repeating command block, write, "execute @p ~ ~ ~ testforblock ~ ~ ~ snow_layer". Note that this won't always work on multiplayer.

    Posted in: Commands, Command Blocks and Functions
  • 2

    posted a message on Coordinate system that specifies the dimension

    I would like to be able to have command blocks do things in other dimensions. For example, /tp 0 0 0 teleports the player to (0, 0, 0) in the dimension that the player is currently in. Then, if 0, 1, or 2 are added to a specific place depending on the command, it uses the coordinate for the Overworld, Nether, or End, respectively. This would apply to any command that uses coordinates as arguments. Commands would then be able to interact with blocks and entities in other dimensions. The dimension would also be a target selector argument. Also, I'd like for the spawn chunks to load as long as any player in that world.


    List of commands that would be affected

    <required parameter> [optional parameter]


    blockdata <x> <y> <z> [dimension] <dataTag>


    clone <x1> <y1> <z1> <x2> <2y> <z2> <x> <y> <z> [dimension1] [dimension] [maskMode] [cloneMode] [tileName]

    If two dimensions are entered, it clones blocks from one dimension to the other.


    execute <entity> <x> <y> <z> [dimension] <command...>


    execute <entity> <x> <y> <z> [dimension] detect <x1> <y1> <z1> [dimension1] <block> <data> <command...>


    fill <x1> <y1> <z1> <x2> <y2> <z2> [dimension] <TileName> [dataValue] [oldBlockHandling] [dataTag]


    particle <name> <x> <y> <z> <xd> <yd> <zd> <speed> [count] [dimension] [mode] [player] [params...]


    playsound <sound> <source> <player> [x] [y] [z] [volume] [pitch] [minimumVolume] [dimension]


    setblock <x> <y> <z> [dimension] <TileName> [dataValue] [oldBlockHandling] [dataTag]


    spreadplayers <x> <z> <spreadDistance> <maxRange> [dimension] <respectTeams> < player...>


    stats block <x> <y> <z> [dimension] clear <stat>


    stats block <x> <y> <z> [dimension] set <stat> <selector> <objective>


    summon <EntityName> [x] [y] [z] [dimension] [dataTag]


    teleport <targetEntity> <x> <y> <z> [<yaw> <pitch>] [dimension]


    testforblock <x> <y> <z> [dimension] <TileName> [dataValue] [dataTag]


    testforblocks <x1> <y1> <z1> <x2> <y2> <z2> <x> <y> <z> [dimension] [mode]


    tp [targetPlayer] <x> <y> <z> [<yaw> <pitch>] [dimension]


    worldborder center <x> <z> [dimension]


    Would this be useful?

    Posted in: Suggestions
  • To post a comment, please .