Parse errors are all the rage these days.
The function I am trying to do is not working correctly because of a Parse error. I'm not too sure how to solve this; is it because my function is not correct?
The function is supposed to work like this: If a character is exchanged with another character, all the Mouse cursor functions will only be able to work for the exchanged character.
function aChar1_Talk()
{
aChar1.Say("I will say something");
if (player==aChar2)
aChar2.Say("I'm saying something.");
aChar1.Say("I will say something"); = false;
}
Thank you in advance. :)
The function I am trying to do is not working correctly because of a Parse error. I'm not too sure how to solve this; is it because my function is not correct?
The function is supposed to work like this: If a character is exchanged with another character, all the Mouse cursor functions will only be able to work for the exchanged character.
function aChar1_Talk()
{
aChar1.Say("I will say something");
if (player==aChar2)
aChar2.Say("I'm saying something.");
aChar1.Say("I will say something"); = false;
}
Thank you in advance. :)