• 8/3/20 3:18 am
- 436 views • 0 today
- 3
- 3
- 2
4
This is it.
Your final challenge, should you choose to accept it.
This.. Is the commandgeon!
Challenges appear. Can you make them all?
Complete these, and you shall pass through.
Complete these, and you master the commands.
Complete these, and you are ready.
EASY CHALLENGES
You should be able to do these.
1. Count secends using a command block clock and scoreboards.
2. Okay... Now add minutes to it.
3. Now add HOURS! (you dont have to actually check if it works, If it seems to be it check the solution.
You seem to be a worthy one. Your fall will come upon you, I am sure of it.
4. Set the block above the player to any block.
5. When the player mines a quartz block, send a message.
Would it seek to break the seals?
They cannot be undone.
They must be undone.
Let us sleep little shadow.
Return to your darkness.
Allow us our peace.
Medium challenges
Now it's getting interesting!
1. Summon 3 zombies 3 blocks up from the player.
2. Now, when the player kills those 3, send a message!
THE LAST CHALLENGE
Developer, this is it.
You are about to create a minigame. I will not supply a solution since there are so many ways to do this. If you finish this minigame send it to me.
MAKING A MINIGAME:
Spawn 5 zombies.
If the player kills all of them, add one to score.
If the player cant kill the zombies in 60 secends, He dies and the game restarts.
This game is infinite. Add one to waves and when the player dies show him the amount of waves he got through.
If the player dies the minigame is over
Developer! If you can finish this, you did it. You are ready to continue...
Is this the end of the megatutorial series?
Oh no.
Something I didnt see in this site is spigot tutorials. Would you like to learn how to make a plugin? Tell me if you do.
Thank you. This series suceeded more than I thought it would.
-Ron
Your final challenge, should you choose to accept it.
This.. Is the commandgeon!
Challenges appear. Can you make them all?
Complete these, and you shall pass through.
Complete these, and you master the commands.
Complete these, and you are ready.
EASY CHALLENGES
You should be able to do these.
1. Count secends using a command block clock and scoreboards.
Solution
Using a scoreboard objective "ticks" and a always active repeating command block that adds 1 to ticks, Than using execute as to see if ticks = 20 and adding 1 to secends (another dummy). Renember to reset "ticks".
2. Okay... Now add minutes to it.
Solution
We only need one more objective. "minutes" will be added to every time secends = 20. Again, renember to reset!
3. Now add HOURS! (you dont have to actually check if it works, If it seems to be it check the solution.
Solution
Again, one more objective, Hours. it will be incresed every time "minutes" = 60. Renember to reset "minutes"
You seem to be a worthy one. Your fall will come upon you, I am sure of it.
4. Set the block above the player to any block.
Hints
A player = 2 blocks.
Something about the symbol "~" seems important.
Something about the symbol "~" seems important.
Solution
/execute at @p run setblock ~ ~2 ~ block
5. When the player mines a quartz block, send a message.
Hint
Use minecraft.mined, not minecraft.broken.
Solution
A scoreboard objective: /scoreboard objectives add broken minecraft.mined:minecraft.quartz_block
A repeating command block (always active) : /execute as @a[scores={broken=1}] run scoreboard players add @s Mined 1
A conditonal chain block (Always active) : /scoreboard players set @a broken 0
A conditonal chain block (Always active) : /say whatever
A repeating command block (always active) : /execute as @a[scores={broken=1}] run scoreboard players add @s Mined 1
A conditonal chain block (Always active) : /scoreboard players set @a broken 0
A conditonal chain block (Always active) : /say whatever
Would it seek to break the seals?
They cannot be undone.
They must be undone.
Let us sleep little shadow.
Return to your darkness.
Allow us our peace.
Medium challenges
Now it's getting interesting!
1. Summon 3 zombies 3 blocks up from the player.
Solution
Do this 3 times.
/execute at @p run summon minecraft:zombie ~ ~3 ~
/execute at @p run summon minecraft:zombie ~ ~3 ~
2. Now, when the player kills those 3, send a message!
Solution
In a repeating always active command block: /execute as @a[scores={Killed=3}] run say You win! (:
in a conditonal always active chain block: scoreboard players set @a Killed 0
in a conditonal always active chain block: scoreboard players set @a Killed 0
THE LAST CHALLENGE
Developer, this is it.
You are about to create a minigame. I will not supply a solution since there are so many ways to do this. If you finish this minigame send it to me.
MAKING A MINIGAME:
Spawn 5 zombies.
If the player kills all of them, add one to score.
If the player cant kill the zombies in 60 secends, He dies and the game restarts.
This game is infinite. Add one to waves and when the player dies show him the amount of waves he got through.
If the player dies the minigame is over
Developer! If you can finish this, you did it. You are ready to continue...
Is this the end of the megatutorial series?
Oh no.
Something I didnt see in this site is spigot tutorials. Would you like to learn how to make a plugin? Tell me if you do.
Thank you. This series suceeded more than I thought it would.
-Ron
More like this
4606460
6


Have something to say?