Skip to content

Instantly share code, notes, and snippets.

@Nnnes
Nnnes / ssh-certs.md
Last active May 4, 2026 08:33
SSH certs
@Nnnes
Nnnes / seed.mod.gml
Created March 28, 2024 20:37
Seed mod for Nuclear Throne Together
#define init
global.seed = 1;
trace("/seed #");
#define game_start
game_set_seed(global.seed);
#define chat_command(_cmd, _arg, _player)
if(_cmd == "seed"){
global.seed = real(_arg);