i see, but is not what the scripting documentation says...
if you read, it says that the function on the example works for everybody
and it shows a way to workarround it!
quote:
so let's change the OnEvent_Signin function to this:
function OnEvent_Signin(Email)
{
if(Email == "your@email.com") //Change for your sign-in email
{
var Message = "Hello Master " + Messenger.MyName + "!";
Message = MsgPlus.RemoveFormatCodes(Message);
MsgPlus.DisplayToast("", Message);
}
}