Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds a flat beecoin source for admins. #12001

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions code/__DEFINES/metacoin.dm
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
/// Rewarded when you complete a crew objective
#define METACOIN_CO_REWARD 40
#define METACOIN_CO_REWARD 40
/// Rewarded when you escape on the shuttle
#define METACOIN_ESCAPE_REWARD 30
#define METACOIN_ESCAPE_REWARD 30
/// Rewarded when you survive the round
#define METACOIN_SURVIVE_REWARD 20
#define METACOIN_SURVIVE_REWARD 20
/// Rewarded when you don't survive the round, but stick around till the end
#define METACOIN_NOTSURVIVE_REWARD 10
#define METACOIN_NOTSURVIVE_REWARD 10
/// Rewarded when you are alive and active for 10 minutes
#define METACOIN_TENMINUTELIVING_REWARD 4
/// Rewarded when you reach roundend as admin, to make up for not playing.
#define METACOIN_ROUNDEND_ADMIN 250
Tsar-Salat marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 3 additions & 0 deletions code/modules/metacoin/metacoin.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
else
inc_metabalance(METACOIN_NOTSURVIVE_REWARD, reason="You tried.")

if(check_rights_for(src, R_ADMIN))
inc_metabalance(METACOIN_ROUNDEND_ADMIN, reason="Thanks for adminning! This should offset the cost for not playing.")

/client/proc/process_greentext()
src.give_award(/datum/award/achievement/misc/greentext, src.mob)

Expand Down
Loading