Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Get Modrinth App Upgrade to Modrinth+
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
Code of Copper Extensions

Code of Copper Extensions

Operator focused extensions for GolemScript (Code of Copper).

57
2
Library

Compatibility

Minecraft: Java Edition

1.20.2–1.20.4

Platforms

Data Pack

Supported environments

Server-side

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+

Links

Report issues View source Join Discord server

Creators

moxvallix
moxvallix Owner

Details

Licensed GPL-3.0-or-later
Published last year
Updated last year
DescriptionChangelogVersions

Code of Copper Extensions

This pack provides a couple additional functions to Code of Copper, aimed at providing functionality for those who would prefer to use the language in creative mode, or as an operator.

Whilst made by one of the developers of Code of Copper, this pack is unofficial. While some functionality provided by this pack may one day make it upstream, much of it will not.

Requirements

  • This datapack will only work in versions 1.20.2 and higher
  • This datapack will not work without Code of Copper

Provided Functions

Exec

Exec will run any command given to it, in a string. It runs as the bot, positioned at the bot. It allows multiple strings in the same function.

exec("time set day") # Set time to day
exec("weather clear", "gamemode adventure @p") # Set weather to clear, and @p to adventure mode

Tp

Teleports the selected entity to the given coordinates. Coordinates can be an integer, or a string. Defaults to "@s" if unset. Tilde ~ is relative to the bot.

tp(0, 64, 0) # Teleport bot (@s) to 0, 64, 0
tp(0, 64, 0, "@a") # Teleport all players (@a) to 0, 64, 0
tp("~", "~8", "~", "@p") # Teleport nearest player 8 blocks above the bot
tp("~", 100, "~", "@p") # Teleport nearest player to Y 100, above the bot

Setblock

Alternative to place(), doesn't require blocks in inventory. Coordinates can be an integer, or a string. Tilde ~ is relative to the bot.

setblock(:stone, 0, 64, 0) # Sets the block minecraft:stone at 0, 64, 0
setblock(:grass_block, "~", "~8", "~") # Sets the block minecraft:grass_block 8 blocks above the bot

Score

Returns the score of the selected entity, as an integer. Defaults to "@p" if unset.

score("myscoreboard") # Returns the score of @p, fo scoreboard myscoreboard
score("myotherscoreboard", "Moxvallix") # Returns the score of Moxvallix, for scoreboard myotherscoreboard

Scoreset

Sets the score of the selected entity, from a given integer. Defaults to "@p" if unset. Returns the score set.

scoreset("myscoreboard", 8) # Sets @p to a score of 8 on scoreboard myscoreboard
scoreset("myotherscoreboard", 123, "Gears_YT") # Sets Gears_YT to a score of 123 on scoreboard myotherscoreboard

Rule

Returns the value of the given gamerule as an integer. If a value is given as a second argument, it sets the gamerule as such. Accepts either a string, integer or boolean as second value.

rule("keepInventory") # Returns the value of gamerule keepInventory (0 if false, 1 if true)
rule("doFireTick", false) # Sets the gamerule doFireTick to false, returns 0
rule("randomTickSpeed", 5) # Sets the gamerule randomTickSpeed to 5, returns 5

Run

Runs a function given as a resource, and returns the value the function returns.

run(:foo) # Runs function minecraft:foo, returning what the function returns
run(code:bar) # Runs function code:bar, returning what the function returns

Modrinth is open source.

fix-window-open@1656e14

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.