Seem to have problem with "Run Maxscripts Scripts" functionality

Hi All, can you please check if this working for you or suggest where I have problem with this:

I have a script that depending on number of active frame will set geometry of objects some specific way so I can send animation to farm and script will update geometry with every job queued base don number of frame.

I wrote a script and added it to “Run Post-Load script” line, but it generates error. Deadline Log sayd: “Unable to convert: undefined to type: String”

So for sake of test I sent it with script that has only one line: a=1, but I still have same error.
Is it a big or I am doing something wrong?

Hi,
I believe you need to make sure you return either false (script has failed) or true (script run successfully) at the end of script. So, this should work:

( a=1 true --return true if the task has finished successfully, return false to fail the task. )

Thank you, that helped.