Skip to content

Instantly share code, notes, and snippets.

View Athihusky's full-sized avatar

Athesis Husky Athihusky

  • Germany
View GitHub Profile
@Athihusky
Athihusky / spacebase.php
Last active August 29, 2015 14:02 — forked from sj26/spacebase.rb
Hack / Read Spacebase saves
<?php
//Spacebase Savegame-Reader in PHP
//Rewritten by Athesis Breda
//Original by sj26, https://gist.github.com/sj26/
//Read Save-File
$file = file_get_contents('./SpacebaseDF9AutoSave.sav', true);
//RAW Inflate Savefile
$compressed = gzinflate($file, 280000000 );