Shoutbox

If Else .. - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: If Else .. (/showthread.php?tid=64041)

If Else .. by Feonx on 07-26-2006 at 03:04 PM

Hi,

Today I where trying to use If / else in my script but can't get it running. It says:

quote:
Error message:
> Error found at line 16: Excpected ';'.
  (Code: -2146827284)

And my code is:
code:
function OnEvent_Signin(Email)
{
    If(Email == 'feonx@tvdkwebdesign.nl') {  //<-- line 16
        MsgPlus.DisplayToast('', 'Feons Logged In!');
    }
}


I have seen a code that looks like this one in other script to :(
What did I do wrong! Can someone help me?

Tnx.

Gr Feonx

RE: If Else .. by Mnjul on 07-26-2006 at 03:08 PM

You need to use if (all letters are lower-case) :)


RE: If Else .. by Feonx on 07-26-2006 at 04:28 PM

Thank u,

It works..