Search the Community
Showing results for tags 'bedrock'.
-
๐งโ๐ป PLAYER (USER) COMMANDS Commands players can usually use without operator status, depending on server/world permissions. Chat & Communication /me <action> /tell <player> <message> /msg <player> <message> /w <player> <message> Gameplay / Utility /help /help <command> /list /seed /clear /clear <player> /clear <player> <item> Player Info /title @s title <text> /title @s subtitle <text> /title @s actionbar <text> (Note: title permissions may be restricted by server settings) ๐ก๏ธ OPERATOR / ADMIN COMMANDS Require operator status or cheats enabled ๐ฎ GAMEMODE & DIFFICULTY /gamemode survival /gamemode creative /gamemode adventure /gamemode spectator /gamemode <mode> <player> /difficulty peaceful /difficulty easy /difficulty normal /difficulty hard โฑ๏ธ TIME & WEATHER /time set day /time set night /time set <number> /time add <number> /weather clear /weather rain /weather thunder /weather <type> <duration> ๐งญ TELEPORTATION & POSITION /tp <player> <player> /tp <player> <x> <y> <z> /tp @s ~ ~ ~ /teleport (same as /tp) /spawnpoint /spawnpoint <player> /setworldspawn /setworldspawn <x> <y> <z> ๐ INVENTORY & ITEMS /give <player> <item> /give <player> <item> <amount> /give <player> <item> <amount> <data> /clear <player> /clear <player> <item> โค๏ธ HEALTH, STATUS & EFFECTS /effect <player> <effect> /effect <player> <effect> <seconds> <amplifier> /effect <player> clear /kill /kill <player> /damage <player> <amount> ๐งฑ BLOCKS & WORLD EDITING /setblock <x> <y> <z> <block> /fill <x1> <y1> <z1> <x2> <y2> <z2> <block> /fill ... replace /clone <start> <end> <destination> ๐ง ENTITIES & MOBS /summon <entity> /summon <entity> <x> <y> <z> /kill @e /kill @e[type=zombie] /kill @e[r=10] ๐ฏ TARGET SELECTORS @s = yourself @p = nearest player @a = all players @e = all entities @r = random player Selector Arguments [type=] [name=] [r=] (radius) [rm=] (min radius) [c=] (count) [tag=] [x=] [y=] [z=] [dx=] [dy=] [dz=] Example: /tp @e[type=cow,r=5] @s ๐ท๏ธ TAGS & SCOREBOARD (ADVANCED) Tags /tag <player> add <tag> /tag <player> remove <tag> /tag <player> list Scoreboard /scoreboard objectives add <name> dummy /scoreboard objectives remove <name> /scoreboard objectives list /scoreboard players add <player> <objective> <value> /scoreboard players remove <player> <objective> <value> /scoreboard players set <player> <objective> <value> /scoreboard players list <player> ๐งช GAMERULES /gamerule doDaylightCycle true|false /gamerule keepInventory true|false /gamerule mobGriefing true|false /gamerule doMobSpawning true|false /gamerule showCoordinates true|false /gamerule commandBlockOutput true|false ๐งฐ COMMAND BLOCK / SERVER /say <message> /stop /reload /function <name> ๐ฅ PLAYER MANAGEMENT /op <player> /deop <player> /kick <player> /kick <player> <reason> /ban <player> /ban-ip <ip> /pardon <player> /pardon-ip <ip> /whitelist on /whitelist off /whitelist add <player> /whitelist remove <player> ๐งฉ STRUCTURES & ADD-ONS /structure save <name> <x1> <y1> <z1> <x2> <y2> <z2> /structure load <name> <x> <y> <z> /structure delete <name> /reload ๐งช DEBUG & CAMERA /camera <player> set free /camera <player> set first_person /camera <player> set third_person /playsound <sound> <player> /stopsound <player> ๐ฎ COMMAND BLOCK EXAMPLES (BEDROCK) Command Block Types Impulse โ runs once Chain โ runs after previous Repeat โ runs every tick Always Active โ no redstone needed ๐ช 1. TELEPORT PAD Steps Place Pressure Plate Under it: Impulse Command Block Command /tp @p 100 64 100 ๐ Teleports nearest player to set coordinates โค๏ธ 2. AUTO-HEAL ZONE Repeat | Always Active /effect @p[r=5] regeneration 1 1 true ๐ Heals players within 5 blocks continuously ๐ฅ 3. MOB KILL ZONE Repeat | Always Active /kill @e[type=!player,r=10] ๐ Kills all mobs in radius (safe for farms) ๐ 4. NO-ENTRY AREA (INVISIBLE WALL) Repeat | Always Active /tp @p[x=50,y=64,z=50,dx=10,dy=5,dz=10] 0 100 0 ๐ Teleports intruders away ๐ท๏ธ 5. TAG SYSTEM (ADMIN / VIP) Step 1 โ Give Tag (Impulse) /tag @p add vip Step 2 โ Effect for VIPs (Repeat) /effect @a[tag=vip] speed 1 1 true ๐ฏ 6. PLAYER COUNTER (SCOREBOARD) Setup (Impulse) /scoreboard objectives add players dummy Players Repeat | Always Active /scoreboard players set @a players 1 ๐ Used for tracking or logic systems ๐ฅ 7. TNT TRAP Impulse /summon tnt ~ ~1 ~ ๐ Place under pressure plate ๐ฆ 8. COMMAND BLOCK CHAIN EXAMPLE Impulse /say Teleporting... Chain /tp @p 0 100 0 Chain /effect @p slow_falling 10 1 โ๏ธ READY-TO-USE ADMIN COMMANDS ๐ ADMIN MODE (FULL POWER) /gamemode creative @s /effect @s night_vision 999999 1 true /effect @s resistance 999999 5 true ๐ FREEZE PLAYER /effect <player> slowness 999999 255 true /effect <player> jump_boost 999999 128 true ๐ซ BANISH PLAYER TO VOID /tp <player> 0 -64 0 ๐ฌ ANNOUNCEMENT SYSTEM /title @a title ยงcSERVER NOTICE /title @a subtitle ยงfWelcome to the server! ๐ RESET PLAYER /clear <player> /effect <player> clear /tp <player> @s ๐งผ CLEAR LAG (MOBS + ITEMS) /kill @e[type=!player] Or safer: /kill @e[type=item] ๐ TELEPORT ALL PLAYERS /tp @a 0 100 0 ๐ก๏ธ ENABLE / DISABLE PVP /gamerule pvp false /gamerule pvp true ๐งช GIVE CUSTOM KIT /give <player> diamond_sword /give <player> diamond_armor 1 /give <player> golden_apple 10 ๐ RESTART-LIKE RESET /time set day /weather clear /kill @e[type=item] ๐ง PRO TIPS Use tags instead of names (works offline-safe) Combine Repeat + Chain blocks for automation Bedrock command blocks run 20 times per second Use /gamerule commandBlockOutput false to reduce spam
