{"id":37919,"date":"2026-06-01T22:27:21","date_gmt":"2026-06-01T19:27:21","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/"},"modified":"2026-06-01T22:27:21","modified_gmt":"2026-06-01T19:27:21","slug":"ccc-redstone-link","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/","title":{"rendered":"CC: Create Redstone Link"},"content":{"rendered":"<p># CC: Create Redstone Link<\/p>\n<p>Based on https:\/\/modrinth.com\/mod\/cc-redstone-link-bridge. I would have simply contributed the additional feature of adding color support there, but unfortunately that mod is not source available (despite the MIT license on its page).<\/p>\n<p>This mod connects **Create Redstone Link networks** with **CC:Tweaked computers**. It adds a single block, the **CC Redstone Link Bridge**, which can be placed in the world and then used as a ComputerCraft peripheral.<\/p>\n<p>This mod requires **Create** and **CC:Tweaked**.<\/p>\n<p>## What the Mod Does<\/p>\n<p>The bridge acts as a small adapter between two systems:<\/p>\n<p>&#8211; **Create** provides the Redstone Link network.<br \/>\n&#8211; **CC:Tweaked** provides Lua control from computers.<\/p>\n<p>With the bridge block in the world, a connected computer can:<\/p>\n<p>&#8211; read the current signal strength of any Redstone Link frequency pair<br \/>\n&#8211; send a signal strength to any Redstone Link frequency pair<br \/>\n&#8211; optionally tag either frequency slot with a 24-bit RGB dye color<\/p>\n<p>The mod is intentionally minimal. The Lua interface only exposes the operations required for direct network interaction.<\/p>\n<p>## How It Works<\/p>\n<p>When the peripheral is used from Lua:<\/p>\n<p>&#8211; `getLinkSignal(freq1, freq2)` looks up the current strength for that frequency pair.<br \/>\n&#8211; `sendLinkSignal(freq1, freq2, strength)` sets the target frequency pair and transmits the chosen strength.<\/p>\n<p>Both functions accept two optional trailing arguments, `color1` and `color2`, which apply a dye color to the corresponding frequency slot.<br \/>\nThe frequency values are item IDs written as strings. For example, `minecraft:iron_ingot` and `minecraft:oak_sapling` form one valid pair.<\/p>\n<p>## Crafting Recipe<\/p>\n<p>![The recipe is a 3\u00d73 shaped craft with Redstone Links in all four corners, a Wireless Modem in the center, and Cobblestone in the bottom-middle slot. The three remaining middle-edge slots (top-middle, middle-left, and middle-right) are filled with Create transmitters.](https:\/\/cdn.modrinth.com\/data\/cached_images\/488b831109d9f8042ce81cb0868cbf9e4d71264b_0.webp)<\/p>\n<p>## Lua API<\/p>\n<p>Peripheral type:<\/p>\n<p>&#8211; `redstone_link_bridge`<\/p>\n<p>Methods:<\/p>\n<p>&#8211; `getLinkSignal(freq1, freq2 [, color1 [, color2]])` -> `number`<br \/>\n&#8211; `sendLinkSignal(freq1, freq2, strength [, color1 [, color2]])`<\/p>\n<p>### Frequency Values<\/p>\n<p>`freq1` and `freq2` must be item IDs as strings.<\/p>\n<p>Examples:<\/p>\n<p>&#8211; `&#8221;minecraft:iron_ingot&#8221;`<br \/>\n&#8211; `&#8221;minecraft:oak_sapling&#8221;`<br \/>\n&#8211; `&#8221;minecraft:redstone&#8221;`<\/p>\n<p>Use an empty string (`&#8221;&#8221;`) if you want to represent an empty frequency value.<\/p>\n<p>### Frequency Colors<\/p>\n<p>`color1` and `color2` are optional 24-bit RGB integers in the form `0xRRGGBB`. They are only meaningful when the corresponding frequency item supports Minecraft&#8217;s `DYED_COLOR` data component, which is only leather armor and leather horse armor in vanilla. A colored slot is on a different Redstone Link network from an uncolored slot of the same item, and different colors produce different networks.<\/p>\n<p>The Minecraft Wiki Dye page lists the RGB value each of the 16 standard dyes produces when applied to leather armor in Java Edition. Useful values:<\/p>\n<p>&#8211; `0xB02E26` &#8212; Red Dye<br \/>\n&#8211; `0x3C44AA` &#8212; Blue Dye<br \/>\n&#8211; `0xFED83D` &#8212; Yellow Dye<br \/>\n&#8211; `0x5E7C16` &#8212; Green Dye<br \/>\n&#8211; `0x1D1D21` &#8212; Black Dye<br \/>\n&#8211; `0xF9FFFE` &#8212; White Dye<\/p>\n<p>Pass `nil` (or simply omit the argument) for a slot that should remain uncolored. To color only the second slot, pass `nil` for the first.<\/p>\n<p>## Example<\/p>\n<p>&#8220;`lua<br \/>\nlocal bridge = peripheral.find(&#8220;redstone_link_bridge&#8221;)<br \/>\nassert(bridge, &#8220;No redstone_link_bridge found&#8221;)<\/p>\n<p>&#8212; Read an existing frequency pair<br \/>\nlocal current = bridge.getLinkSignal(&#8220;minecraft:diamond&#8221;, &#8220;minecraft:redstone&#8221;)<br \/>\nprint(&#8220;Current signal:&#8221;, current)<\/p>\n<p>&#8212; Send a signal to a frequency pair<br \/>\nbridge.sendLinkSignal(&#8220;minecraft:diamond&#8221;, &#8220;minecraft:redstone&#8221;, 7)<\/p>\n<p>&#8212; Send on a color-tagged channel. This matches a physical Redstone Link<br \/>\n&#8212; whose leather-armor slots were dyed with one Red Dye and one Blue Dye.<br \/>\nbridge.sendLinkSignal(<br \/>\n    &#8220;minecraft:leather_chestplate&#8221;,<br \/>\n    &#8220;minecraft:leather_helmet&#8221;,<br \/>\n    15,<br \/>\n    0xB02E26,   &#8212; Red Dye<br \/>\n    0x3C44AA)   &#8212; Blue Dye<\/p>\n<p>&#8212; Only the second slot is colored<br \/>\nbridge.sendLinkSignal(<br \/>\n    &#8220;minecraft:leather_chestplate&#8221;,<br \/>\n    &#8220;minecraft:leather_helmet&#8221;,<br \/>\n    15,<br \/>\n    nil,<br \/>\n    0x3C44AA)   &#8212; Blue Dye<br \/>\n&#8220;`<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This mod connects Create Redstone Link networks with CC:Tweaked computers.<\/p>\n","protected":false},"featured_media":37920,"template":"","meta":{"_minecraft_slug":"ccc-redstone-link","_minecraft_project_id":"zDWcAhSD","_minecraft_author":"ryleu","_minecraft_license":"MIT","_minecraft_downloads":20,"_minecraft_follows":1,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"ccc-redstone-link.zip","_minecraft_size_bytes":58951,"_minecraft_version_count":3,"_minecraft_updated_at":"2026-05-16T18:00:39.201792Z","_minecraft_date_created":"2026-05-16T03:18:25.035512Z","_minecraft_date_modified":"2026-05-12T22:11:26.170040Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/ccc-redstone-link","_minecraft_icon_attachment_id":37920,"_minecraft_imported_at":"2026-06-01T19:27:22+00:00","_minecraft_import_hash":"37c550f435cb4860b3e518163eed8d89","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[158,123,92],"mod_loader":[160],"minecraft_version":[37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-37919","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-neoforge","mod_category-technology","mod_category-utility","mod_loader-neoforge","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CC: Create Redstone Link - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CC: Create Redstone Link - Minecraft\" \/>\n<meta property=\"og:description\" content=\"This mod connects Create Redstone Link networks with CC:Tweaked computers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/\",\"name\":\"CC: Create Redstone Link - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/ccc-redstone-link-icon-b1b2ba8561a2429020ac8688e570705967a54925_96.webp\",\"datePublished\":\"2026-06-01T19:27:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/ccc-redstone-link-icon-b1b2ba8561a2429020ac8688e570705967a54925_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/ccc-redstone-link-icon-b1b2ba8561a2429020ac8688e570705967a54925_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ccc-redstone-link\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CC: Create Redstone Link\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CC: Create Redstone Link - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/","og_locale":"en_US","og_type":"article","og_title":"CC: Create Redstone Link - Minecraft","og_description":"This mod connects Create Redstone Link networks with CC:Tweaked computers.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/","name":"CC: Create Redstone Link - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/ccc-redstone-link-icon-b1b2ba8561a2429020ac8688e570705967a54925_96.webp","datePublished":"2026-06-01T19:27:21+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/ccc-redstone-link-icon-b1b2ba8561a2429020ac8688e570705967a54925_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/ccc-redstone-link-icon-b1b2ba8561a2429020ac8688e570705967a54925_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/ccc-redstone-link\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"CC: Create Redstone Link"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/37919","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/37920"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=37919"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=37919"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=37919"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=37919"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}