I'm going through AGS tutorial but I got stuck at the end of getting started part 8. I have no idea what is wrong but when I try to "talk to" character absolutely nothing happens. I have double-triple checked all dialogs, character and dialog names and room script but can't find anything wrong
Here is entire room script:
// room script file
function hHotspot2_Look()
{
Display("Se on tavallinen ikkunaton ja oveton tiilitalo");
}
function oKey_Interact()
{
player.Walk(159, 206, eBlock);
oKey.Visible = false;
player.AddInventory(iKey);
Display("Ilmainen avain!");
}
function cMercantti_Talk()
{
dMer.Start();
}
These last four lines are supposed to start dialog named dMer after talking to character Mercantti (Real name: MERCANTTI, Script name cMercantti) , but using Talk to, on Mercantti does nothing. There is no error messages when starting game. I'm rather sure I have folloved the tutorial conscientiously.
Here are also the first lines of that dMer dialog:
// Dialog script file
@S // Dialog startup entry point
EGO: "Terve!"
MERCANTTI: "..."
return
@1
Here is entire room script:
// room script file
function hHotspot2_Look()
{
Display("Se on tavallinen ikkunaton ja oveton tiilitalo");
}
function oKey_Interact()
{
player.Walk(159, 206, eBlock);
oKey.Visible = false;
player.AddInventory(iKey);
Display("Ilmainen avain!");
}
function cMercantti_Talk()
{
dMer.Start();
}
These last four lines are supposed to start dialog named dMer after talking to character Mercantti (Real name: MERCANTTI, Script name cMercantti) , but using Talk to, on Mercantti does nothing. There is no error messages when starting game. I'm rather sure I have folloved the tutorial conscientiously.
Here are also the first lines of that dMer dialog:
// Dialog script file
@S // Dialog startup entry point
EGO: "Terve!"
MERCANTTI: "..."
return
@1