The Ur-Quan Masters Home Page Welcome, Guest. Please login or register.
Did you miss your activation email?
October 12, 2024, 06:09:49 am
Home Help Search Login Register
News: Celebrating 30 years of Star Control 2 - The Ur-Quan Masters

+  The Ur-Quan Masters Discussion Forum
|-+  The Ur-Quan Masters Re-Release
| |-+  General UQM Discussion (Moderator: Death 999)
| | |-+  7h3 Ur-Qu4n M4573r5 - UQM in leet..
« previous next »
Pages: [1] 2 Print
Author Topic: 7h3 Ur-Qu4n M4573r5 - UQM in leet..  (Read 10294 times)
Megagun
Enlightened
*****
Offline Offline

Gender: Male
Posts: 580


Moo


View Profile
7h3 Ur-Qu4n M4573r5 - UQM in leet..
« on: May 22, 2008, 10:55:37 pm »

So I checked out the Slovak translation of UQM today, and thought that all the interesting non-standard characters were funny. Then suddenly, WILD IDEA APPEARED!

The result?





Useless? Yes. Awesome? Maybe...

Want to practice your 1337 skills? Get 7h3 Ur-Qu4n M4573r5 here!
(It's only got the dialogues 'translated' yet, and I don't think this project is interesting enough to warrant a complete interface redesign like the Slovak translation team did)..
Logged
Particleman42
Frungy champion
**
Offline Offline

Gender: Male
Posts: 86



View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #1 on: May 22, 2008, 11:16:24 pm »

Incredible...how did you translate all of the dialogue so fast?

Forgive me if I'm not as super excited as you. Next up: Pig Latin.
Logged

"Violence is the last refuge of the incompetent" - Issac Asimov
waywardoctagon
*Many bubbles*
***
Offline Offline

Gender: Female
Posts: 142


More information...


View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #2 on: May 23, 2008, 12:46:45 am »

Oh, you could automate all that.  It's more or less just a cypher, after all.  It might even be quicker to build a custom English-to-leet translator and just tell it to ignore any line that started with # than it would be to feed all the dialog files through one of the existing ones, and then go back and change all the titles back.
Logged
Cedric6014
Enlightened
*****
Offline Offline

Gender: Male
Posts: 701



View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #3 on: May 23, 2008, 01:35:42 am »

Or you could just not even bother with this worthless excercise  Smiley

Eep, did I say that?
Logged

Play online melee here! http://irc.uqm.stack.nl/
jaychant
Guest


Email
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #4 on: May 23, 2008, 03:21:34 am »

0f c0ur$3, y0u f0rg07 ch@r@ct3r$ 7h@7 @r3n'7 num83r$. 7h3y @r3 v3ry !mp0r7@n7 !n 1337.
Logged
Particleman42
Frungy champion
**
Offline Offline

Gender: Male
Posts: 86



View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #5 on: May 23, 2008, 05:00:35 am »

Incredible...how did you translate all of the dialogue so fast? 

Oh, you could automate all that.  It's more or less just a cypher, after all.  It might even be quicker to build a custom English-to-leet translator and just tell it to ignore any line that started with # than it would be to feed all the dialog files through one of the existing ones, and then go back and change all the titles back.

Ah, naturally. That makes sense.
Logged

"Violence is the last refuge of the incompetent" - Issac Asimov
Prowler2885
Guest


Email
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #6 on: May 23, 2008, 05:02:27 am »

7h@7 !5 p377y 1337.

It was pretty entertaining trying to read it and listen at the same time. Good work.
Logged
waywardoctagon
*Many bubbles*
***
Offline Offline

Gender: Female
Posts: 142


More information...


View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #7 on: May 23, 2008, 06:45:52 am »

Incredible...how did you translate all of the dialogue so fast? 

Oh, you could automate all that.  It's more or less just a cypher, after all.  It might even be quicker to build a custom English-to-leet translator and just tell it to ignore any line that started with # than it would be to feed all the dialog files through one of the existing ones, and then go back and change all the titles back.

Ah, naturally. That makes sense.

Yep.  Um...

Code:
<?php
$filestoread 
= array("filepath/arilou.txt","filepath/chmmr.txt","filepath/etc.txt");
foreach(
$filestoread as $thisfile){
$openfile fopen($thisfile"r");
$foo fread($openfilefilesize($thisfile));
$bar explode("\n",$foo);

foreach($bar as $wibble){
if(substr($wibble,0,1) != "#"){
$wibble str_ireplace("regular letters","leet letters",$wibble);
$wibble str_replace("other regular letters","other leet letters",$wibble);
//etc.
}
$output .= "\n" $wibble;
}
$output stripslashes($output);
fclose($openfile);

$openfile fopen($thisfile"w");
fwrite($openfile,$output);
fclose($openfile);
}
?>

So something like that, but in your language of choice.  And you can save a few lines if you want to just c&p the dialog into a textbox instead of having it open the files. (Since apparently the above means you have to open the files manually and delete that extra notepad-doesn't-know-what-it-is character it puts at the beginning of the file, anyway... what's that about?)

/too lazy to actually go look up all the leet replacements but you see how it works
Logged
Ph
Zebranky food
*
Offline Offline

Posts: 35


baby we can photoshop until we both rofl


View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #8 on: May 23, 2008, 11:16:36 am »

lol
Logged
Lukipela
Enlightened
*****
Offline Offline

Gender: Male
Posts: 3620


The Ancient One


View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #9 on: May 23, 2008, 04:23:10 pm »

Very nice. I wonder if anyone would be up for making a "real" l33t version, i.e not just running it through a leetifier but changing the entire sentence structure. That would be even more amusing, but of course also much more pointless.
Logged

What's up doc?
countchocula86
*Smell* controller
****
Offline Offline

Gender: Male
Posts: 345


Culture 20!


View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #10 on: May 23, 2008, 05:26:57 pm »

Quote
Very nice. I wonder if anyone would be up for making a "real" l33t version, i.e not just running it through a leetifier but changing the entire sentence structure. That would be even more amusing, but of course also much more pointless.
Exactly what I was thinking, although are there enough leet expressions to keep all the dialogue interesting? Another exercise in pointlessness would be to use lolcat language.
Logged

I like to think you killed a man. It's the romantic in me.
meep-eep
Forum Admin
Enlightened
*****
Offline Offline

Posts: 2847



View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #11 on: May 23, 2008, 08:46:49 pm »


Logged

“When Juffo-Wup is complete
when at last there is no Void, no Non
when the Creators return
then we can finally rest.”
countchocula86
*Smell* controller
****
Offline Offline

Gender: Male
Posts: 345


Culture 20!


View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #12 on: May 23, 2008, 09:16:22 pm »

Rofl ahahaha "O hai"
Logged

I like to think you killed a man. It's the romantic in me.
Alvarin
Enlightened
*****
Offline Offline

Gender: Male
Posts: 799



View Profile
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #13 on: May 23, 2008, 09:31:36 pm »

I've just watched the 19'th part of lolcats in youtube ... very nice talking pet modification , heh Umgah could have "programmed" it to speak this way Grin
Logged
Prowler2885
Guest


Email
Re: 7h3 Ur-Qu4n M4573r5 - UQM in leet..
« Reply #14 on: May 23, 2008, 10:15:00 pm »

talking pets is lolz ZOMG!!!
That's freaking epic. Far more appropriate for the Umgah while MC'd by him though.
Logged
Pages: [1] 2 Print 
« previous next »
Jump to:  


Login with username, password and session length

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines Valid XHTML 1.0! Valid CSS!