Hi there tigerheart! Interesting thread. It's been long time since I've touched something similar, but here it goes. There are some points to consider and obvious omissions in you script seen in last image you posted: 1. I don't see the script even working; there is no copy made for the other side. 2. There are no bone…
Layer.addNode $ In this case the word Layer is more than just a word in the lines above I told it that Layer = "get Layer From this Name: MyLayerName" So anytime it sees the word layer it will go looking for a layer with that specific name. Then maxscript has a function called ".addnode" which adds whatever comes next to…
Hi, A friend of mine told me that it is easier to learn how to code with a project. Now I have a project, and i don't know how to code. So here begin my journey on maxscript. My project: For some time, i used to make a relatively easy rig for my character,(i don't like CAT for some reason) And i managed to make it pretty…
Thanks for the quick and efficient answer :D I did read the doc, and search over google , but as i said, i really started programming like 5 hour ago... So it is still hard to figure out what all the stuff mean or how to use it. Like in your piece of code, i have am not sur to understand: "Selection as array"…
You will probably want to read up on the layer manager in the maxscript help files. http://docs.autodesk.com/3DSMAX/16/ENU/MAXScript-Help/index.html?url=files/GUID-78B79975-7BA5-4A03-8FEF-27E78D14B575.htm,topicNumber=d30e259872 You will need to define the layer probably with "getLayerFromName" and then use ".addnode" to…