I mean, lets take this situaion by example:
I have an entity, that entity has a model, that model has sequences. I need to set that entity's sequence to 0, and after sequence 0 has ended, i must put sequence 3 (this is just a example). So i can't set sequence 3 right after sequence 0 ends just by doing this:
Code:
entity_set_int(ent, EV_INT_sequence, 0)
entity_set_int(ent, EV_INT_sequence, 3)
obviously don't works...
So, there's any way to track a sequence?
I've already tried to get EV_FL_frame hoping it stores the actual sequence's frame the entity is in, but it never gets updated...
I don't think setting a task with the time in seconds that the sequence has and setting the other sequence on the function called by the task is the right way... Anyone knows how to do that, if it's possible to do so?