Files
vgstation13/code/modules/ext_scripts/python.dm
2014-02-27 13:00:46 -08:00

10 lines
330 B
Plaintext

/proc/ext_python(var/script, var/args, var/scriptsprefix = 1, var/log_command=0)
if(scriptsprefix) script = "scripts/" + script
if(world.system_type == MS_WINDOWS)
script = replacetext(script, "/", "\\")
var/command = config.python_path + " " + script + " " + args
if(log_command)
testing(command)
return shell(command)