mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Added a hook to send a message to the bot when a round starts. Signed-off-by: Mloc-Argent <colmohici@gmail.com>
10 lines
277 B
Plaintext
10 lines
277 B
Plaintext
/proc/ext_python(var/script, var/args, var/scriptsprefix = 1)
|
|
if(scriptsprefix) script = "scripts/" + script
|
|
|
|
if(world.system_type == MS_WINDOWS)
|
|
script = replacetext(script, "/", "\\")
|
|
|
|
var/command = config.python_path + " " + script + " " + args
|
|
|
|
return shell(command)
|