What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [HELP] wrong timer triggers

[HELP] wrong timer triggers
Author: Message:
Volv
Skinning Contest Winner
*****

Avatar

Posts: 1233
Reputation: 31
34 / Male / Flag
Joined: Oct 2004
RE: [HELP] wrong timer triggers
You're misuing functions (in specific the OnEvent_Timer one). There is only meant to be one instance of OnEvent_Timer in your code which accepts the id of the timer as its parameter:
code:
function OnEvent_Timer(strId)
{
    switch(strId)
    {
        case "UnBlocker":
        .....
        return;


        case "ResetAll":
        .....
        return;
    }
}

This post was edited on 07-07-2007 at 06:22 PM by Volv.
07-07-2007 06:21 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[HELP] wrong timer triggers - by LifelesS on 07-07-2007 at 05:46 PM
RE: [HELP] wrong timer triggers - by Volv on 07-07-2007 at 06:21 PM
RE: [HELP] wrong timer triggers - by LifelesS on 07-07-2007 at 06:23 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On