Skip to content

Instantly share code, notes, and snippets.

@RillonDodgers
RillonDodgers / README.md
Created April 19, 2025 03:09
Schedule 1 Modding - Quick Guide

🧩 Modding Schedule I with MelonLoader + dnSpy

This guide shows how to mod Schedule One, a Unity game that uses IL2CPP, by leveraging the beta Mono version available on Steam, along with dnSpy and MelonLoader. We'll walk through how to inspect and patch game logic like the OfferDealValid method.

🛠️ Prerequisites

  • Steam version of Schedule One
  • MelonLoader (latest version)
  • dnSpy (for exploring .NET assemblies)
  • Basic knowledge of C# and Harmony patching
@RillonDodgers
RillonDodgers / ollama_ruby_llm.rb
Created April 14, 2025 16:04
Ollama instead of OpenAI in RubyLLM gem
require "ruby_llm"
module RubyLLM::Providers::OpenAI
def self.api_base
"http://localhost:11434/v1"
end
end
RubyLLM.configure do |config|
config.openai_api_key = 'ollama'
@RillonDodgers
RillonDodgers / .wezterm.lua
Last active March 5, 2025 17:14
WezTerm config
local wezterm = require 'wezterm'
local config = {}
-- Miscellaneous
config.audible_bell = 'Disabled'
config.hide_tab_bar_if_only_one_tab = true
config.color_scheme = 'Gruvbox dark, medium (base16)'
config.scrollback_lines = 10000
-- Font config