I'm using these two scripts for ragdoll and then fade (2,5 and 10 seconds), but as the characters get killed, i get a drop of ~10-15 fps until the corpses disappear... is there anything wrong with them?
;Artificial Intelligence Script
;Conjured Header
desc = ragdoll then fade away (2,5 seconds)
;Triggers
:state=0:state=1,floatrate=1,coloff,ragdoll
:state=1:etimerstart,state=2
:state=2,etimergreater=2000:state=3
:state=3,alphafadeequal=100:decalphafade=0
:state=3,alphafadeequal=0:state=4,destroy
;End of Script
;Artificial Intelligence Script
;Conjured Header
desc = ragdoll then fade away (10 seconds)
;Triggers
:state=0:state=1,floatrate=1,coloff,ragdoll
:state=1:etimerstart,state=2
:state=2,etimergreater=10000:state=3
:state=3,alphafadeequal=100:decalphafade=0
:state=3,alphafadeequal=0:state=4,destroy
;End of Script