Skip to content

Instantly share code, notes, and snippets.

@CodaBool
CodaBool / readme.md
Created June 9, 2026 21:29
Liminal Horror Assets

GitHub is a decent public file storage site. You just have to know how to use it. All assets are uploaded as comments here.

@CodaBool
CodaBool / release.yml
Created May 30, 2026 02:14
example foundry release
on:
push:
tags:
- "v*" # run only against tags
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v6
@CodaBool
CodaBool / rundown.md
Last active June 2, 2026 00:27
mothership

Overview

cheatsheet

PDF

optional to read as a player

click here

@CodaBool
CodaBool / guide.md
Last active March 4, 2026 21:01
Foundry simple hosting
@CodaBool
CodaBool / gif hosting
Last active April 15, 2026 04:54
several gifs since imgur isn't great
gif hosting
@CodaBool
CodaBool / alien_rpg_rolls.html
Last active March 19, 2025 20:51
I have multiple, see comments
<p>All rolls should be covered by the game system's automation. <br><br>- clicking on stress will roll a panic<br>- clicking on an item will roll for that item.</p>
<p></p>
<p>However, modifiers still need to be handled manually. In the case of items you have picked up, they can affect some dice rolls. For example, a "Maintenance Jack" will give a +1 to Heavy Machinery skill checks. To add this modification right click on the skill and type in your modification.</p>
<p></p>
<h2>Manual</h2>
<p>You can manually roll dice if needed. Type a message following the formatting below into the chat message box to roll the dice. <br></p>
<blockquote>
<pre><code>/r {number of dice}d{faces}</code></pre>
</blockquote>
<p>for example to roll 2 d6 you would send the following message<br></p>
{
"id": "forien-quest-log",
"title": "Forien's Quest Log",
"description": "Provides comprehensive Quest Log system for players and Game Masters",
"authors": [
{
"name": "Forien",
"url": "https://www.patreon.com/forien"
},
{
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@CodaBool
CodaBool / main.js
Created March 11, 2025 23:48
V12+ DialogV2 change background
const backgrounds = [
"/full/path/to/file.webp",
"https://or.even.urls"
// ... list of images here
]
// Generate the dialog content
let content = '<form><div class="form-group" style="display: flex">'
backgrounds.forEach((bg, index) => {