Hello again,
I'm trying to export an md3 and I get this :
Traceback (most recent call last):
File "C:\Users\D-Meat\AppData\Roaming\Blender Foundation\Blender\2.68\scripts\addons\io_export_md3.py", line 798, in execute
save_md3(settings)
File "C:\Users\D-Meat\AppData\Roaming\Blender Foundation\Blender\2.68\scripts\addons\io_export_md3.py", line 574, in save_md3
my_scale = round(25/scene_minimum,2)
ZeroDivisionError: division by zero
location: <unknown location>:-1
The error seems simple : there is a division by 0, which might be the value of the "scene_minumum" variable here ...
I guess this variable might be the starting frame specified in the timeline, but it's variable name seems to be "frame_start".
Also, by default, the starting frame is 1, so it shouldn't divide by 0 ... I moved the starting frame to 2, and I'm getting the same error.
The only thing I have not followed from the tutorial is the separation of the armature in 2 different parts (for upper and lower), because I thought it might be complicated to animate some things ...