forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Что этот PR делает Музыка теперь грузится из конфига, в репозитории присутствует лишь 1 файл, который лежал до этого в другой папке Finally some good fucking music... ## Почему это хорошо для игры Заебало слушать одну и ту же пищащюю хуету в лобби ## Тестирование Несколько рестартов и наслаждение музыкой ## Changelog :cl: soundadd: Лобби обзавелось новой музыкой, кайфуем /:cl:
- Loading branch information
Showing
8 changed files
with
46 additions
and
3 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 |
---|---|---|
|
@@ -77,3 +77,5 @@ $RECYCLE.BIN | |
|
||
# SS220 EDIT | ||
sound/tts_cache/* | ||
config/lobby_music/sounds/* | ||
config/jukebox_music/sounds/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
---LICENSE NOTICE--- | ||
|
||
The server operator(s) is responsible for the copyright status of all sounds placed within the /config/lobby_music/sounds folder unless otherwise noted. | ||
|
||
If a sound requires attribution and/or a specific license it is up to the operator(s) to make this information publicly available on either | ||
a website associated with their server or on the server itself. | ||
|
||
If operators(s) allow these configuration files to be public this file can serve that purpose by keeping it properly updated. | ||
|
||
If in the future new sounds are published to these folders (i.e. in an online code repository) they must explicitly state their | ||
license if said license is not the same as the default licensing found in README.md in the root directory of the project. | ||
|
||
Do not remove this notice. | ||
|
||
---END NOTICE--- | ||
|
||
|
||
|
||
|
||
---EXAMPLES (NOT PART OF ANY LICENSE)--- | ||
|
||
These are examples of properly attrubuted and licensed sounds. | ||
They are not an actual part of any license under any circumstance. | ||
|
||
title5.ogg was created by Mya Quinn on Feburary 28, 2557. It is licensed under a Combative Clowning 3.0 HO-NK license (http://example.com/license/url/). | ||
|
||
Unless otherwise noted all sounds were created by Cuban Pete on July 26, 2555. They are licensed under the RUMBABEAT Public License.(http://example.com/license/url/). | ||
|
||
---END EXAMPLES (NOT PART OF ANY LICENSE)--- | ||
|
||
|
||
|
||
|
||
---ADD LICENSING INFORMATION BELOW--- |
File renamed without changes.
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,4 +1,4 @@ | ||
/datum/modpack/aesthetics_sounds | ||
name = "Эстетика звуков" | ||
desc = "Обновление звуков на новые, более красочные" | ||
author = "dj-34" | ||
author = "dj-34, Aylong" |
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
#include "code/wilhelm.dm" | ||
#include "code/shuttle.dm" | ||
#include "code/mindslave.dm" | ||
#include "code/lobby_music.dm" |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/datum/controller/subsystem/ticker/Initialize() | ||
var/static/list/possible_music = flist("config/lobby_music/sounds/") | ||
login_music = "config/lobby_music/sounds/[pick(possible_music)]" | ||
|
||
for(var/client/client as anything in GLOB.clients) | ||
client.playtitlemusic() |
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