Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Skimming over my old code this looks correct to me. Hope this helps! I can answer other questions if you're still stuck.
// This is a structure for the save buffer
// hopefully this prevents any mistakes with the order the buffer is written in
// <-- those slashes mean it's a comment and to ignore it
// TIME
u8 | seconds |
u8 | minutes |
u8 | hours |
u8 | day |
u8 | month |
u32 | year |
// Game Data
string | user cash |
string | user fans |
u16 | user logo |
string | user name |
string | user band name |
u16 | hiring ad campaign |
u16 | hiring ad campaign_prev |
string | hiring ad date |
string | hiring ad list | // this one can be -1 or a ds_list
string | hiring ad expire |
// Promo Unlocks
bool | flyer |
bool | posters |
bool | localnewspaper |
bool | socialmedia |
bool | podcast |
bool | internet |
bool | nationalnewspaper |
bool | nationalradio |
bool | cheaptv |
bool | expensivetv |
// Band Members
string | band_guitarist_id | // read as real when loading
string | band_drummer_id | // read as real when loading
string | band_vocalist_id | // read as real when loading
string | band_bassist_id | // read as real when loading
// Event Data
string | Event Map |
string | Event Data |
string | Event List |
string | Contract List |
// City Data
string | City Map |
// Inventory
string | Prop_Inv_ID |
string | Prop_Inv_Stack |
// Shop
string | Purchase Map |
// Player Data
f32 | user skill star |
f32 | user skill music |
f32 | user skill writing |
f32 | user skill instrument |
f32 | user tension guitarist |
f32 | user tension drummer |
f32 | user tension vocalist |
f32 | user tension bassist |
// User Stats
u32 | stat_songs_created |
u32 | stat_songs_generated |
u32 | stat_songs_sold |
u32 | stat_albums_sold |
string | album_sales_list |
// Finances
string | Finance Map |
// General Data
f32 | band solidity |
string | user vehicle |
string | user city |
string | previous messages |
s32 | message scr |
s32 | message arg0 |
s32 | message arg1 |
s32 | message arg2 |
u32 | event chance |
string | random event date |
string | pref_song_list |
// Character Actions
s8 | char action | // Guitarist
s8 | char action | // Drummer
s8 | char action | // Vocalist
s8 | char action | // Bassist
s32 | action time | // Same order as as above
s32 | action time |
s32 | action time |
s32 | action time |
s32 | action time max | // Same order as as above
s32 | action time max |
s32 | action time max |
s32 | action time max |
string | action map |