Skip to content

Instantly share code, notes, and snippets.

View umnikos's full-sized avatar

Alex Stefanov umnikos

  • Sofia, Bulgaria
View GitHub Profile

SwitchCraft 3 introduction for new players

SC3 is a minecraft server built around computercraft. Apart from CC:Tweaked, Plethora, and a few homebrewed mods, there is not much else in the modpack. This gives the game a very vanilla+ feel which manages to have a rather extended endgame due to progression not being the main focus. You probably joined for the computercraft mod, and this tutorial will get to it eventually, but first let me introduce you to all (most) of the new items from all of the mods:

  1. Computers
  • Computers: Blocks that execute arbitrary Lua code.
@umnikos
umnikos / fh.py
Created March 7, 2024 21:59
Fuckhard interpreter (Brainfuck derivative)
code = input("program: ")
data = [0]
ip = 0
dp = 0
input_buffer = ""
def error(msg):
@umnikos
umnikos / diamond.lua
Last active September 19, 2024 19:44
SC3 `\diamond` sell shop's code
if not chatbox.hasCapability("command") or not chatbox.hasCapability("tell") then
error("Chatbox does not have the required permissions. Did you register the license?")
end
local helper = require "helper"
-- SETUP:
-- have a turtle with an entity sensor on its right (to detect player presence) and wireless modem on its left (for shopsync)
-- have slots 2-16 full of dummy items (gold swords, for example), only leaving slot 1 empty
-- and finally, place a chest below the turtle (that's where received diamonds will be stored)