Simple Questions 1

by Arin

Back to Common Grounds.

Unknown2010-03-03 03:47:17
QUOTE (Simimi @ Mar 3 2010, 04:42 AM) <{POST_SNAPBACK}>
Ah, Mudlet, forgot to mention that. I seem to be having problems adjusting to it, and may just be going back to Mush. For time's sake if nothing else.

If it's set to perl regex, I dunno. Looks valid to me. Can always go into debug and see if the trigger is actually firing and your script isn't working.
Simimi2010-03-03 04:19:45
Is debug mode any different from having the trigger echo("works!") ?
Jayden2010-03-03 04:21:33

Just to clarify, when using the articles: a and an. They are always used to describe the noun correct? So it would be:

an apple
an pretty apple

a trunk
a elongated trunk

It sounds weird, but isnt that correct?
Ytran2010-03-03 04:22:57
QUOTE (Jayden @ Mar 2 2010, 10:21 PM) <{POST_SNAPBACK}>
Just to clarify, when using the articles: a and an. They are always used to describe the noun correct? So it would be:

an apple
an pretty apple

a trunk
a elongated trunk

It sounds weird, but isnt that correct?

An apple.
A pretty apple.

A truck.
An elongated truck.
Simimi2010-03-03 04:23:17
Is it not...

an apple
a pretty apple
a trunk
an elongated trunk
?
Unknown2010-03-03 04:25:14
QUOTE (Simimi @ Mar 3 2010, 05:19 AM) <{POST_SNAPBACK}>
Is debug mode any different from having the trigger echo("works!") ?

In the scripts window (I don't know what it's called. Where you see the triggers/aliases/macros buttons on the left.) There's a bug looking symbol at the bottom. Clicking it will open the debug menu. Make the text you're trying to trigger appear IG (Doing an IH or something) and see if it catches the trigger in the debug menu.
Ayisdra2010-03-03 04:27:26
QUOTE (Jayden @ Mar 2 2010, 11:21 PM) <{POST_SNAPBACK}>
Just to clarify, when using the articles: a and an. They are always used to describe the noun correct? So it would be:

an apple
an pretty apple

a trunk
a elongated trunk

It sounds weird, but isnt that correct?


Correct usage as people have said above. You use 'an' when the following word starts with a vowel.
Mirami2010-03-03 04:29:52
QUOTE (Simimi @ Mar 2 2010, 08:23 PM) <{POST_SNAPBACK}>
Is it not...

an apple
a pretty apple
a trunk
an elongated trunk
?

No. The 'n' is added based on whether the first letter in the next word is a vowel or not.
(It developed, in part, because it's easier to say. 'A angry cat' is harder to say than 'an angry cat')

EDIT: Ninja'd by Ayisdra.
Simimi2010-03-03 04:30:05
Well the trigger is not catching methinks... debug mode is cool though!

EDIT: Works just fine in Mush, though I forgot to account for spaces, don't know of any mobs with spaces in their names on ih though...
Jayden2010-03-03 04:31:00
QUOTE (Ytran @ Mar 3 2010, 04:22 AM) <{POST_SNAPBACK}>
An apple.
A pretty apple.

A truck.
An elongated truck.



See IRE is causing me to doubt myself, because I have designed different items in different games and each time I am given a different rule. Bad IRE. Bad!

One moment I am told its the noun, then I am told its the word following the article. I am too old to remember this stuff from kindergarten
Sylphas2010-03-03 04:36:19
It's not actually if the following word starts with a vowel that you go with "an" instead of "a", it's if it starts with a vowel sound, in speech, at least.
Shiri2010-03-03 04:47:35
There's also a couple special cases like "an hotel" which you say even though you should pronounce hotel with a h-sound rather than skipping it like a lot of people do (including me). Same for hospital.
Xenthos2010-03-03 04:48:44
QUOTE (Shiri @ Mar 2 2010, 11:47 PM) <{POST_SNAPBACK}>
There's also a couple special cases like "an hotel" which you say even though you should pronounce hotel with a h-sound rather than skipping it like a lot of people do (including me). Same for hospital.

Better example would be "an herb," I think. I'd debate the hotel one with you. tongue.gif
Eventru2010-03-03 04:53:42
QUOTE (Xenthos @ Mar 2 2010, 11:48 PM) <{POST_SNAPBACK}>
Better example would be "an herb," I think. I'd debate the hotel one with you. tongue.gif


I would too.

Oxford sides with everyone.
Rika2010-03-03 04:55:38
More English debates? ohmy.gif
Zallafar2010-03-03 05:00:09
QUOTE (Shiri @ Mar 2 2010, 08:47 PM) <{POST_SNAPBACK}>
There's also a couple special cases like "an hotel" which you say even though you should pronounce hotel with a h-sound rather than skipping it like a lot of people do (including me). Same for hospital.

My rule is if you pronounce the h (hotel, hospital in my dialect) use a; if you don't pronounce the h (e.g. honest) then use an.

Google matches for an hotel: 874,000
Google matches for a hotel: 20,800,000
Diamondais2010-03-03 05:00:15
The english language, a scary thing indeed.
Ssaliss2010-03-03 05:06:07
QUOTE (Simimi @ Mar 3 2010, 04:35 AM) <{POST_SNAPBACK}>
Why does the regex ^\\"(\\w+)(\\d+)\\" match "sdlkji45309" on http://regexpal.com/ but not in the game...?

Not using Mudlet, but I had a similar problem with my client. The problem was the color change in the middle; thus, the regex didn't catch it because the color change isn't accounted for in the regex. Try changing it to ^\\"(\\w+).m(\\d+).m\\" (this is only a wild shot in the dark, but if Mudlet parses regex on raw output and not what's displayed, it might work).
Xavius2010-03-03 05:50:16
QUOTE (Zallafar @ Mar 2 2010, 11:00 PM) <{POST_SNAPBACK}>
My rule is if you pronounce the h (hotel, hospital in my dialect) use a; if you don't pronounce the h (e.g. honest) then use an.

Google matches for an hotel: 874,000
Google matches for a hotel: 20,800,000

That's covered in Eventru's link...which is the correct usage policy for both real and mongrel-British English.
Lendren2010-03-03 05:53:30
QUOTE (Sylphas @ Mar 2 2010, 08:32 PM) <{POST_SNAPBACK}>
Thanks. Writing a system for wearing/storing/creating/maintaining different outfits, and layering plays havoc with the really simple approach.

I use the simple approach. The trick is to store the lists in the order you put the items on, then reverse it to take them off. Strip everything, then put everything on. Easy-peasy.

QUOTE (Shaddus Mes'ard @ Mar 2 2010, 09:05 PM) <{POST_SNAPBACK}>
You people have obviously never played around with Kharvik's leather choker with about 1500$ worth of runes on it, or damned near. I forget how much but I counted it up one time.

Ialie's rainbow ring is about the same. She acknowledges that my approach makes more sense, but still prefers hers.

Not that I am making fun. I have no grounds, what with me wishing I could buy a manse-artifact-oven for my manse's kitchen just because a kitchen should have an oven, even though I have no active cooks in the family. (I'd do it, too, if the price weren't so completely loopily out of line for the value even when you do have a cook.)