Quote: "
;Artificial Intelligence Script
;Header
desc = Death
;Triggers
:state=0:state=1,
:state=1:setframe=4,state=2,sound=audiobank\voices\male\finalmoan.wav
:state=2:incframe=4:state=2,frameatend=4:state=3
:state=3:state=1,destroy
;End of Script
"
I think its just not executing state=2 properly because of the syntax error.
Try dropping the second part of state=2 to its own line...
... and you could get rid of that trailing comma in state=0 while you're at it....
Quote: "
;Artificial Intelligence Script
;Header
desc = Death
;Triggers
:state=0:state=1
:state=1:setframe=4,state=2,sound=audiobank\voices\male\finalmoan.wav
:state=2:incframe=4
:state=2,frameatend=4:state=3
:state=3:state=1,destroy
;End of Script
"
You probably could destroy at frames end in state 2 too like...
;Artificial Intelligence Script
;Header
desc = Death
;Triggers
:state=0:state=1
:state=1:setframe=4,state=2,sound=audiobank\voices\male\finalmoan.wav
:state=2:incframe=4
:state=2,frameatend=4:destroy
;End of Script
Hope this helps