2,676

(349 replies, posted in Universal News)

indeed nolio.. thats the problem, even me admitting that It is all good and cool is not coming through on certain people

2,677

(349 replies, posted in Universal News)

we attacked 656 a bit to get shares with 668.. 667 helped them very nicely.. we never said it was dirty or mean. Thats how it went it was a good move..

so naci stop whining about things and just play

2,678

(349 replies, posted in Universal News)

naci... stop talking man.. we are not complaining, we are just stating that nolio jumped fleet and started to attack me and love..

a good tactical move that helped you.. point

2,679

(12 replies, posted in General)

panna =o

2,680

(349 replies, posted in Universal News)

iluvatar on naci - gay sex?

2,681

(13 replies, posted in General)

Indeed, someone showed me the game a few weeks back and first time I finished in 1800 deaths tongue then a few days later I was bored and played again, that time I finished in 300 deaths

2,682

(13 replies, posted in General)

finished in 300 deaths

2,683

(77 replies, posted in Universal News)

I don't see what is so funny about that.

2,684

(77 replies, posted in Universal News)

tmk, naci..

this and last years captures:
25 from #656
23 from #656

this and last years losses:
32 to #656
19 to #656

--

so.. what farming?
you attacked 656, I don't call it farming.. I say good job!

so I don't have any bad words for your family, but still you see the need to bash mine...

2,685

(77 replies, posted in Universal News)

I kept track of all our family news and I know what we did and did not do. we did not farm small families, we did not acquire spread by attacking small families... and we did not do anything again 653 or 656 besides some clearings.

people have been whining about my family the whole round now and I'm sick of it. If anyone ever played with me they'd know I never attack small families unprovoked. Of course I am not the only attacker in my family and we don't all share the same point of view...

So of course there have been a few attacks against smaller families, but never many planets, always in our core.


so naci whats your problem? That we cleared a few small famlies? or do you just like to whine about families you don't know anything about?



edit: stop smart mouthing, some people have more things to do then whine in uni

2,686

(13 replies, posted in General)

> Loz is my style icon wrote:

> The forum display options are sexist: there's no pink X(

I made a pink style and sent it to the mods... blame them or Stefan for not implementing it tongue

2,687

(77 replies, posted in Universal News)

lol naci you have no clue what you are talking about...

a) we only took some attacker planets from 656
b) we have only taken planets from rank 20+ families after they abused the space we gave them leaving them in systems.
c) if smaller families keep retaking then morale is gaining up on you in the end.
d) 656 keeps retaking and 667 is also interfering so we need our morale..

all you do is talk along with bshit uni news. grow up naci

2,688

(77 replies, posted in Universal News)

I know what my fam news says..  we never touched your bankers, all we did is grab some planets from your attackers for some spread..

so stop the whining...

2,689

(77 replies, posted in Universal News)

656 shouldn't complain.. I was portalled one tick from their HS for over 3 days and I did nothing to them..
if we wanted to farm them it would have happened days ago!

edit: whine whine

2,690

(43 replies, posted in General)

my name does not come from lotr.. It really doesn't... *hides*

2,691

(77 replies, posted in Universal News)

does that mean we smell like you? yikes

2,692

(17 replies, posted in Community)

happy birthday! happy birthday!

big_smile big_smile big_smile

2,693

(10 replies, posted in Community)

everyone knows that: skoe > everyone in a 'one on one' beating..

and congrats Loz smile

2,694

(43 replies, posted in General)

I bet eltie closed his eyes anyway so Primo could kiss smile

2,695

(82 replies, posted in Universal News)

you still deleted out of the 200% original family as main attacker smile

2,696

(36 replies, posted in Universal News)

ooh, punbb is yours tongue nice.. big_smile

2,697

(280 replies, posted in General)

voting jets

2,698

(280 replies, posted in General)

if you would have been online you could have tied with me tongue not that I would have liked that but still... tongue

2,699

(20 replies, posted in Community)

yikes

happy birthday big_smile big_smile big_smile

2,700

(2 replies, posted in General)

<?php
$string = "hello world";
$key = "goodbye";


function Encrypt($string, $key)
{
$result = '';
for($i=1; $i<=strlen($string); $i++)
{
$char = substr($string, $i-1, 1);
$keychar = substr($key, ($i % strlen($key))-1, 1);
$char = chr(ord($char)+ord($keychar));
$result.=$char;
}
return $result;
}

function Decrypt($string, $key)
{
$result = '';
for($i=1; $i<=strlen($string); $i++)
{
$char = substr($string, $i-1, 1);
$keychar = substr($key, ($i % strlen($key))-1, 1);
$char = chr(ord($char)-ord($keychar));
$result.=$char;
}
return $result;
}

$encrypted_output = encrypt($string, $key);
$decrypted_output = decrypt($encrypted_output, $key);

echo $encrypted_output;
echo "<br />";
echo $decrypted_output;
?>