Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Alen101 on Fri 17/07/2015 04:24:37

Title: player can use 3 diferent characters
Post by: Alen101 on Fri 17/07/2015 04:24:37
Hello, im new here.
Im trying to make my first game and im no programer so excuse me for any mistake.
Im trying to make a maniac mansion 1 the same game mechanics.
I make the 3 players party, and now im trying to make they react with the objects and hotspots, its easy with one player but i cant achieve to make the 3 diferent characters say diferent things while looking at the same object.
thank you in advance for any help.


Title: Re: player can use 3 diferent characters
Post by: Mandle on Fri 17/07/2015 04:31:19
I believe you have to put conditions like:

if(PlayerCharacter==cNorman){
Display("BlahBlahBlah");
else if(

etc etc...The syntax might be off in my example. I don't have time right now to look it up...
Title: Re: player can use 3 diferent characters
Post by: Alen101 on Fri 17/07/2015 04:55:14
thank you very much it worked!!