Hello everybody
someone can help me?
at the start of my scene, my actor walk across the scene and start to talk with a character (animated entity).
but how can i do to make reply of my entity ?
so in my scene edit script i put:
#include "scripts\base.inc"
// here comes the stuff which initializes the scene
actor.SkipTo(200, 300);
actor.GoTo(540, 540);
actor.Direction = DI_RIGHT;
actor.Active = true;
actor.Talk("Hello ! ");
this.Talk("Hello, miss.");
?
////////////////////////////////////////////////////////////////////////////////
so my actor walk and talk (said hello) to the entity, but i don't know how to do to have the reply (hello miss) of the entity.
someone can help me?
thanks