-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_format.html
38 lines (37 loc) · 1.47 KB
/
mod_format.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html lang="en-us">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VCMGD20X37"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VCMGD20X37');
</script>
<meta charset="utf-8">
<title>2D Skyblock</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://2dskyblock.github.io/style.css">
<link rel="icon" href="https//2dskyblock.github.io/favicon.ico">
<meta name="description" content="The main page for 2D Skyblock">
<style>
td,th {
border: solid 2px black;
padding: 5;
}
</style>
</head>
<body>
<br>
<h1>2D Skyblock Mod Format</h1>
<br>
<p><a href="https://2dskyblock.github.io">Back</a></p>
<p>A mod is like this:</p>
<code>{"min-version":0,"max-version":0,"name":"example mod"}<br>alert('Example Mod')</code>
<p>The min and max version fields both have a number, which is currently 0 for 23w24a. The name field is just a name. After a single line of json, there is python code that is run.</p>
<p>Mods save and are run when a save is loaded.</p>
<p>alt+M to add a mod, alt+L to list mods, alt+R to remove a mod</p>
<p>The code for the game is <a href="https://2dskyblock.github.io/main.py">here.</a></p>
<br>
</body>
</html>