proc/Start_File(var/file)
set hidden = 1
for(var/obj/File/O in view(1))
if(O.name == file)
if(O.id == "Custom")
O.coding
The above statement does not work becouse O.coding is processed as a tag, not as a code.
Would it be possible, in any kind of way, to replace O.coding with a code like...
processcode(O.coding)
...or anything in that kind?
If it would, you would be able to make customized programs that will function properly.