PDA

View Full Version : download problems & avatar action


vgracie
09-13-2006, 08:17 PM
I'm trying to download Vizard R3 Beta 2 lite to my laptop and I keep getting a 'NSIS Error' message that reads:

The installer you are trying to is corruped or incomplete. This could be the result of a damaged disk, a failed download or a virus. You may want to contact the author of this installer to obtain a new copy. It may be possible to skip this check using the /NCRC command line switch.

What is this supposed to mean?


And I am trying to make an avatar sit and stay seated.
It seems that I have to cut the 'sit' animation before it fully completes its cycle.

Is there any way that I can stop the 'sit' animation when the avatar sits on the floor?

Thank you for the assistance.

farshizzo
09-14-2006, 11:29 AM
It means your installer might be corrupt. What is the file size of the installer?

You can have an animation freeze in the last pose after it executes. Example:avatar.execute(SitAnimation,freeze=True)Wh en the animation finishes, it will freeze the last pose. When you want the avatar to stand up you have to stop the sit animation before executing the stand animation:avatar.stopAction(SitAnimation)
avatar.execute(StandAnimation)