Seite 1 von 1

mirc verändern

Verfasst: 07.12.2004, 00:03
von pandorra
nabend,
hab in mirc und nnscript mittlerweile so gut wie alles verändert oder gelöscht, aber eins bekomm ich nicht hin :(
wie kann ich dieses zeug beim starten abschalten?
(23:47:57) ••••••••••••••••••••••••••••••••••••••••• ••••• ••• •• •• •• • •
(23:47:57) ••• fInished loading NoNameScript in (0.66) seconds.
(23:47:57) ••• rUnning version (3.81) with mIRC (6.16) for the (128th) time.
(23:47:57) ••• uSing (Dirt 1.02) theme with (Color whole lines) scheme by (greeny) for MTS 1.1
(23:47:57) ••• bEware of Santa Claus!
(23:47:57) ••••••••••••••••••••••••••••••••••••••••• ••••• ••• •• •• •• • •
achja, noch was...
mit welchem befehl kann ich beim starten sowas wie da steht aufrufen, praktisch sowas wie "you loaded bla"?

Verfasst: 07.12.2004, 05:56
von wdy
Sieht immernoch stark nach nns aus :/

Verfasst: 07.12.2004, 11:16
von ShiN0
Such mal im Remote nach on *:START: in allen Dateien.

Verfasst: 07.12.2004, 17:47
von pandorra
Original erstellt von ShiN0
Such mal im Remote nach on *:START: in allen Dateien.
ne, das ists auch nicht...
ich kann mittlerweile fast ausschliesen, dass es in einem script ist...
evtl. eher in irgedner file versteckt, die mirc lädt...
aber welche :/

Verfasst: 08.12.2004, 12:32
von ShiN0
Such doch mal nach dem Text, der dargestellt wird, in allen files in dem Ordner. Textpad kann ich für die Aufgabe empfehlen :)

Verfasst: 08.12.2004, 19:43
von Haekelschwester
Original erstellt von pandorra
achja, noch was...
mit welchem befehl kann ich beim starten sowas wie da steht aufrufen, praktisch sowas wie "you loaded bla"?
on LOAD/START

The on LOAD event triggers the first time a script file is ever loaded.


Format: on <level>:LOAD:<commands>
Example: on 1:LOAD:/echo mIRC Script Loaded!

The on START event uses the same format, and triggers the first time a script is ever loaded and also every time after that when when mIRC is run.

Examples

on 1:LOAD:/echo Performing one-time initialization for this script!

Triggers the first time a script is ever loaded. The purpose of this event is to perform a one-time initialization of settings.

on 1:START:/echo Performing regular initialization for this script!

Triggers the first time a script is ever loaded, and also every time after that when scripts are loaded when mIRC is first run. The purpose of this event is to perform general initialization settings.

Note: When a file is loaded in the remote dialog, it's initialization sections are not run until after the dialog is closed. Only one of each of these events is allowed in a script.
/echo [color] [-cdeghiNtsaqlbfnmr] [color name] [#channel|[=]nick] <text>
Prints text in the specified window using the specified color (0 to 15).

/echo 3 #mIRC Testing

would print "Testing" in the color green in channel window #mIRC, assuming it's already open.

If a channel/nickname isn't specified, the -s switch echos to the status window, the -d switch echos to the single message window, and the -a switch echos to the currently active window.

The -e switch encloses the line in line separators.
The -iN switch indents the wrapped line by N characters.
The -h switch forces lines to hard-wrap so resizing the window doesn't change the line.
The -t switch prefixes the line with a timestamp if global time stamping is on or timestamping is on for that window.
The -q switch makes it not display the text if called from an alias using the . prefix.
The -l switch makes it apply the highlight settings to the line that's displayed.

The -bf switches make it apply the beep/flash settings in the window it is echoing to.
The -n switch prevents the echo from hiliting the window switchbar icon.
The -m switch indicates that the line should be treated as a user message, not an event.
The -g switch prevents the line from being logged to the log file.
The -r switch applies the strip settings in the messages dialog.
The -c switch uses the specified color name from the colors dialog.