Complete Smokester's Crater
This commit is contained in:
parent
371c3d00a7
commit
5e7957bac2
33
README.md
33
README.md
@ -1,9 +1,26 @@
|
|||||||
![FUEL](https://raw.githubusercontent.com/iiiypuk/fuel-stuff/master/.fuel.png)
|
FUEL 440725
|
||||||
**Restore saves**
|
DISTANCE 1518,4 km
|
||||||
`1 -` Download [saves](https://github.com/iiiypuk/fuel-stuff/releases/tag/20162710).
|
|
||||||
`2 -` See `readme.txt` in archive.
|
|
||||||
|
|
||||||
**TODO**
|
PROGRESSION
|
||||||
`-` Complete game (Career and Challenges)
|
Zones unclocked 19/19
|
||||||
`-` Get max FUEL
|
Career Races finished 60/72
|
||||||
`-` Ride 99999999 km (max spedometer count)
|
Career Races with gold awarded 60/72
|
||||||
|
Career Stars awarded 180/216
|
||||||
|
Challenges cleared 50/190
|
||||||
|
Vista points visited 1/95
|
||||||
|
Driver gear pieced owned 63/78
|
||||||
|
Doppler Trucks found 48/57
|
||||||
|
Mavericks found 12/15
|
||||||
|
|
||||||
|
VEHICLES
|
||||||
|
Vehicles owned 51/74
|
||||||
|
Liveries owned 64/222
|
||||||
|
|
||||||
|
RECORDS
|
||||||
|
Peak speed 214,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 256
|
||||||
|
32
Stats.txt
32
Stats.txt
@ -1,26 +1,26 @@
|
|||||||
FUEL 146714
|
FUEL 440725
|
||||||
DISTANCE 1112 km
|
DISTANCE 1518,4 km
|
||||||
|
|
||||||
PROGRESSION
|
PROGRESSION
|
||||||
Zones unclocked 14/19
|
Zones unclocked 19/19
|
||||||
Career Races finished 39/72
|
Career Races finished 60/72
|
||||||
Career Races with gold awarded 39/72
|
Career Races with gold awarded 60/72
|
||||||
Career Stars awarded 117/216
|
Career Stars awarded 180/216
|
||||||
Challenges cleared 46/190
|
Challenges cleared 50/190
|
||||||
Vista points visited 1/95
|
Vista points visited 1/95
|
||||||
Driver gear pieced owned 42/78
|
Driver gear pieced owned 63/78
|
||||||
Doppler Trucks found 30/57
|
Doppler Trucks found 48/57
|
||||||
Mavericks found 9/15
|
Mavericks found 12/15
|
||||||
|
|
||||||
VEHICLES
|
VEHICLES
|
||||||
Vehicles owned 42/74
|
Vehicles owned 51/74
|
||||||
Liveries owned 53/222
|
Liveries owned 64/222
|
||||||
|
|
||||||
RECORDS
|
RECORDS
|
||||||
Peak speed 214 km/h
|
Peak speed 214,2 km/h
|
||||||
Longest jump 100 m
|
Longest jump 100,6 m
|
||||||
Max time spent in air 4 s
|
Max time spent in air 4,6 s
|
||||||
|
|
||||||
TRIVIAL
|
TRIVIAL
|
||||||
Number of times heliports used 39
|
Number of times heliports used 39
|
||||||
Fuel drums found 183
|
Fuel drums found 256
|
||||||
|
3
build-creator/.gitignore
vendored
3
build-creator/.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
*.exe
|
build-creator*
|
||||||
*.zip
|
*.zip
|
||||||
*.obj
|
*.obj
|
||||||
*.dll
|
*.dll
|
||||||
*.ini
|
*.ini
|
||||||
|
*.sav
|
||||||
|
@ -1,16 +1,42 @@
|
|||||||
|
ifeq ($(OS),Windows_NT)
|
||||||
|
RM = $(RM)
|
||||||
CC = cl
|
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
|
all: zip.dll build_creator.c
|
||||||
build-creator.exe
|
ifeq ($(shell uname), Linux)
|
||||||
|
./$(TARGET)
|
||||||
|
else
|
||||||
|
$(TARGET)
|
||||||
|
endif
|
||||||
|
|
||||||
zip.dll:
|
zip.dll:
|
||||||
|
ifeq ($(OS),Windows_NT)
|
||||||
$(CC) /LD ../zip/src/zip.c /zip.dll
|
$(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:
|
build_creator.c:
|
||||||
|
ifeq ($(OS),Windows_NT)
|
||||||
$(CC) build-creator.c zip.obj
|
$(CC) build-creator.c zip.obj
|
||||||
|
else
|
||||||
|
ifeq ($(shell uname), Linux)
|
||||||
|
$(CC) build-creator.c zip.dll -o $(TARGET)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
del *.obj
|
$(RM) *.obj
|
||||||
del *.exe
|
$(RM) $(TARGET)
|
||||||
del zip.dll
|
$(RM) zip.dll
|
||||||
del *.zip
|
$(RM) *.zip
|
||||||
|
BIN
lllypuk/FUEL_SAVE_V14.sav
Normal file → Executable file
BIN
lllypuk/FUEL_SAVE_V14.sav
Normal file → Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user