Monkey for RVB?

I have a big collection of RVB’s iver built over time, and wanted to generate RHP from them.
A quick google says I need MonkeyScript compiler, but thats for rhino4, which i don’t have installed?

Is there another newer application for that or just long hand them as below adding script to resource file? Seems like Monkey was easier as you could just bundle up a bunch of scripts?

using Rhino;
using Rhino.Commands;

namespace TwistCommand
{
    [System.Runtime.InteropServices.Guid("31337107-7151-4c43-b210-db6444309240"),
    CommandStyle(Style.ScriptRunner)]
    public class CableCommand : Command
    {
        public CableCommand(){Instance = this;}
        public static CableCommand Instance{get; private set;}
        public override string EnglishName{get { return "TwistComplex"; }}
        protected override Result RunCommand(RhinoDoc doc, RunMode mode)
        {
            RhinoApp.RunScript("-_RunScript (" + Properties.Resources.Script + ")", false);
            return Result.Success;
        }
    }
}

https://www.rhino3d.com/download/rhino/5.0/rhinoscriptcompiler/

1 Like

Thanks giving it a go.

ok. nm I figured it out… its faster to just longhand it… would be great with a gui though…