Hi, I want to create a set of specific animations for AI, like only talk only sit, be dead
its can to be great for background characters in unarmed level and for cut scene. its can to be very easy and useful for the gurus.
I used a script I found in the forum,
its works just two issues every script can effect only on one AI in the map and when the player take long
distance the ai back to defult pose.
talk_fan_anim=0
function talk_loop_anim_init(e)
SetAnimation(0)
end
function talk_loop_anim_main(e)
if talk_fan_anim == 0 then
SetAnimationFrames(4260,4464)
LoopAnimation(e)
talk_fan_anim = 1
end
end
What are you suggest?