A list of resources for among us modding.
Getting started: go to https://docs.reactor.gg/docs
or: go to the website reactor.gg
, join the discord and see the pinned message in #modding
- General
// ==UserScript== | |
// @name GitHub in VSCode | |
// @version 0.1.4-vscodedev.1 | |
// @description A userscript that adds a button to open a repo in VSCode using github1s | |
// @license MIT | |
// @author Rob Garrison | |
// @namespace https://github.com/Mottie | |
// @include https://github.com/* | |
// @run-at document-idle | |
// @grant GM_addStyle |
[ | |
{ | |
"name": "GlobalConstants", | |
"base_class": "", | |
"api_type": "core", | |
"singleton": true, | |
"singleton_name": "GlobalConstants", | |
"instanciable": false, | |
"is_reference": false, | |
"constants": { |
A list of resources for among us modding.
Getting started: go to https://docs.reactor.gg/docs
or: go to the website reactor.gg
, join the discord and see the pinned message in #modding
const library = {}; | |
{ | |
if (typeof define === "function" && define.amd) { | |
// AMD | |
define([], function () { | |
return library; | |
}); | |
} | |
if (typeof module === "object" && module.exports) { |
find . -name .DS_Store -print -delete |
git rm -r --cached . | |
git add . |
ct.js FAQ
The camera won't follow my charater!
Make sure you have this code in your character's 'On Create' tab:
ct.camera.follow = this;
// Optional; sets the frame inside which the copy will be kept, in game pixels. Can be set to `null` so the copy is set to the center of the screen.
A bunch of random utilities. Beware of bugs 🐛