mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
b695f29577
Give all connected players 100 Crypto every 30 minutes
10 lines
338 B
Plaintext
10 lines
338 B
Plaintext
/*
|
|
Give everyone on the server 100 Crypto.
|
|
by Aaron Clark - EpochMod.com
|
|
|
|
Improvements and or bugfixes and other contributions are welcome via the github:
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_server_settings/EpochEvents/PaydayEvent.sqf
|
|
*/
|
|
|
|
{[_x,100] call EPOCH_server_effectCrypto;} forEach allPlayers;
|