mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4180 316c924e-a436-60f5-8080-3fe189b3f50e
31 lines
763 B
Plaintext
31 lines
763 B
Plaintext
var/command_name = null
|
|
/proc/command_name()
|
|
if (command_name)
|
|
return command_name
|
|
|
|
var/name = "Central Command"
|
|
/*
|
|
if (prob(10))
|
|
name += pick("Super", "Ultra")
|
|
name += " "
|
|
|
|
// Prefix
|
|
if (name)
|
|
name += pick("", "Central", "System", "Home", "Primary", "Alpha", "Friend", "Science", "Renegade")
|
|
else
|
|
name += pick("Central", "System", "Home", "Primary", "Alpha", "Friend", "Science", "Renegade")
|
|
if (name)
|
|
name += " "
|
|
|
|
// Suffix
|
|
name += pick("Federation", "Command", "Alliance", "Unity", "Empire", "Confederation", "Kingdom", "Monarchy", "Complex", "Protectorate", "Commonwealth", "Imperium", "Republic")
|
|
*/
|
|
command_name = name
|
|
return name
|
|
|
|
/proc/change_command_name(var/name)
|
|
|
|
command_name = name
|
|
|
|
return name
|