Hi
I already started developing an adventure game and spent a lot of time with clicking together the action on different objects. Especially creating the story board which often looks like:
Character1.Talk(xyz)
Character2.Talk(xyz)
Character2.Talk(xyz)
Character2.WalksTo(x,y)
Character1.WalksTo(x,y)
Character1.ChangeDirection(toFront)
.....
This ends up in a big list of painful clicked actions. So I thought about replacing all of this by 1 Script which contains all of this "Action" as script.
So I skim through API but it seams that the API is working on a much more abstract level. Do I overlook something. How do you act with this situation or what is best practice for this.