Shoutbox

quick hopefully easy to answer question - 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: quick hopefully easy to answer question (/showthread.php?tid=64229)

quick hopefully easy to answer question by t0mmy9 on 07-30-2006 at 01:13 PM

is there a way to make the script do the same thing more than once?
for example, make it say:
ChatWnd.SendMessage("HI!");
10 times in a row?
thanks for any help.


RE: quick hopefully easy to answer question by Ezra on 07-30-2006 at 01:24 PM

Sure make a loop

code:
for (i=0;i<10;i++)
{
  ChatWnd.SendMessage("HI");
}


RE: quick hopefully easy to answer question by t0mmy9 on 07-30-2006 at 01:27 PM

sorry ive figured it out already i shouldnt have posted this