Differences From
Artifact [7cb4085b3b]:
- File
starlit.ct
— part of check-in
[953151446f]
at
2024-05-05 19:31:39
on branch trunk
— better alarm LEDs, continue work on matter compiler UI, hack around gravitational horrorscape (i.e. stop shitting all over the server's `minetest.conf`), better stat interface, tweak some compute stats, be more generous with starting battery loadout, mercilessly squash numberless bugs beneath my jackbooted heel
(user:
lexi,
size: 16827)
[annotate]
[blame]
[check-ins using]
24 24
25 25 [!liars], all of them.
26 26
27 27 are there other survivors? have they been similarly changed? what was that artifact and who were those terrorists? important questions, all, but they pale in comparison with the most important one:
28 28
29 29 how the fuck are you going to survive the next 24 hours?
30 30
31 +## usage
32 +the ideal way to install [`starlit] on your system is to simply clone the repository with [`fossil]. this way, you can easily update the game whenever it's updated.
33 +~~~
34 +$ cd ~/.minetest/games
35 +$ fossil clone https://c.hale.su/starlit
36 +~~~
37 +game assets are not versioned. to update these, run the following command [*in the root of the open starlit repository] (otherwise the archiver will shit all over your everything).
38 +~~~
39 +$ fossil uv cat asset.cpxz | xzcat | cpio -i
40 +~~~
41 +if, for some unaccountable reason, you don't want to use fossil, you can download a tarball.
42 +~~~
43 +$ curl https://c.hale.su/starlit/tarball/starlit.tar.gz | tar x
44 +$ curl https://c.hale.su/starlit/uv/asset.cpxz | xzcat | cpio -i
45 +~~~
46 +eventually i might make proper release tarballs available that bundle the game and assets together, but the game isn't stable enough to do that yet.
47 +
31 48 ## engine
32 49 starlit is developed against a bleeding-edge version of minetest. it definitely won't work with anything older than v5.7, and ideally you should build directly from master.
33 50
34 51 starlit is best used with a patched version of minetest, though it is compatible with vanilla. the recommended patches are:
35 52
36 53 * [>p11143 11143] - fix third-person view orientation
37 54