Metal Gear Solid (1-4) Memorable Quotes
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 6.3 (of 3 scores) |
| Date Added | May 07, 2009 |
| Last Updated | May 07, 2009 |
| Tags | gear kirby memorable metal mgs mirc quotes solid |
Introduction
This script just gets a random memorable quote from one of the four pages on IMDb.
If you played the Metal Gear Solid series, you'd probably be familiar with these quotes...
Syntax: .mgs <1 ~ 4>
* The number represents the game number in the whole series.
Here's a picture for those with good eye sight:

Here's a picture for those who are blind:

Enjoy! :D
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 7, 2009 12:26 am
Posted on May 7, 2009 12:26 am
I tried to make the quotes look IRC-like, but it seems it doesn't work that way. :D
LAUGH ALL YOU WANT NEMESIS!!! ;]
LAUGH ALL YOU WANT NEMESIS!!! ;]
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 7, 2009 1:36 am
Posted on May 7, 2009 1:36 am
Gee, I love playing metal gear solid 4! I can't wait for the series 5 to come out in the future. It's the best stealth game ever!
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 7, 2009 6:14 am
Posted on May 7, 2009 6:14 am
Haha, same. :D
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 7, 2009 1:52 pm
Posted on May 7, 2009 1:52 pm
Why the second sockread %mgs?
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 7, 2009 2:53 pm
Posted on May 7, 2009 2:53 pm
jonesy44 said:
I need the second sockread %mgs because that is used to get the actual quote itself.
Let's take
for instance.
gets the person who said the quote from the <b><a href="/name/nm0371684/">Solid Snake</a></b>: part, and then after that, I need to get the actual quote itself. By using sockread again, I can get the next line, which contains the quote.
Hope this clarifies your question.
| Quote: |
| Why the second sockread %mgs? |
I need the second sockread %mgs because that is used to get the actual quote itself.
Let's take
| Code: |
| <b><a href="/name/nm0371684/">Solid Snake</a></b>: This reminds me of when we first met. <br> |
| Code: |
| if ($regex(%mgs,<b><a href="/name/.*/">(.*)</a></b>:|<b>(.*)</b>:)) { |
Hope this clarifies your question.
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 7, 2009 8:06 pm
Posted on May 7, 2009 8:06 pm
is there no \r \n in mirc regex?
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 8, 2009 2:37 am
Posted on May 8, 2009 2:37 am
\n = Matches a new line
\r = Carriage return
Below is an example:
Text: an anaconda ate Anna Jones
Regex: \w+\r\n
Match: ate
Depending on your operating system you might have to combine the \r and \n character escapes to create the correct new line sequence for your platform. For Microsoft Windows systems you should generally use \r\n which is a carriage return then line feed (CRLF). To simply match the end of a line or string use the dollar sign ($).
Souce: from from what I read about Regex.
\r = Carriage return
Below is an example:
Text: an anaconda ate Anna Jones
Regex: \w+\r\n
Match: ate
Depending on your operating system you might have to combine the \r and \n character escapes to create the correct new line sequence for your platform. For Microsoft Windows systems you should generally use \r\n which is a carriage return then line feed (CRLF). To simply match the end of a line or string use the dollar sign ($).
Souce: from from what I read about Regex.
mIRC Snippet:
Metal Gear Solid (1-4) Memorable Quotes
Posted on May 8, 2009 12:19 pm
Posted on May 8, 2009 12:19 pm
ahh i see! very nice :)









