Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
irc:nnscript:autoscript [2009/01/06 10:51] – angelegt psycore | irc:nnscript:autoscript [2009/12/09 20:54] (aktuell) – new root dir www.hellhost.de/wiki psycore | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
+ | ====== autoscript ====== | ||
+ | ===== auto.mrc ===== | ||
+ | |||
+ | <code mirc> | ||
+ | on *:connect: { | ||
+ | if ($network == ShilayaDE) { | ||
+ | join # | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== nnsg5.mrc ===== | ||
+ | |||
+ | <code mirc> | ||
+ | dialog nnsg5_mod { | ||
+ | title " | ||
+ | size -1 -1 164 54 | ||
+ | option dbu | ||
+ | box " | ||
+ | check "nicht wieder anzeigen", | ||
+ | text "Bei Problemen besuche bitte diese Seite", | ||
+ | link " | ||
+ | } | ||
+ | |||
+ | on 1:start: { | ||
+ | if (!%nnsg5.startup) { | ||
+ | dialog -m nnsg5_mod nnsg5_mod | ||
+ | } | ||
+ | } | ||
+ | |||
+ | on *: | ||
+ | if (!%nnsg5.startup) { set %nnsg5.startup 1 | dialog -x nnsg5_mod nnsg5_mod } | ||
+ | elseif (%nnsg5.startup) { unset %nnsg5.startup | dialog -x nnsg5_mod nnsg5_mod } | ||
+ | } | ||
+ | |||
+ | on *: | ||
+ | run " | ||
+ | } | ||
+ | </ |