mIRC Home    About    Download    Register    News    Help

Print Thread
#5071 05/01/03 04:04 PM
Joined: Jan 2003
Posts: 1
B
Mostly harmless
OP Offline
Mostly harmless
B
Joined: Jan 2003
Posts: 1
Not sure why i used Mirc for a while and it all worked fine but now nothing works, I used and added slap commands in the popups script , i have not messed with it except trying to use them in the chat window,,but its not working. Is it something to do with the new version? Is something disabled?

#5072 05/01/03 04:30 PM
Joined: Dec 2002
Posts: 843
P
Hoopy frood
Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 843
Not sure, but alternatively you could make it into a simple alias command, i.e. /alias /slap /me slaps $$1 around with a large trout (or whatever!)
You would then just type in /slap <nick> smile


Never compare yourself to others - they're more screwed up than you think.
#5073 05/01/03 05:50 PM
Joined: Dec 2002
Posts: 174
P
Vogon poet
Offline
Vogon poet
P
Joined: Dec 2002
Posts: 174
why not post the script here so we can take alook.

#5074 05/01/03 06:30 PM
Joined: Dec 2002
Posts: 417
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Dec 2002
Posts: 417
Here is a code to play arround with.

Code:
[color:red] 
on *:ACTION:*:*: {
  if ((*slap* isin $1- ) || (trout isin $1- ) &amp;&amp; ( $me isin $1- )) {
    msg # hey $nick Your vocabulary is to categorical for a person $&amp;
    of my intellectual ability to comprehend! So if you mean to insinuate $&amp;
    that I will tolerate your diabolical provications you are thoroughly mistaken!
  }
} 
on *:TEXT:*:*: {
  if ((*slap* isin $1- ) || (trout isin $1- ) &amp;&amp; ( $me isin $1- )) {
    msg # hey $nick Your vocabulary is to categorical for a person $&amp;
    of my intellectual ability to comprehend! So if you mean to insinuate $&amp;
    that I will tolerate your diabolical provications you are thoroughly mistaken!
  }
}[/color]



[EDIT: added $& to shorten the script lines for readability. -Hammer]

Last edited by Hammer; 07/01/03 07:21 AM.



Intelligence: It's better to ask a stupid question, then to prove it by not asking....
#5075 06/01/03 11:06 PM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
well, i see a few problems first off.

Code:
on *:ACTION:*:*: {
  ; Fix the *slap* -- the stars won't work unless its in the event call
  ; e.g. .. :ACTION:*slap*: ...
  ; secondly, group the or conditions.
  ; Either or I believe you want *either* the slap *or* the trout
  if (((slap isin $1- ) || (trout isin $1- )) &amp;&amp; ( $me isin $1- )) {
    ; lets break this line up abit using the continuation character ($&amp;)
    msg # hey $nick Your vocabulary is to categorical for a person $&amp;
      of my intellectual ability to comprehend! So if you mean to insinuate $&amp;
      that I will tolerate your diabolical provications you are thoroughly mistaken!
  }
}

on *:TEXT:*:*: {
  ; same changes, just on text
  if (((slap isin $1- ) || (trout isin $1- )) &amp;&amp; ( $me isin $1- )) {
  msg # hey $nick Your vocabulary is to categorical for a person $&amp;
      of my intellectual ability to comprehend! So if you mean to insinuate $&amp;
      that I will tolerate your diabolical provications you are thoroughly mistaken!
  }
} 


that should werk.. Just a few minor changes, thats all grin


-KingTomato
#5076 07/01/03 07:18 AM
Joined: Dec 2002
Posts: 1,321
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,321
Original:
Your vocabulary is to (-10: misspelled "too") categorical (-10: diction) for a person of my intellectual ability to comprehend! So if you mean to insinuate that I will tolerate your diabolical provications (-10: misspelled "provocations") (-10: comma fault) you are thoroughly mistaken!

-40 * 2 events = -80 :tongue:

Corrected:
Your vocabulary is too miniscule for a person of my intellectual ability to comprehend. So, if you mean to insinuate that I will tolerate your diabolical provocations, you are thoroughly mistaken!

  • "To" is a preposition, not an adverb; therefore it cannot modify the adjective following it. "Too" is the adverb you want.
  • A vocabulary is the total collection of words available for use by the person. It cannot be "categorical" since it is all-inclusive, though perhaps limited when compared with someone else's vocabulary. Most likely, "miniscule," or perhaps "limited," is the desired adjective.
  • "Provocations" is the correct spelling. There is no word in the English language that begins with "provic-".
  • "You are thoroughly mistaken!" is an independent clause and must be separated from its preceeding dependent conditional clause by a comma. The comma after the expletory word "So," is optional, but recommended to give emphasis.
This message has been made possibe by a grant from the Society for the Promotion of Proper Punctuation, Diction and Spelling (SPPPDS, Ltd.), and has been brought to you by the adverb "Too," the letter "O" and the number "4." [All rights reserved.]


DALnet: #HelpDesk and #m[color:#FF0000]IR[color:#EEEE00]C
#5077 07/01/03 02:51 PM
Joined: Dec 2002
Posts: 1,237
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,237
/me drops to the floor laffing his ass off!

#5078 07/01/03 08:06 PM
Joined: Dec 2002
Posts: 843
P
Hoopy frood
Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 843
/me slaps y'all around with a large trout
Make of that comma what you will, hehehe :tongue:


Never compare yourself to others - they're more screwed up than you think.

Link Copied to Clipboard