mIRC Homepage
Posted By: limp Why use signals? - 03/05/03 06:29 AM
I don't get it, what's the point of signals? Why use them?
Posted By: _D3m0n_ Re: Why use signals? - 03/05/03 09:31 PM
well i can think of a bunch of different uses for signals . ive seen a pretty indepth version changer that uses signals its done without any dll at all and works .... also there are several reasons that u may need to use signals to trigger a specific script event your your trying to run ...... its pretty uch like asking why have an onjoin event... each one has its purpose
Posted By: Khaled Re: Why use signals? - 03/05/03 11:41 PM
One advantage over aliases is that you can have multiple loaded scripts all listening for a specific signal, and when that signal is set, it triggers in all of these scripts. So it could be used as a way of co-ordinating multiple independent scripts.

In the end though, signals are just another tool, and it's hard to say where they might or might not be useful. It all depends on whether you come across a situation where signals might serve as a more elegant solution to a scripting problem, which could just as easily be solved in other ways!
Posted By: Raccoon Re: Why use signals? - 12/05/03 03:33 AM
One nice thing about Signals, is it's similar properties to Timers, only slightly better. You can call a signal with /signal -n and have it execute things in the middle of your proccess (much like calling an alias as you usually would), except that the signal you call can halt or cause an error, and the original script wont die from it.

I've seen some nifty error trapping scripts come of this.
Posted By: Online Re: Why use signals? - 12/05/03 04:09 AM
Sorry, I didn't get your point.

A script, generally speaking, shouldn't cause an error. It must have proper error checking, and never show an "invalid parameters" message.

Also, if you call an alias, it can use /return for halting self and continuing in the main process (unlike /halt that stops the main process as well).
Posted By: Raccoon Re: Why use signals? - 12/05/03 09:15 PM
Well, in some advanced scripting where you're relying on user input and perform syntex checking on their input, error trapping could be of great use to inform the user of an error they made and requesting the information again. Under normal circumstances, the script would die and no script-specific user prompt would be provided.

Example. "Script caused a Divide-By-Zero, please enter different parameters."
© mIRC Discussion Forums