mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-25 08:51:41 +00:00
9 lines
533 B
Plaintext
9 lines
533 B
Plaintext
/hook/startup/proc/discordNotify()
|
|
if (config.use_discord_bot && config.discord_host && config.discord_port)
|
|
world.Export("http://[config.discord_host]:[config.discord_port]/?command=startup&name=[station_name()]&connect=[config.server?"[config.server]":"[world.address]:[world.port]"]")
|
|
return 1
|
|
|
|
/hook/roundend/proc/discordNotify()
|
|
if (config.use_discord_bot && config.discord_host && config.discord_port)
|
|
world.Export("http://[config.discord_host]:[config.discord_port]/?command=roundend")
|
|
return 1 |