Yippiiiie it worked!
This is what I have now:
in the Dialog script:
Code: ags
Global Script:
Code: ags
Problem solved! Thank you very much!
This is what I have now:
in the Dialog script:
run-script 1 // Parameter 1 in dialog_request()
Global Script:
function dialog_request(int param)
{
if (param==1) {
cPerson.FaceLocation(cPerson.x, cPerson.y+10); // Look down
}
}
...
function cPerson_Talk()
{
cPerson.FaceCharacter(cIch, eNoBlock); // He ist looking at me
cIch.FaceCharacter(cPerson); // I am looking at him
dPerson.Start(); // Dialog starts
}
Problem solved! Thank you very much!

