forked from CeladonSS13/Shiptest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a few more feedback stats and fixes some others (shiptest-ss13#3655
) <!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> Now that I have the statbus working to show off feedback stats properly, I figured I'd touch up our feedback stat logging and add a little bit more. - Makes adjust_money() use defines mostly for consistency - Adds feedback for ordering crates from outposts - Records ship renames - Records encounter spawns (to see what people go to the most) - Records mission stats (successes, failures, etc) Lets coders get a better read on what players are doing, allows me to add even more stuff to statbus :cl: server: Logs a few more stats for use in the Statbus at https://shiptest.net/stats /:cl: <!-- Both :cl:'s are required for the changelog to work! You can put your name to the right of the first :cl: if you want to overwrite your GitHub username as author ingame. --> <!-- You can use multiple of the same prefix (they're only used for the icon ingame) and delete the unneeded ones. Despite some of the tags, changelogs should generally represent how a player might be affected by the changes rather than a summary of the PR's contents. -->
- Loading branch information
1 parent
4ab1c79
commit c7f3366
Showing
19 changed files
with
59 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
#define ACCOUNT_CIV "CIV" | ||
#define ACCOUNT_CIV_NAME "Civil Budget" | ||
#define ACCOUNT_ENG "ENG" | ||
#define ACCOUNT_ENG_NAME "Engineering Budget" | ||
#define ACCOUNT_SCI "SCI" | ||
#define ACCOUNT_SCI_NAME "Scientific Budget" | ||
#define ACCOUNT_MED "MED" | ||
#define ACCOUNT_MED_NAME "Medical Budget" | ||
#define ACCOUNT_SRV "SRV" | ||
#define ACCOUNT_SRV_NAME "Service Budget" | ||
#define ACCOUNT_CAR "CAR" | ||
#define ACCOUNT_CAR_NAME "Cargo Budget" | ||
#define ACCOUNT_SEC "SEC" | ||
#define ACCOUNT_SEC_NAME "Defense Budget" | ||
#define CREDIT_LOG_WITHDRAW "cash" | ||
#define CREDIT_LOG_TRANSFER_IN "transfer" | ||
#define CREDIT_LOG_TRANSFER_OUT "transfer_out" | ||
#define CREDIT_LOG_DEPOSIT "deposit" | ||
#define CREDIT_LOG_STARTING_MONEY "starting_money" | ||
#define CREDIT_LOG_VENDOR_PURCHASE "vendor_purchase" | ||
#define CREDIT_LOG_MISSION "mission" | ||
#define CREDIT_LOG_CARGO "cargo_purchase" | ||
#define CREDIT_LOG_BOUNTY "bounty" | ||
#define CREDIT_LOG_SYNDICATE_CONTRACT "syndicate_contract" | ||
#define CREDIT_LOG_SELLING_PAD "selling_pad" | ||
|
||
#define NO_FREEBIES "commies go home" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters