#Commands General
1 messages · Page 8 of 1
What's the simulation distance in your server / realm?
12 or 16 if I’m not mistaken, ive got a command block set to kill them all every 60 ticks but i think it only registers for the chunk that the command block is in
execute as @a at @s run tp @e[type=enderman,x=~150,y=-63,z=~150,dx=-300,dy=1000,dz=-300] ~ -100 ~
I appreciate that
scoreboard players add @a sneak 0
execute as @a[scores={sneak=0}] at @s unless entity @s[x=~-1,y=~1.5,z=~-1,dx=0,dy=0,dz=0] run function detect/sheathe
execute as @a[scores={sneak=1}] at @s if entity @s[x=~-1,y=~1.5,z=~-1,dx=0,dy=0,dz=0] run scoreboard players set @s sneak 0```
the commands above are for sneaking and not sneaking
I wanna add, looking down and sneaking and looking up and sneaking
look for the rx, rxm or ry and rym target selectors over there
rx & rxm

mad question but, can you not run custom commands from a command block??
Custom commands of what kind?
Custom chat commands, for example I have an addon that has a chat command "./blahblah" but running it from a command block throws and error about the ./
☝️@neat lily
Does anyone know how I can make some particles spin in circles at the coordinates of 0 13 0 in the lobby?
then rotate an armor stand, and spawn the partials as the armor stand with /execute, and use ^^^1 in place of the corrodents for the particles.
Does anyone know how to give someone an effect for as long as they are in a designated area bones they leave that area the effect is removed
Does anyone know how to do this
Does it have a very complex shape?
If so, place a type of block underground to mark your "designated area" and have the command detect at a particular Y level for that block.
If it's box you can go with dx, dy, dz. If it's a sphere, you can go with r, rm
What does dx, dy, dz,r, and rm mean
I got it working I just don't know what it means
r—radius. The Euclidean distance an entity must be within to be selected. Selection is based on the entity's feet (a point at the bottom of the center of their hitbox).
rm—minimum radius. Similar to the above, but this is the distance away.
dx dy dz—delta X, Y, Z. These extend a box that selects entities within, with each dimension (x, y, z) given by each argument (dx, dy dz). Selection is based on the entity's hitbox (based on any of the eight corners of their hitbox).
dx dy dz should be thought of as the space between two positions. Say you have a volume described with two opposing corners, (A, B, C) and (D, E, F). dx dy dz are calculated from the difference of those positions—dx=D-A, dy=E-B, dz=F-C
/execute at @e[type=armor_stand] run tp @e[type=armor_stand] -1.50 -58.00 -7.16 facing @p[r=5]
/execute at @e[type=armor_stand] run scoreboard players add @a[r=5] Detection 1
how would i make it for multiple cameras? i want multiple of them but i couldnt figure out how to tp the armor stand in the same spot without using exact cords
i want to add it into a function later on
and im trying to make it so its only when the player is in its view
Once you know where every armor stand should be, could you have them teleport to themselves?
/execute as @e[type=armor_stand] at @s run teleport @s ~ ~ ~ facing @p[r=5]
thats what i tried to do
oh wait that one works, Im not sure what I typed earlier but it wouldnt execute
so would it be possible to only detect if there is a player infront of it?
because ill be behind the camera and it will still go up with my detection, because of the r=x
It is, but may require more thought into how you have the visuals set up. The armor stand should face the player when in the radius, which is fine, but then that ensures said player is always "in front"
Realistically you would need to limit the /teleport to only face the player when they are in front; or you need to detect the player's presence "in front" separately from the visual effect.
so the tping and if in front will be a completly differnt command?
Yeah, and for the rotation you have two options:
- Hardcode the rotation for each camera;
- Use a second entity for each camera to hold the rotation
Let's say you go with the former. <y> is the y-rotation of what is "forward" to the camera.
/execute as @e[type=armor_stand] at @s run teleport @s ~ ~ ~ facing @p[r=5]
/execute as @a at @s at @e[type=armor_stand,r=5] facing entity @s feet positioned ^ ^ ^1 rotated <y> 0 positioned ^ ^ ^-1 if entity @s[r=0.765] run scoreboard players add @s Detection 1
What this does is create a triangle with a hypotenuse and a side length of 1. The remaining side must hold for the rotation condition to hold.
For every player: Check to see if an armor stand is within 5 blocks. If so:
- Aim a vector at the player from the armor stand's position.
- Move forward one block.
- Aim in the intended "forward" (<y>) direction.
- Move backward one block.
- Determine if the player is within X degrees by checking a distance of
sin(X / 4) * 2blocks. (90° ~= 0.765 blocks)
This lovely technique was developed by AjaxGB over at the Minecraft Commands Discord server. You can find a description here: https://wiki.bedrock.dev/commands/look-detection.html
Thank you so much for that! ill check that out, sorry for late reponse had work
It's a bit finicky, and may require some adjustment. Let me know if that's not working too satisfactorily
I will thank you again seriously
How to place a painting in world?
Right click a wall while holding a painting
I meant via commands…
Oh lol
Have you tried using a structure block?
Yeah, painting disappears. I think it counts as entity.
Then I have no idea
Thanks for helping anyway.
did mojang remove ^ from commands?
nope
just can't be used in volume selector arguments
when i try using ^ in my command it shows that i cant
camera @s set minecraft:free pos ^-3 ~1.5 ^-2.5 facing ^-3 ~1.5 ^-1.5
you can't use relative coordinates and local coordinates together like that
I mean, you can try to visualise how that would go
Hi zhea
hello
is there a way to trigger a command when the player looks directly up?
Can someone help me fix this command? The idea is to report a message via chat saying that player X is Pacman
=============
Player: iTzAaronMc
is Pacman!
but it say: does not match the selector
Send the command as a text not as a screenshot its hard to see ngl
/execute as @a[xyz,dx,dy,dz,scores={pacman=1..3}] at @s run /tellraw @a {"rawtext":[{"text":"§8====================§r\n\n"},{"translate":"§7The player§e "},{"selector":"@s"},{"text":"\n§7is the pacman§r\n\n"},{"translate":"§8====================§r"}]}
Does anyone know how I can do this with the new commands? It's just that since they changed execute it's harder to do things that were easy to do before.
/execute as @e[tag=target] at @s run tp @s ~~~ ~0.2 ~
It turns but the TP is not made to the other entity
Do you know if there is a way to make those particles with commands?
There is
/execute as @e[tag=target] at @s rotated as @e[tag=other_target] run tp @s ~~~ ~ ~
I just noticed your message 😅
Has anyone ever encountered the issue, where they tried to run an command with "" in an entity event?
The event then always fails, because the "" in the command mess up the json file😅
Got the Answer, I needed
\ before the "
real
Hi, I want to make execute score if someone does not have a score above 100 it will run command. Does this execute format work?
/execute as @a if score @s score < 100 run say Your score is not enough
probably, but you can just execute as @a[scores={score=..100}] run say Your score is not enough
it wouldnt lmao it would be smth like
if score @s score matches ..100 run
so if it is less than 100 it should be ...100 but if it is more than 100 it should be 100...?
and if it requires a score of no less and no more than 100 is it just 100?
2 dots only lmao
..100
but no, the ..100 means if its 100 or lower, the 100.. means if its 100 or higher
100 just means if its 100 exactly
but u could also do smth like dis
scoreboard players set threshold score 100
execute as @a if score @s score < threshold score run say @s Your score isnt high enough!
thats when to use the < operator thing
ah okay thank you
What is the best way to make a camera behave like follow_orbit but from the front perspective of the player (like minecraft:third_person_front) but from a longer radius? Is it possible with presets or /camera on the stable version without needing to run the camera command repeatedly?
@tidal turret 
@grim ocean
/execute at @a[scores={locationID=1}] if block ~~-1~ emerald_block run /tp 1023 141 1101
Why wont it work
Who should it teleport? You have no target defined, and the implicit target is finding nobody.
A target/executor needs to be defined with /execute as; then you can use @s to select that player.
/execute as @a[scores={locationID=1}] at @s if block ~ ~-1 ~ emerald_block run teleport @s 1023 141 1101
how do I do the @ on a specific entity like ```
execute as @e[type=pr:deino] at @s if entity @e[type=pr:feeder_carnivore r=2] run event entity @e[what_to_put_here?] pr:full
put @s
but the command is in tick.json
it still works lmao
lemme try
/execute at @e[type=arrow] run fill ~-3~-3~-3 ~3~3~3 air replace stone
is there a way to choose more than 1 block to replace in the same command?
Hey guys, i looked for an answer and Saw some people had troubles detecting non solid blocks, so i posted an answer as question on this channel, go check it out if You'd like
alright so can y'all give me a command that detects if a mob[pr:deino] is next to another entity[pr:carnivore_feeder] and makes the original mob[pr:deino] play an event[pr:full]
next to as in how close is it and which side
like within 5 blocks of its left or right side
or just 5 blocks near the pr:deino
literally touching
or 0.5
so it actually looks like it is eating from the pr:carnivore_feeder entity
execute as @e[type=pr:deino] at @s if entity @e[type=pr:carnivore_feeder,r=1] run event entity @s pr:full
will this also work with family?
so instead of that, if I do
execute as @e[family=hungrycarnivore] at @s if entity @e[type=pr:carnivore_feeder,r=1] run event entity @s pr:full
will it work?
so I can make 1 function for all carnivore mobs
ye
Made a simple dynamic camera 🙂
So i want a bow that when i shoot people or entites even if i miss it will go to that person in a radius of 8. How whould i?
@tidal turret
https://www.reddit.com/r/MinecraftCommands/s/LRGbxTvkvi
how to use /playsound command
/playsound [sound] [target]
/playsound random.explode @a
u can also adjust the pitch and where it plays the sound but i aint writing alat ( find random documents online lmao )
what is the name of the eat sound?
random.eat
would this work to make 1st person animations?
/playanimation @s animation.player.sneaking a 999 c.is_first_person
Is there a way to check whether the player has a full inventory / empty slots in their inventory ?
## Give Unobtainable Item to Check Inventory
give @a barrier 2304
## Check Offhand & Armor Slots to Run Desired Command
execute as @a[hasitem={item=barrier,quantity=2304..}] if entity @s [hasitem=[{item=filled_map,quantity=0},{item=totem_of_undying,quantity=0},{item=arrow,quantity=0},{item=firework_rocket,quantity=0},{item=leather_helmet,quantity=0},{item=chainmail_helmet,quantity=0},{item=iron_helmet,quantity=0},{item=golden_helmet,quantity=0},{item=diamond_helmet,quantity=0},{item=netherite_helmet,quantity=0},{item=turtle_helmet,quantity=0},{item=skull,quantity=0},{item=leather_chestplate,quantity=0},{item=chainmail_chestplate,quantity=0},{item=iron_chestplate,quantity=0},{item=golden_chestplate,quantity=0},{item=diamond_chestplate,quantity=0},{item=netherite_chestplate,quantity=0},{item=elytra,quantity=0},{item=leather_leggings,quantity=0},{item=chainmail_leggings,quantity=0},{item=iron_leggings,quantity=0},{item=golden_leggings,quantity=0},{item=diamond_leggings,quantity=0},{item=netherite_leggings,quantity=0},{item=leather_boots,quantity=0},{item=chainmail_boots,quantity=0},{item=iron_boots,quantity=0},{item=golden_boots,quantity=0},{item=diamond_boots,quantity=0},{item=netherite_boots,quantity=0}]] at @s run tellraw @a {"rawtext":[{"selector":"@s"},{"text":" doesn't have items in their inventory"}]}
## Delete Unobtainable Item
clear @a barrier
kill @e[name="Barrier"]
to check empty inventory players ^
## Give Unobtainable Item to Test for Empty Slot
replaceitem entity @a slot.hotbar 0 keep barrier 1 0
## Run Desired Command
effect @a[hasitem={item=barrier}] speed 1 1 true
## Delete Unobtainable Item
clear @a barrier
to check if a specific slot is empty ^
Thank you so much
It seems the method I gave in the first block doesn't work as well in recent updates when running on repeat. So you can use this instead which is more commands but more optimised:
lmk if any issues! ^^
Ok
To be exact I am trying to give a player an item only when they have a slot empty in their inventory or hotbar
That's what I am trying to do
if it's only one specific slot, you can simply use the second code block I shared above
If it's going to vary a lot, you can use the commands in the .mcfunction ^^
Oh thanks though
it didn't work😔
wait
it's cuz my addon's tick.json was randomly deleted
how to detect if entity is eating(the way fox eats items by picking them from ground)
so depres
Not with commands. Molang yes
yeah I know almost nothing about molang
what I want is for the mob to have a event when it is eating like the fox
when the mob does this, I want the mob to have an event
Dis used to be the place where i helped people
real
can someone help me?
in custom crafting
there's my post u can look inside about my problem
How can I stop these messages from coming?
Disable it in your accessibility settings
Can someone help me I can’t figure out how to execute a command if near a lit campfire anywhere in the world
How to make it so an item gets removed from the world as soon as an entity drops that item?
I was thinking about using /tag and /kill commands but I am having trouble as the entity already holds it.
Or even simpler, how to tag a held item?
Can you detect if an entity has ANY item by using just @e[hasitem=] ?
So I tried some things. It looks like the tag gets removed from the item when it is in an inventory. Also using hasitem on an entity holding the item only tags the entity. 😭
Commands have frustratingly little power in this case, yeah.
Scripting can target items much more powerfully, if that is an option for you.
I might get into scripting in the future. Thanks for the suggestion. Do you know any template that I can use?
@abstract shale There are some materials on Microsoft's learning portal, like this one: https://learn.microsoft.com/en-us/minecraft/creator/documents/scriptingintroduction
how to make an entity run a command when it is on a specific block?
execute as @e[type=armor_stand] at @s if block ~~-1~ diamond_block run say diamond below!!
and what about the opposite?
it'll run a command if it isn't on the specific block?
change if to unless
so someone made a function for me
execute as @e[tag=!dextinct,hasitem={item=pr:ophthalmo_sac}] run tellraw @a {"rawtext":[{"selector":"@e[tag=!dextinct,hasitem={item=pr:ophthalmo_sac}]"},{"text":" has earned the achievement §a[De-Extinction]"}]}
tag @e[tag=!a,hasitem={item=pr:ophthalmo_sac}] add dextinct
now how do I make the pr:anomalo_egg a tag(pr_egg)
this kind of tag
Hey guys, how you doing?
I have an issue with the gamerule "Keep inventory". Minecraft says that if you put cheats on, goals are off. Mi question is, if I active Keep inventory from script, goals are off anyway?
plseae
So....I stopped making addons because mojang removed item components and made scripts dominant
I'm back but I'm only using commands (it's a personal rule I have)
If a mob uses a function command, for example,
Tp @s ^^^0.75
Function tp_2
tp_2
Tp @s ^^^0.75
Would this work? Like, if the mob activates it through events, would the second function still teleport the mob "@s"?
Yes. Two things:
- @s would carry to the second function, so the mob would indeed be teleported in
tp_2. - The position of the commands in the function would not update between those calls.
In effect, this would teleport the entity only 0.75 blocks forward, not 1.5, since the location is based on where the command runs (when first set), not strictly where the entity is.
You would need to update the position of the tp_2 function. Could do this with /execute at, or /execute positioned
tp @s ^ ^ ^0.75
execute positioned ^ ^ ^0.75 run function tp_2
tp @s ^ ^ ^0.75
Ah, thank you. Should I ask this in #1067869022273667152 ?
Since it is run by the entity itself, and I don't think mobs can use the execute command?
Mobs can use /execute, not sure what you mean
Remove / from effect?
Um
/ has nothing to do with commands
I've been doing cmds of 4 yrs but dx,dy,dz has always been hard for me
ur as @s doesnt really have a target
wdym
u first executing at all players that passes the target selector, and then ur executing at itself
but the itself would refer to the cmd block itself lmao
u can just do /effect @a[<all the thingy>] weakness 2 255
yeah
lol
funei
do u understand y it works and y it failed 😭
fmbe
so depres
yes
okay
dz and dz and dy
for me its like making a box
and you can change the size of the box / move it
i was talking about u understanding y it failed and wat u did dat fixed it-
but yea dats also right
more like offsetting it tho
😢😢😢
cya guys in 8 months
so real
ima do that tmrw
( I basically copied the entire thing and it worked after like 20 mins later )
i thought u said u already did know 🫥
i did /execute at @a not /execute as @a
yea
nah i lied
dats literally wat i pointed out 😭
so depres
sureeee
very real
kinda same
all i have right now
do yk what
ground gens are
never made one before. That's what im making
goofy ahh
or if that goes bad ima have to change it
okay-
terrain better
I think the buildings is better than the terrain tho lmao
u can uhh use /structure cmd to load a structure, the structure being a item
that's okay the terrain was made in 5-10 mins 💔
I'm aware
real
i found a glitch in mc code to change structure sizes
-# found on yt
but
i got a 300$ laptop
so
( i used to clone chests like 50 blocks above the gens, and then destroy it, and then teleport the item downwards, while getting rid of the chest item 💔 )
i was kinda proud of it, til i realized /structure exists 💔💔💔
real?
i use to use shulkers
idk that was when i was younger and stupid
lmaoaoa
Pls commit to ac full auto generators 🙏🙏
i've made skygens
Idk why thats such an uncommon thing to see these days
over 200 prob
wats dat lmao
Somehow that gives me less faith
Did you know "Auto skygens" was the first type of skygens on xbox b4 some idoit dumbed it down!
huhhh
wat other skygen is there
SkyGens commonly arent considered “full auto” as in, they require operator input to work
omgmg thats so depressing
😭😭😭
💔💔💔
Hey, as long as its full auto i respect it, skygens just have terrible rep
but for xbox
worst type of sky gen i have ever heard
And the most common
😭 i personally have like basically never seen those before tho
I dont get the difference between SkyGen and SkyBlock in reality; the SkyGen formula is kinda designed to be rough
xbox is the #1 post with skygens. Over half are asking for someone to help them make one or they're promoting there skygens (99% are 5 yr olds)\
real
Its mostly an xbox thing fs where loads of kids brand new to commands think its easy and advertise it as full auto when they only have money and shops, alongside some semi-auto gens and manual plots
actually yeah they're pretty much the sa,e
the sidebars with "player offline " 💔
deny blocks as the grounds and wall
what a shitty hell hole
To me, SkyGen denotes games that ONLY use the generators as their progression, where as SkyBlocks feature generators, mob spawners, farming, and just a whole variety of other survival aspects
Glad im not the only one who sees them that way; respect to u as long as they arent like that 😮💨
huhhh?
Actually the most time i spend is going on lfg and helping / making ppl skygens
Lowk exact same here bro, the odds are we’ve probs interacted once before wo knowing 😭
ik i should lock in and make my own servers but that gets boring atleast when i help people they're gonna use it for good unlike me
Prob 😭
DO you have xbox?
if so what's your user
JohnLongly followed by some assortment of digits
New acc so havent been on it for long, but used to be known under a dif name
Im not on rn so idk the digits but ill lyk when i find out 😫
jhonlongly#9309
My old acc i used to do the same thing on was MaxedOut4826 tho, but i dont use that acc anymore
online 3 hours ago?
realest reunion
Might be ac, but spelt John
I remember it had a 9 in there somewhere
And 3h ago sounds ab right ac
does ac mean actually 🤯
my user is "masionz#7074" my rep is mainly know for hacking on skygen servers 🫢
Ur a revolutionary to the english language: yes
most depres
Oh deary me
so real
Bro went into rehab
like 4 years ago, i used to go on random sky gens and then turn on haste hacks and then mine people's lil mining areas for them, and then the admin sees that, thinks their hacking and then bans them lmao ( the haste makes it looks like my hand isnt moving even when am breaking things )
i think it was a mining simulator or smth actually, duno
UTS BIT SKUY GENS ITS SKYGENS
whu
"its not sky gen its skygen
real
"
( i don see the difference )
Hey i used to host a mining sim ab 4 years ago 🤨
Guys what the fuck is happening
?
The lore is adding up bru whats going on
lmaoaoao
my feet are oiled in mayonnaise
( am never sharing my gamertag here lmao )
sorry is this a bad time?
uhh
maybe?
fr
The true creation is more so wtv social experiment is happening below it
actually real 😭
people keep calling my https://discord.com/channels/523663022053392405/1349907625403482184 expired 💔
we dont have that in canada
funeu
yes
Tried this challenge a million times w a million different things: the building is what gets u, not the commands 😔
there u go, i helped 🗣️📢🔥
thank fully im good at building
real
In under 2h is tuff tho
wanna help?
No im alr thanks i prefer to run solo personally, but appreciate the offer
Does sound pretty fun
i wanna make a server i havent made b4 so that'd be
do u want the server to be running on ur pc directly or use sone random hoster fron the internet
( i prefer using ur own pc, but if ur electricity bills dont like that, then ykk, also depends if u want it to be 24/7 or not )
kit pvp, prison server, faction, horror game, econmy, Feed The Beast
i have a server
hoster
real?
well actually 2
Do a horror adventure map instead in 8h or smt 🥶
( i dont prefer aternos anymore 💔 the queue is so depressing )
free server hoster are usually not that great when ur doing that many gamemodes 💔
ur prob gonna end up having 3 tps even when theres no players on the server 💔💔💔
nah the java on is outerworlds that doesnt accept new servers and then a new server creator by a ytuber
huhhh
funnei
i is not understanding 🤯
is the yt one
real
am kinda confused wat u need help with then 💔
u look like u already got things sorted out 💔💔💔
no
am so depres 💔
i dont wanna use a server hoster
Do horror map 🔥🔥
lmaoao
i wanna make a xbox lfg post to impress people
Gotta feed that ego from time to time tbf
bc good servers on lfg is super rare now a days
very real ( wats lfg 🫥 )
No, not the ego type i just wanna show people cool stuff you can do
thats basically ego 💔
looking for group on xbx
“Looking For Group” where others can find u, or u can find others
U give a description and some tags and people can partner up w u pretty much
and if we use server we can have 40 ppl in at one time
FMBE’s always gets em
I can only make simple stuff with fmbe currently soo sad
okay so likee, u want to host ur server directly on ur pc right?
its not gonna have an ip
and it'd only be xbx only
lmaoo so depres
Only OG’s remember the MBE’s 😔😔
i have never done it that way 💔💔💔
❤️
actually im better at mbe's ngl
It's a first for you
same
Wish i could meet the guy who made them fr 🥸
Also i wanna make cool servers for people to play isnt me having a big ego.
i find it way easier to control mere armor stands 🗣️📢🔥
you first gotta download the uh server thingy
i think of myself as being mild to commands if not bad
very real, directly from official source, trust 🗣️📢🔥
oml do u have a brain
same
no i dont
Or i invite them on xbx
Have u guys settled on an idea yet
when jr done downloading, ur just gonna extract it to a folder, u can then start by literally just opening the server.exe file, and ur basically done 🗣️📢🔥
no
Do a horror 🔥🔥🔥🔥🔥🔥
am not sure if u can invite players like that on a server lmao
WE ARENT DOING IT THAT WAY
NO IP
NO PORT
Im gonna guess cus players from xbox cant rly join servers
So its easier to host for lfg
so depres ( they really cant? 💔 )
Kinda
i do have a bot that can invite them if they add the bot soo not true
They gotta edit their console dns settings and fiddle w some semantics
what the fuck 💔
Its tedious asf
but thats soo boring
💔💔💔
uhhh
I used to do it back in the day but at least back then it used to have lots of problems w consistency and performance
then wat u wanna do 😢 ( this is kinda the only way i actually have some experience with 💔 )
Alr guys, im telling u, do a horror
real
all i need u to do is commands
so depres
im guessing you arent main english?
i thought bro needed help with servers 💔 ( if u do it this way, u can even link discord to mc with purely addons, no extra bots, and then have lil discord verification that verifies u in mc 💔💔💔 )
i kinda am lmao
Why would i wanna do that
like i said i just wanna make a simple server
🥸
cuz its cool lmao
💔 ( i thought i saw the word "cool stuff" )
2h is nearly up guys, u got an idea yet
but people expect decicated servers to be good
wat if we mix abit of funneiness into it lmao, like players that died can just spectate without all the scary ahh effects and see their teammates run around in fear when they absolutely know nothings there 🔥🔥🔥
aint no wya it has been 2 hours lmao
It has in spirit
ik a good idea
real

skygen with horror aspects
huhhh
i can only imagine putting a generator on the monsters itself and u gotta go behind it to collect the ores lmao
Lowk a game that starts of as a generic minecraft game but begins to break the fourth wall sorta ddlc or kinitopet style is a hard idea i wanna f w at some point
💔💔💔
EXACTLYLYLYT
On a real id ac run it, its a dope idea
hm wait. Since skygens are such a huge thing on lfg for xbx then what if me a diffrent and unique type of skygen
( imagine faking a real player joining ur game, and ur chatting with him, genuinely treating him as a friend, and then he turns out to be a robot 💔💔💔 )
( thats the type of thing u can do with dedicated servers hosted directly on ur pc 🗣️📢💔 )
actually i can do this...
real?
Alternatively, Atm im prototyping some systems for a little remaster of someone else’s horror map in a shorter amount of time, so thats also a valid option too
real
Yeah thats one of the things that i been thinking bout as well, defo worth giving a shout
i can remove this with json ui
real
so no one would know its fake
real 🗣️📢🔥 ( or add a fake player with json ui )
U should do it more traditionally skyblock tho instead so u have those super divided islands and ur just on ur own in the middle of nowhere
real
I assume that was already the idea, but the ambience would ac be pretty neat
the sole problem i have with skygens and such is plot systems
my plot system uses /fucntions sooo
Then noticing certain anomalies happening around u would be hard, like blocks deleting and stuff; herobrine esque
Whys it necessary
am confused wym
exactly
No i mean why is it necessary to be a function
u just join and then u have ur own island with ur spawnpoint on it, thats it
i meant y we even need plots 💔
No, my system people buy plots
I feel we’re skipping some steps here tho 😭
💔💔💔
captalism
thats the easiest way 🗣️📢🔥
Thats finite plots tho no?
whu
no?
well yea one player can only have one island lmao
Cus how in ur method do u find the plot in the first place to set the spawnpoint
whu
But what about the spawn?
u set spawnpoint on where u generated it lmao
Valid point tbf, u dont rly need a whole plot system since its not a real skyblock 😭
it doesnt exist 🗣️📢🔥
this is the easiest way 🗣️📢🔥🔥🔥
Tho it might be a little immersion breaking if playing in mp
chatting is enough interaction 🗣️📢🔥
i like having builds and stuff for my server then just gui menus that outline the WHOLE server
the scams also gonna go crazy in mp 💔
real ( no idea wat u mean )
Its not a real skyblock so who cares
whu
I like the horror idea
isnt that the point-
Horror SkyBlock sounds dope
real ( i don even know wat idea we on )
I been thinking bout it lately for a Prisons type game that starts normal then gets horror-esque, but i think SkyBlock might fit the atmosphere more
Thought we was onna bout a SkyBlock that sorta normal then gets horror-ified
ima be honest
i find skyblocks boring
Yeah but the point is its not a skyblock
thats why ive never made one
cuz if u actually think about it, u start in like a 10 by 10 at max area, in the middle of nowhere, theres no surroundings, just a single island
Its a horror game disguised as a skyblock
but
Yeah thats exactly what i been thinking bout too
🗣️📢🔥🔥🔥
lmaoaoao
It has potential
Hmmmm Alright we can do that
( not sure if we can 💔 )
lmaoaoa
I was prototyping skyblock commands lately, so i have a great foundation for it already and i might ac hop on this myself
very real
what is ac
actually?
i have a feeling someone is watching us rn but not talking
coddy is a opp btw
he called my chez buga expired
he might start yelling in random js as slurs 💔
we better hide
Anyone know any way to force crash minecraft — as in physically close it w commands only
u can freeze it by running alotta cmds
ig
til it eats all ur cpu usage or smth
Ive tried a few methods w entities and stuff but it just sorta stops the game from running properly
it's a secret method
execute at @s as @e as @e as @e as @e as @e run tp @s ~~~
I thought tickingareas at least used to get capped at 4 for circles
whu
for some reason that one string isnt
try it rn
yes
Yeah i tried but it just stops things like block breaking and such
mad weird 💔
Thats dope then, helps w my idea
huhhh doesnt seem right-
i try to gate keep it so SHh
I like the idea of a fourth wall breaking horror game that physically closes the game and makes u reopen it, only for everything to be different once reopened
i remember my phone literally having lag worse than exploding 200 by 200 cube of tnt
lmaoaooa thats actually good
I been thinking bout it for like 2.5y but never knew a method to force close it
lmaoaoao imagine if we put a blue screen as a json ui and then put that up on players screen 💔💔💔
damn 💔
Doesnt force close unfortunately
That was the sorta behaviour i was referring to w the entities too
Sorta just makes it so the game is unplayable, but its not exactly the effect i want, tho i dont think that desired effect is ac possible
so depres
i think it does that, if u try despawning the player, it causes them to leave the world or server or realm but not close the entire minecraft physically
oh yea, /kick can accept target selectors now i think 🗣️📢🔥
Yeah i was thinking bout that too, tho as a commands only player i was thinking map art would be my closest bet
Only on realms
huhhh?
what if your just playing minecraft and all the mobs stop interacting with you. gathering resources is impossible. (it doesnt kick anyone from server so they wont know unless they are on a realm or they restart the game)
real?
real
huhhh
if u do it on a realm it instantly crashes and backs up
Its definitely the closest thing to being able to crash the game, but its not exactly what i want; might be forced tho unless i implement a screen for it like me and middy were onna bout
but that also means the server itself is actually lagging and shi, it wont be able to run any cmds while its in the state 💔
Wouldnt be on a realm, but it should back up regardless of realm or world
from what ik that's not possible
real
unless you use some type of software
Sadly
The biggest factor of it is just making the player restart
it crashes the server by spamming cmd requests
Yeah i figured it was smt like that, shame
like thousands of them
yes but the player will already know something is wrong if they cant gather anything and all entites (including players) are bugged
but the player itself is just frozen in time
their just gonan blame it on server lag instead of viewing it as part of the gameplay 💔💔
it wont be scary at all 💔💔💔
I think its definitely the best option, then its just ab waiting till they rejoin and starting a new path
wait wait wait
Yeah, but i suppose ull have to try frame it well w gameplay
wait wait wait
As long as u can get them back once, theyll know wassup
whu
ik a way that will freeze all entites except themself and commands will still work but they can still break stuff
Could also take the imscared approach of: “The game will try and trick you” type thing
that doesnt work that well against players 💔
Not personally useful to my idea but good to know
Sounds like a pretty real fear to me
im not good at script api
real
same
we can use chat gpt trust
i is very average 🗣️📢🔥
lmaoaoa
🤫
i think chatgpt is only good for coming up with concepts and ideas, not how to actually make them fr
not really
if you give chatgpt knowledge about what you are trying to make and give it exaples and enough context it actually can
Its decent if it has the data for it, but for niche subjects like script api and commands its v lacking
real
Especially cus it gets confused ab java or bedrock
Regardless of the specification
imagine if we just paste in entire documents of bedrock cmds in its chat lmfaooaoa
here ill give u an example rq
Anyone got anymore cool ideas for ways the game could potentially fk w u
uhhh
The whole fake player thing and fake crash thing are two great choices
The best of the best options
But we’d need a lot more to make a whole game outa it
i think apply yhe fake player thing to a mob
like some comedy mixed with horror movie with like 20 twists lmaoaoa
the pig suddenly becomes a full on murder chasing u down, and then turns out to be a player in disguise, trolling u
and then the player turns out to be a fake player 💔
I get inspired a lot by an old game called “The Wattson Scott Test” which is meant to basically be a “game” which quiz’s u ab ur fears and uses them against u
🤯
thats easily abusable tho if ur not honest 💔
I like the format of being basically directly spoken to by the game and having to answer multiple choice questions ab topics
Yeah fs, ud have to be careful w u implement
they can jhst reply with "latina thats living in canada"
Itll be multiple choice to help wean down responses
we can make jump scares
real
we can change the texture of when players wear a pumpkin and change the texture to an image or sumthing
Heres an example of a potential scene i provided for a similar idea in a dif game of mine; warning BIG TEXT WALL:
- May feature a part where it asks you to list which of the following monsters are real: it may show images of minecraft monsters which are not real, followed by images of monsters from the game — more primarily Osamu (if the Ice-Cream easter egg has been viewed then this will be answerable); followed by a high definition illustration of something which it will linger on for several seconds before allowing you to choose your answer. It will then show a plain black screen, and ask if the following monster is real; you will not be given the choice for answers. After several seconds it will change to: ‘Do you recognise your reflection?’ - and you will be allowed to answer. Next it will ask: ‘Do you recognise your surroundings?’ Finally, it will change to another high-definition image of either a person or monster and ask: ‘Do you recognise me?’ - and sounds of breathing and other realistic sound effects will emanate from behind the individual.
ai
what the fuc
omgmg thats like
actually pretty good
I think u could defo transition to this when a player joins back from one of their fake crashes
The game will provoke u directly and begin that sequence
real
wat if
when a player sleeps, and wakes up, they open chat and see a entire conversation with them and some random dide thats not real
lmaoaoa
I fw that
very real
Ill be providing random notes and scenes from times ive considered this idea before for a separate game so be prepared for random blocks of text like such:
- Other’s may be allowed to join you during the HFSE. During this, at some point the HFSE will ask if you are alone. If you answer “No” it will respond with ‘Correct’, if you answer “Yes” it will respond with: ‘Then tell me \ Who is [Spectating User]?.’ If this text is present in solo, it will instead respond, ‘Incorrect’, and/or, ‘I am here.’
actually i made a pack with ai once and gave it full context wait 1 sec
real?
funei
My other ideas arent as good as the long one i posted before 😔
💔💔💔
and then the more u sleep, the more u see, and then eventually, u see that u invited the "guy" ur talking to, to come meet you and u sent him ur coords and then-
🤯🤯🤯🔥🔥🔥
Not even too bad of an idea
Has some potential for sure
lmoaoaoa
The game could defo feature an “invite to plot” system which displays a tellraw msg that would display at the end of that sequence
real-
- At the beginning, HFSE may ask you to type your name which will be done via moving along a virtual keyboard using WASD allowing a maximum of 16 characters; this will likely lead onto HFSE mentioning it doesn’t trust you yet, and therefore it will use a name from your system - that being your username.
uh guys
🤯🤯
when i did that tickingarea command
yea
bruh?
im fucked
Oh dear
wtv ground gens a bad idea anyways
Broke the fourth wall clearly
- If a player does not answer a question for a while, the system may ask if the player is still there; it will mention it can “See you’re still here.”, and tell you to “Answer.”
thats basically just recreating the fake player idea lmao
Well the idea was more so that assuming it put u into the sorta quiz based instance, if u take too long to answer the question itll imply it can see u and tell u to answer the questions
ngl, i think keeping it simple like only allowing like 3 pre defined answer and choices is a good thing
I agree, theyd generally be between 2-5 answers
you guys are quite deep in this.. Middy are you still up to making a SIMPLE server with me. I can help with that project later
#1336416443511869500 message
🗣️📢💔
That's already a addon
sure
💔
Usually either:
“Yes” or “No”
“Strongly Agree” / “Agree” / “Neutral” / “Disagree” / “Strongly Disagree”
Or 4 answers to a question
it is? 🤯
very real
Yeah but u didnt make it so whats the point
that also usually prevents players from putting random answers thats meant to make it not as scary 🔥
i mean.. We might as well use it
he was just showing cuz i asked 💔
Yeah thats why theyd generally be predetermined / multiple choice
hmm
so likeke
we got a skyblock at first, and then at one point, u get asked with random questiosn?
guys give me something for the ai to make like a system (an easy one or sum)
whu
Custom entity movement handler with commands only
sorting data in the world after restarts or reloads with only scripts and no scoreboards
Custom entity movement handler with script api only
😈😈😈
i think chatgpt can actually do that one 💔
kinda reminds me of path finding on roblox
not sure if its good at coming up with ideas originally tho 😈
As in:
I have entity x, y, rot, and speed; where will it be next tick (variables only, no entity)
omgmg 🤯🤯🤯
/scoreboard objectives add movZ dummy
/summon armor_stand ~ ~ ~ {Tags:["CustomEntity"],Invisible:1,Marker:1,NoGravity:1}```
the ai already has failed
isnt that just predicting where its gonna move 💔
Id hope so, they only hard part w commands is the cosine, sine, and sqrt which i assume script api provides
💔 i thought it was doing scritps
let me do the script version now
y does it need cosine and sine and sqrt shi-
The idea is its not done w an entity tho, its just a thing represented by variables which make it hard
💔💔💔
Cus no entities; scores only
thats so depres
Why cant we just have sin, cos, tan, and sqrt operations instead of having to make our own with +-*/ its so tedious 😔
💔💔💔
we got the modula operator but not sqrt 💔
Word bro 😭
Ill at LEAST take sqrt for pythagoras
But would like sin cos and tan too
💔💔💔
Would make trig infinitely easier
i usually never use scoreboards for things like those as the main thing, usually entities lmao
I wanted to do it no entities 😔
Wasnt worth my day
( am not even in that part at school yet 💔 the only thing i partly understand in all this is the modula thigny )
U havent learned trigonometry yet?
nop
were still on algebra stuff, simplifying questions 💔
What year or grade r u in??
or compacting them 💔
am 16 and in form 3
i kinda duno how rhat translates as grades in ur countries
💔
Im from uk so
so depres
For me is years, altho thats equivalent to year 11 which is when we’re finishing school
im seeing if the chatgpt script works trust guys
real
most depres worker
I think we started learning trig at ab 14 (year 9)
wththt
aint no way 💔
am so depres
Yeah, im only 17, im just outa school
bad news guys
the americans built different 💔
it doesnt work
Im uk not american 😭
so depres
🤫
the kingdom really meant kingdoms 💔
I never thought id use trig and here i find myself using both trig, pythag, circle theory, and sm more 😔
hold on let me check the other script it gave me
And in minecraft of all places
💔 ( I understood only one letter in that sentence )
lmaoao
The formula for Sine is brutal asf me and people from the Bedrock Commands Community were researching it yesterday for a project and its foul
cosine and sine is just getting the x and z of a angle by drawing a line in a circle right? thats the basic idea i got of them but i cant really see how its being used in so many formulas that doesnt look to have anything to do with angles 💔
Yeah pretty much describes how i had to use it
huhhh
I was trying to make a custom controller of sorts for a ship that didnt ac exist as an entity or anything, means the only way it existed was as x, y, rot, and speed
funei
guys
So i needed to find a way to make it move based off those values by calculating its position on the next tick or at the end of the runtime
ask the ai something simple simple
huhhh
The total formula ended up looking like this in the end:
Y₂ = Y₁ + S * T * (16*(pi*θ/180)*(pi-(pi*θ/180)))/(5*pi^2-4*(pi*θ/180)*(pi-(pi*θ/180)))
give it a lil slack
lmaoao
what the fuck
💔
Word asf
wat does the weird lookign zero mean 💔
And thats only to calculate the y axis 🥹
💔💔💔
Its “theta”, a greek symbol used in maths to notate an “angle” kinda like how u would in algebra w a, b, c, etc.
give the ai another system like rng system or sum
💔
uhhh
Fine we’ll be boring 😔
Random crates
I thought u were tryna prove how efficient and reliable ai is
generate a random number that still always returns the same number, being 1
( ig u can do this bt generating a random number, if its not 1, repeat til its 1 📢🔥 )
Is a combo of these two formulas and converting degrees to radians
💔 ( wat is radians lmao- )
asked the ai
For minecraft bedrock I need you to make a script for random crates when someone right clicks on a compass it will take the score 500$ from them and then generate random loot that is put in a list exaple minecraft:diamond 64
where mt idea-
💔💔💔
omg i spelled example wrong
wats ur idea
Theres 2 measurements used in maths generally to represent angles:
degrees, and radians, where 1 radian is equal to like 57.3 degrees or smt stupid like that
🥺
wthth
so goofy
Radians are generally more accepted in scientifical calculations and so are therefore used in 90% of calculators by default, including the ones in ur phones
Theyre just annoying asf to work w tho
what is this even for
duno, just a smol challeng
how da hail
so radian is just angles except its "zero" is offset by 57.3 degrees 💔
Radians are represented as pi and pi/2 and weird stuff like that, where 1 radian, or 1 pi, is equal to 57.3 degrees
huhhh
So 2 radians is equal to 114.6 degrees i think?
Idk its weird
I just let the formula do its thing
i is very sorry, as a mere average minecraft kid, i is not able to comprehend alat 💔
but how would the score be shown
whu
it doesnt
it just processes it and then thats it
Dw i hardly know how it all works either, all ik is it does
kay
just literally a idea to see if chatgpt can come up with it
U can see the accuracy of the formula notated by the yellow number on the bottom, compared to the simple version ran on my phone as the number on top; bottom number is multiplied by 1000 for minecraft so i can represent 3 decimal places
bro prob just sumed up like 3 months of classes in 15 mins 💔
U never think its useful till it is, literally
💔💔💔
That formula is only used to find half of the equation however
its so much longer 💔
Gotta use pythag or make cosine for the other half; i chose pythag and used a custom sqrt operation w commands instead
💔💔💔 and for only 3 decimal places
Literally 😭
when mojang add decimals to scoreboard 💔
Please
And gimme my damn sqrt, sin, cos, and tan too so i never have to do this stupid shit again
lmaoaooa
💔 not sure if i can handle all these cosine, sine and trigonometry stuff in the upcoming years after seeing it here
am so depres
Luckily its nowhere near as bad as the shit i just posted in school lmao
💔💔💔
that makes it even worse for me, no? 💔
Its ac super simple in school for the most part so shouldnt be too big of a deal
huhhh
💔
No, no, its fairly easy in school
real?
huhh
That isnt all one equation
Each line is one equation; a lot shorter than the crap above lmao
my brain doesnt want to process things shown in that thumbnail or watevrv
Its not too bad, essentially u just highlight the lengths u have, represented as H, O, and A: Hypotenuse, Opposite, and Adjacent, then depending on which two u selected, u use:
SOH CAH TOA, and decide which equation to use shown in the thumbnail on the right
wthth
Itll make more sense in school, dw
i think remembering the names is gonna be harder than remembering the concepts 💔
Nahhh, ull get it
It ends up being one of the fairly easier things to learn tbf


