Rosso Script Mirc

вторник 23 октябряadmin
Rosso Script Mirc 8,1/10 489 votes

Mirc Scripting. You've got the foundation to use mIRC and the Scripts Editor. Now we can start with learning how to script. Read this chapter section by section.

]M[orfeo 1 Script Autore: [J]oker - Anno: 2010 Script in tono dark con un menu rosso molto appariscente. Si colloca in un livello intermedio nel panorama degli script presenti in italia. Molte sono le funzioni offerte sia create direttamente dall'autore sia inserite come addon esterne, quest'ultimo fattore purtroppo ne penalizza il livello generale.

E' presente il sonoro che ci accompagna durante i vari eventi. Nel complesso risulta abbastanza personalizzabile e consente anche di poterci divertire con gli altri utenti attraverso l'uso di popups colorati che offrono un frasi ad hoc per tutti i gusti. .

Contents • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • You've got the foundation to use mIRC and the Scripts Editor. Now we can start with learning how to script. Read this chapter section by section and follow along with the examples. You will need to understand the skills in this chapter to move on and make any sort of script whatsoever. This is a very long chapter, especially for beginners, so take your time reading this.

Types of Scripts [ ] There are three types of scripts in mIRC.; aliases, popups, and remotes. Each one is comprised of different parts and has its own tab in the scripts editor. Aliases [ ] Aliases are user-defined commands that stand for a set of one or more commands. Aliases are usually used to simplify everyday IRC tasks, such as identifying your nickname. The syntax of an alias is. Hello say Hi, I'm $me and I am an mIRC user.

The first part of the alias is hello. This is the alias' name.

You would type the command /hello in the command line. The say Hi, I'm $me and I am an mIRC user. Lakshmi kannada movie mp3 songs free download. Part is the command that is executed when you type /hello. Typing /hello and pressing Enter would result in the line showing up in the current window saying 'Hi, I'm mynickname and I am an mIRC user.' One important thing to take note of is that I didn't use a / before the alias name or the command.

This is unnecessary in the scripts editor. MIRC prefixes every command in a script with a //, which runs every command and evaluates any variables or identifiers in the command automatically. So, mIRC would treat both of these the exact same way. Kick $$1: kick $$chan $$1 You got kicked by $me $+!

Ban $$1: mode $$chan +b $address($$1,2) Kickban $$1: ban -k $$chan $$1 2 You got kickbanned by $me $+! The identifier $$1 in this case means the same thing as $1. It is the nickname selected on the nicklist (if there is one and you are in a channel). When you click on an option (kick, ban, or kickban), it will do that option to whatever nickname is in $$1.

For example, the kick option kicks $$1 from $$chan with the message, 'You got kicked by mynick!' Now, allow me to use this example to explain the double $$ prefix. When used with an identifier, this will stop a command from executing if the identifier returns $null.

For instance, if you did not select a nick on the nicklist, $$1 returns nothing and halts the command. As an added aesthetic bonus, if a double-prefixed identifier returns nothing in a menu item, the menu item will not show up. In this example, the entire menu would be hidden from view if you did not select a nick on the nicklist. Nicklist menus also support everything regular menus support.