mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-15 08:06:06 +09:00
workign on the modloader in progress
This commit is contained in:
BIN
assets/mods/dwarventech/ModuleComputers.jar
Normal file
BIN
assets/mods/dwarventech/ModuleComputers.jar
Normal file
Binary file not shown.
BIN
assets/mods/dwarventech/bios/pipboot.rom
Normal file
BIN
assets/mods/dwarventech/bios/pipboot.rom
Normal file
Binary file not shown.
13
assets/mods/dwarventech/bios/pipcode.bas
Normal file
13
assets/mods/dwarventech/bios/pipcode.bas
Normal file
@@ -0,0 +1,13 @@
|
||||
10 print("polling radar...")
|
||||
20 s=cput(1,"POLL")
|
||||
30 if s><0 then goto 900
|
||||
40 l=cget(1,0)
|
||||
41 REM print("length: "+l+", pixels: "+l/3)
|
||||
50 for i=0 to l-1 step 3
|
||||
60 m=peek(i)*160+peek(i+1)
|
||||
62 p=peek(i+2)
|
||||
63 poke(-1048576-m,p)
|
||||
70 next
|
||||
80 REM poke(-1070977,0)
|
||||
90 goto 20
|
||||
900 print("Polling failed: "+s)
|
||||
2
assets/mods/dwarventech/items/itemid.csv
Normal file
2
assets/mods/dwarventech/items/itemid.csv
Normal file
@@ -0,0 +1,2 @@
|
||||
"id";"classname"
|
||||
"1";"net.torvald.terrarum.modulecomputers.gameitems.ItemWearableWorldRadar"
|
||||
|
@@ -3,7 +3,7 @@ description=Dwarven technicians are emerged from their hiding
|
||||
author=Terrarum
|
||||
package=net.torvald.terrarum.modulecomputers
|
||||
entrypoint=net.torvald.terrarum.modulecomputers.EntryPoint
|
||||
releasedate=2017-07-14
|
||||
version=0.2.0
|
||||
libraries=
|
||||
dependency=basegame 0.2.*
|
||||
releasedate=2021-12-03
|
||||
version=0.3.0
|
||||
jar=ModuleComputers.jar
|
||||
dependency=basegame 0.2.*
|
||||
|
||||
Reference in New Issue
Block a user