kuroyume0161 opened this issue on Mar 12, 2004 ยท 14 posts
lesbentley posted Sun, 14 March 2004 at 8:38 AM
The code in post #5 was written for Posette, I very rarely use the millenium figures such as Victoria, but I just checked and found that Victoria2 uses a diffrent naming convention for the inkyChains, V2 uses "inkyChain LeftHand" and "inkyChain RightHand" where as Posette uses "inkyChain rightArm" and "inkyChain leftArm". This would mean that the code in step #13 of post #5 would need to be modified on those two lines to work with Victoria2 (the other mill figures are probably the same).
The code for step #13, when using Victoria 2, would look like this (modifications in red):
actor MYPROP_1<br></br> {<br></br><br></br> }<br></br><br></br>actor rHand:1<br></br> {<br></br> parent MYPROP_1<br></br> inkyParent MYPROP_1<br></br> }<br></br>actor lHand:1<br></br> {<br></br> parent MYPROP_1<br></br> inkyParent MYPROP_1<br></br> }<br></br>figure <br></br> {<br></br> addChild rHand:1 <br></br> MYPROP_1<br></br> addChild lHand:1 <br></br> MYPROP_1<br></br><br></br> inkyChain <br></br> {<br></br> on<br></br> }<br></br> inkyChain <br></br> {<br></br> on<br></br> }<br></br> }