4 Commits

Author SHA1 Message Date
b94e7635bf All career racer complete!!! 2016-11-03 11:55:52 +03:00
8bfa35b9e1 Big Cleave complete! 2016-11-03 09:27:09 +03:00
2182966396 Edited README.md 2016-11-02 00:03:14 +03:00
5e7957bac2 Complete Smokester's Crater 2016-11-01 23:59:48 +03:00
5 changed files with 59 additions and 31 deletions

View File

@ -1,9 +1,10 @@
![FUEL](https://raw.githubusercontent.com/iiiypuk/fuel-stuff/master/.fuel.png)
**Restore saves**
`1 -` Download [saves](https://github.com/iiiypuk/fuel-stuff/releases/tag/20162710).
`2 -` See `readme.txt` in archive.
**Restore saves**
* Download [saves](https://github.com/iiiypuk/fuel-stuff/releases/tag/20161103).
* See `readme.txt` in archive.
**TODO**
`-` Complete game (Career and Challenges)
`-` Get max FUEL
`-` Ride 99999999 km (max spedometer count)
**TODO**
- [x] Complete game (Career)
- [ ] Complete challenges
- [ ] Get max FUEL
- [ ] Ride 99999999 km (max spedometer count)

View File

@ -1,26 +1,26 @@
FUEL 146714
DISTANCE 1112 km
FUEL 807880
DISTANCE 1758,5 km
PROGRESSION
Zones unclocked 14/19
Career Races finished 39/72
Career Races with gold awarded 39/72
Career Stars awarded 117/216
Challenges cleared 46/190
Zones unclocked 19/19
Career Races finished 72/72
Career Races with gold awarded 72/72
Career Stars awarded 216/216
Challenges cleared 15/190
Vista points visited 1/95
Driver gear pieced owned 42/78
Doppler Trucks found 30/57
Mavericks found 9/15
Driver gear pieced owned 75/78
Doppler Trucks found 57/57
Mavericks found 15/15
VEHICLES
Vehicles owned 42/74
Liveries owned 53/222
Vehicles owned 59/74
Liveries owned 72/222
RECORDS
Peak speed 214 km/h
Longest jump 100 m
Max time spent in air 4 s
Peak speed 218,2 km/h
Longest jump 100,6 m
Max time spent in air 4,6 s
TRIVIAL
Number of times heliports used 39
Fuel drums found 183
Number of times heliports used 43
Fuel drums found 296

View File

@ -1,5 +1,6 @@
*.exe
build-creator*
*.zip
*.obj
*.dll
*.ini
*.sav

View File

@ -1,16 +1,42 @@
CC=cl
ifeq ($(OS),Windows_NT)
RM = $(RM)
CC = cl
TARGET = build-creator.exe
else
ifeq ($(shell uname), Linux)
RM = rm -f
CC = gcc -O2
TARGET = build-creator
endif
endif
all: zip.dll build_creator.c
build-creator.exe
ifeq ($(shell uname), Linux)
./$(TARGET)
else
$(TARGET)
endif
zip.dll:
ifeq ($(OS),Windows_NT)
$(CC) /LD ../zip/src/zip.c /zip.dll
else
ifeq ($(shell uname), Linux)
$(CC) -c ../zip/src/zip.c -o zip.dll
endif
endif
build_creator.c:
ifeq ($(OS),Windows_NT)
$(CC) build-creator.c zip.obj
else
ifeq ($(shell uname), Linux)
$(CC) build-creator.c zip.dll -o $(TARGET)
endif
endif
clean:
del *.obj
del *.exe
del zip.dll
del *.zip
$(RM) *.obj
$(RM) $(TARGET)
$(RM) zip.dll
$(RM) *.zip

BIN
lllypuk/FUEL_SAVE_V14.sav Normal file → Executable file

Binary file not shown.