Shoutbox

Plus! Script? - 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: WLM Plus! General (/forumdisplay.php?fid=23)
+----- Thread: Plus! Script? (/showthread.php?tid=41930)

Plus! Script? by Concord Dawn on 04-04-2005 at 05:52 PM

What about a scripting language for Plus, similar to mIRC's? It would be easier for less knowledgable people to make plugins if this was implemeneted, because they could simply make the plugin in the scripting language, and it would allow people to make their own little features, such as whenever certain users sign on, spam them with a :banana:! :P


RE: Plus! Script? by Eljay on 04-06-2005 at 08:53 AM

just want to bump this because i like the idea a lot :)


RE: Plus! Script? by -dt- on 04-06-2005 at 09:56 AM

hmm i like the idea :P could this also be combined with the scripted quicktexts idea?


RE: Plus! Script? by user36611 on 04-06-2005 at 10:01 AM

could be nice to see in the Plus!-man! :-)


RE: Plus! Script? by saralk on 04-06-2005 at 10:13 AM

its been suggested before, in fact originally the plugin system was going to be vbscript box in the plus menu, so there would be no need for dlls, or even for the creator to have visual studio. But I can't remember why, but the idea was changed.


RE: Plus! Script? by CookieRevised on 04-06-2005 at 10:24 AM

quote:
Originally posted by Chaotic_Shield
What about a scripting language for Plus, similar to mIRC's? It would be easier for less knowledgable people to make plugins if this was implemeneted, because they could simply make the plugin in the scripting language, and it would allow people to make their own little features, such as whenever certain users sign on, spam them with a :banana:! :P
A full scripting system is equaly hard to understand then programming a plugin.

And if you mean a reduced/new scripting system then that is very hard to implement and will take massive amounts of time (and bugs)...

Search the forums, there are several threads all about this.

Also, if you realy want a scripting system, then use the VBScript Framework Plugin.


(in general: please please pleaaaaaaaase search the forums first ;) as posting freaks you should all know how to do that...)
RE: Plus! Script? by zingbats on 04-07-2005 at 11:44 AM

Scripting can be made easier, because it doesn't require the user to compile etc etc etc, or have "fancy" software installed.

Any one can write a script that essentially says:

code:
OnText("bananas"){
    Writeln("Hmmmmmmm, bananas");
}

etc etc

or
code:
OnText("(!VER)"){
    WriteLn("(!VER)");
}

It would be extremely simple to use.


EDIT: I know this is like an autoresponder, but hey, it's the principle!

Maybe something like:

code:
OnSound(){
AddToSounds;
}

Or

code:
OnVar(Mood).Change{
DisplayPic:=DisplacPic.FILENAME;
} // When the mood is changed via a plus command, then the display picture is changed or something...


RE: Plus! Script? by saralk on 04-07-2005 at 12:47 PM

that seems quite complicated for what it is, Patchou would also have to add a debugging script and countless other things.