Skip to content

Releases: RewardedIvan/3DPS

SV 1.3

15 Nov 15:37
Compare
Choose a tag to compare

A lot of changes:

Quick rundown:

  • Everything is organized into directories (devs)
  • Docker actually works
  • Schedule, and most other .MDs moved to the wiki
  • Tests to see if the app actually works (devs)
  • Branch sqlite3
  • I actually provided binaries for the people lazy enough to compile it

Migrating from older databases

if your PRAGMA table_info(levels); displays id and data your probably using an older db.
To migrate type this shit i made up in 20 minutes
CREATE TABLE IF NOT EXISTS levels2(data BLOB UNIQUE);
DELETE FROM levels WHERE ROWID NOT IN (SELECT MIN(ROWID) FROM levels GROUP BY data);
INSERT INTO levels2 (data) SELECT data FROM levels;
DROP TABLE levels;
ALTER TABLE 'levels2' RENAME TO 'levels';
This also removes duplicates

Keep in mind AMD64 doesn't mean it only works on AMD CPUs, it means its works only on 64bit CPUs and 386 stands for 32bit CPUs

3Dash Server Archive August 27th 2022 [7:56:09]

27 Aug 20:18
1c52178
Compare
Choose a tag to compare

Server archive.... Not my server, but the one at https://delugedrop.com/3Dash

Here is the code I ran

I am not responsible, if you do anything bad to the server that I mentioned above, it is YOUR responsibility to execute nodejs with my code, this code could be considered a DOS attack if your not careful, although I suggest you NOT to execute the code and download the archive I provided.

The servers are down forever now, according to DelugeDrop https://www.youtube.com/watch?v=kSsWVT2APA4

Hey, if you are delugedrop, then please make a github account so we, the FOSS community, would appreciate your work, and help you. The modding community, would also benefit from this. If you want me to stop these (probably monthly) archives, please make an issue.

3DPS Client (base game v1.2)

24 Aug 19:59
a362d97
Compare
Choose a tag to compare

The client has not been modified a lot
Mods:

  1. Switched to localhost:9991 rather then delugedrop.com
  2. Blocks are now 69420 instead of 4000, although it doesn't work for some reason?
  3. Deleted author, name, difficulty, when uploading, since they are in the data url encoded thingy.
  4. New response code response to 420, SPAAAAAM!!
    Also don't get confused by amd64, this will run on Intel processors. That's just the architecture name.
    You won't see another release in awhile, unless delugedrop adds some new online feature.
sv stands for server version

Full Changelog: https://github.com/RewardedIvan/3DPS/commits/sv.0.0.1