.:: Bots United ::.

.:: Bots United ::. (http://forums.bots-united.com/index.php)
-   Offtopic (http://forums.bots-united.com/forumdisplay.php?f=23)
-   -   Happy birthday @$3.1415rin ! (http://forums.bots-united.com/showthread.php?t=2239)

>BKA< T Wrecks 08-07-2004 15:28

Happy birthday @$3.1415rin !
 
Another day, another birthday... and this time it's one of the Council members, the coder of JoeBot and the guy with the most enigmatic nick here - I never really got what it meant. Maybe the candles on your birthday cake can shed some light on this...?

Anyway, I wish you a happy B-Day, good success with "Joe" and a good time with Bots-United! Cheers! =)

evy 08-07-2004 17:49

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by >BKA< T Wrecks
Maybe the candles on your birthday cake can shed some light on this...?

My guess is A S PI RIN... the Tyledol used in Europe ;)

Zacker 08-07-2004 18:31

Re: Happy birthday @$3.1415rin !
 
Congrats to you with the spiffy nick!

SoUlFaThEr 08-07-2004 18:45

Re: Happy birthday @$3.1415rin !
 
Happy Birthday Dude !

MusicMan 08-07-2004 19:10

Re: Happy birthday @$3.1415rin !
 
Happy Birthday! :)

>BKA< T Wrecks 08-07-2004 19:24

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by evy
My guess is A S PI RIN... the Tyledol used in Europe ;)

Arrrrrrggghhh!! *bangs head against wall* NOW, just a second ago, I got it!
Evy, I knew that some others called him Aspirin, but I never saw the connection between "@$3.1415rin" and "Aspirin". When I opened this window to answer you, it suddenly came over me!

And I had been clueless all the time...
@=A, that was easy.
$=S, no problem.
The "rin" at the end was clear text anyway.
But then... i just didn't think of the number 3.1415 being this little number that's called by the Greek letter "pi"! Gnarrr... how can one person alone be so stupid? Excuse me while I hang myself... maths was never my best subject... where's that rope now?

stefanhendriks 08-07-2004 22:18

Re: Happy birthday @$3.1415rin !
 
lol. Asp is some sort of 'easy dude looking difficult' ? :D

anyway, happy b-day Asp! :D

@$3.1415rin 08-07-2004 22:35

Re: Happy birthday @$3.1415rin !
 
thanks guys !

lol, my nickname is still subject of discussions ... I already use it for pretty some time, although it's not the wisest choice since most forums don't allow such names, and IRC doesnt like it, neither. ( therefore i'm called MrJoe in IRC like nova, pablo and those use to call me in 'RL' ... )

if the weather will be fine, you may find me on the neckarwiesen in heidelberg next monday ... first half-way birthday party after around 12 years of doing any birthday party .... well, I guess the weather will be bad :D

Johannes Lampel a.k.a. @$3.14159265358979323rin

KWo 08-07-2004 22:40

Re: Happy birthday @$3.1415rin !
 
Happy birthday to You! Maybe I'm a little late, but I wish You all the best for You (this is probably wrong in English, but exactly this construction and this wish we say the people at birthday in Polish). :)

-=RAV=-AdrianShephard 08-07-2004 23:18

Re: Happy birthday @$3.1415rin !
 
Happy bday asp :D get drunk dude have a kick ass bday :)

sPlOrYgOn 09-07-2004 01:06

Re: Happy birthday @$3.1415rin !
 
:d :d Happy Birthday!!!! :d :d

Minh-Lo-Hwang 09-07-2004 12:55

Re: Happy birthday @$3.1415rin !
 
happy birthday !
or as we say on the waterkant *lol*
herzlüchen glückstrumpf oller schietbüttel *gg*
the best and so on :)

@$3.1415rin 09-07-2004 19:24

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by -=RAV=-AdrianShephard
Happy bday asp :D get drunk dude have a kick ass bday :)

lol, I had ;) ... 8 hours in university and reading math until 1 o'clock in the night after having phoned with all those relatives and stuff ...

Sung715 09-07-2004 23:18

Re: Happy birthday @$3.1415rin !
 
happy birthday!!! :) :P

Nova 10-07-2004 10:47

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by Sung715
happy birthday!!! :) :P

Happy birthday old tablet :)

Whistler 10-07-2004 11:29

Re: Happy birthday @$3.1415rin !
 
oh I missed this one...
Code:


                                if(g_bMyBirthday){
                                        for (i = gpGlobals->maxClients; i; i--){
                                                if(!bWelcome[i]){
                                                        pEnt = INDEXENT(i);
                                                       
                                                        // skip invalid players and skip self
                                                        if ((pEnt) && (!pEnt->free)){
                                                                if(IS_DEDICATED_SERVER()
                                                                        ||( g_fGameCommenced > 0 && g_fGameCommenced < gpGlobals->time - 4.0)){
                                                                        // are they out of observer mode yet?
                                                                        if (!IsAlive(pEnt)){
                                                                                welcome_time[i] = gpGlobals->time + 5;  // welcome in 5 seconds
                                                                                continue;
                                                                        }
                                                                        if(UTIL_GetBotIndex(pEnt) != -1){
                                                                                bWelcome[i] = true;
                                                                                continue;
                                                                        }
                                                                        if ((welcome_time[i] > 0.0)
                                                                                && (welcome_time[i] < gpGlobals->time))
                                                                        {               
                                                                                bWelcome[i] = true;  // clear this so we only do it once
                                                                               
                                                                                char szOut[1000];
                                                                                szOut[0] = 0;
                                                                                strcat(szOut,"\n\n\n\nToday, it's July the 8th\n\n");
                                                                                strcat(szOut,"This means that this is\n\n");
                                                                                strcat(szOut,"The birthday of the creator\n\n");
                                                                                strcat(szOut,"Of the bots you are playing\n\n");
                                                                                strcat(szOut,"With, @$3.1415rin !\n\n\n");
                                                                               
                                                                                hudtextparms_t message_params;
                                                                               
                                                                                message_params.x = -1;
                                                                                message_params.y = -1;
                                                                                message_params.effect = 2;
                                                                                message_params.r1 = 255;
                                                                                message_params.g1 = 255;
                                                                                message_params.b1 = 255;
                                                                                message_params.a1 = 1;
                                                                                message_params.r2 = 255;
                                                                                message_params.g2 = 0;
                                                                                message_params.b2 = 0;
                                                                                message_params.a2 = 1;
                                                                                message_params.fadeinTime = 0.1;
                                                                                message_params.fadeoutTime = 0.9;
                                                                                message_params.holdTime = 8;
                                                                                message_params.fxTime = 4;
                                                                                message_params.channel = 1;
                                                                               
                                                                                UTIL_ShowText(pEnt,message_params,szOut);
                                                                               
                                                                                message_params.effect = 2;
                                                                                message_params.r1 = 255;
                                                                                message_params.g1 = 255;
                                                                                message_params.b1 = 255;
                                                                                message_params.a1 = 1;
                                                                                message_params.r2 = 0;
                                                                                message_params.g2 = 255;
                                                                                message_params.b2 = 0;
                                                                                message_params.a2 = 200;
                                                                                message_params.fadeinTime = 0.05;
                                                                                message_params.fadeoutTime = 0.9;
                                                                                message_params.holdTime = 8;
                                                                                message_params.fxTime = 4;
                                                                                message_params.channel = 2;
                                                                               
                                                                                UTIL_ShowText(pEnt,message_params,szOut);
                                                                               
                                                                                message_params.effect = 1;
                                                                                message_params.r1 = 255;
                                                                                message_params.g1 = 255;
                                                                                message_params.b1 = 255;
                                                                                message_params.a1 = 1;
                                                                                message_params.r2 = 0;
                                                                                message_params.g2 = 0;
                                                                                message_params.b2 = 255;
                                                                                message_params.a2 = 0;
                                                                                message_params.fadeinTime = 4;
                                                                                message_params.fadeoutTime = 4;
                                                                                message_params.holdTime = 0;
                                                                                message_params.fxTime = 4;
                                                                                message_params.channel = 3;
                                                                               
                                                                                UTIL_ShowText(pEnt,message_params,szOut);
                                                                        }
                                                                }
                                                        }
                                                }
                                        }
                                }


@$3.1415rin 10-07-2004 11:51

Re: Happy birthday @$3.1415rin !
 
yep, lol ... by now you can also find this 'feature' in other bots ...

Pierre-Marie Baty 12-07-2004 19:46

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by >BKA< T Wrecks
Arrrrrrggghhh!! *bangs head against wall* NOW, just a second ago, I got it!
Evy, I knew that some others called him Aspirin, but I never saw the connection between "@$3.1415rin" and "Aspirin". When I opened this window to answer you, it suddenly came over me!

And I had been clueless all the time...
@=A, that was easy.
$=S, no problem.
The "rin" at the end was clear text anyway.
But then... i just didn't think of the number 3.1415 being this little number that's called by the Greek letter "pi"! Gnarrr... how can one person alone be so stupid? Excuse me while I hang myself... maths was never my best subject... where's that rope now?

LMFAO :D
T Wrecks, you barely saved my life hahahahahaha
I was so frikkin ashamed to be one of the people who didnt find a connection first, cause it took me almost 3 months since I know this bloke to understand what this frikkin nick was meanin :D
lol outloud
hehehehehehe

and yeha... I'm a bit late as usuals...

HAPPY F*IN BIRTHDAY ASPIRIN!!! 8D
wish you less math and more parties this year, else you'll end up robotized :P

stefanhendriks 12-07-2004 21:36

Re: Happy birthday @$3.1415rin !
 
lol @ pmb.

I guess Asp will be a formula next year

>BKA< T Wrecks 12-07-2004 22:36

Re: Happy birthday @$3.1415rin !
 
Well, his friggin' nick almost looks like a formula already, for crying out loud!

LOL @ PMB... so I'm not the only one who took a bit longer, huh? Good to know that there are other people who know how I felt all the time... :D

Nova 13-07-2004 05:47

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by >BKA< T Wrecks
Well, his friggin' nick almost looks like a formula already, for crying out loud!

LOL @ PMB... so I'm not the only one who took a bit longer, huh? Good to know that there are other people who know how I felt all the time... :D

Hmm, i got it instantly ... i guess its a german thing, like the XML thingy. XML RULORZ ur @$$ :)

>BKA< T Wrecks 13-07-2004 10:12

Re: Happy birthday @$3.1415rin !
 
*g* Excuse me for being stupid again, but what exactly do you mean with "it's a german thing" ?

Nova 13-07-2004 10:37

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by >BKA< T Wrecks
*g* Excuse me for being stupid again, but what exactly do you mean with "it's a german thing" ?

Aspirin is a german pain relief tablet, and therefor the nick is easy to spot ...

TruB 13-07-2004 10:45

Re: Happy birthday @$3.1415rin !
 
it spells the same in swedish..

>BKA< T Wrecks 13-07-2004 13:59

Re: Happy birthday @$3.1415rin !
 
It's spelled like this almost all over the world. I have seen a documentation about it, and in some country, "Aspirin" even belonged to the words that were taught at a school of some indigenous tribe as an example for words that begin with the letter A!

Hell, I've swallowed many an Aspirin in my life, too (mysteriously, very often after nights when I drank a drop or two too much). I could even say it saved some Sundays for me... ;)

But that wasn't the problem anyway. As I said, I knew that the nick was supposed to read "Aspirin". I just didn't get this combination of letters and numbers put together to form something like "Aspirin". I tried to put something together in 1337, and I thought that maybe the period in the nick was supposed to separate a clan tag from a name, etc. etc... but I never looked closer at that damned number 3.1415... especially since in German the number would read 3,1415. Stupid, stupid, stupid...

Pierre-Marie Baty 13-07-2004 15:01

Re: Happy birthday @$3.1415rin !
 
Aspirin is not a german thing at all, Nova :)

Although would he have choosen "acetylsalicylic acid" as a nickname instead, I would have understood perfectly the first time :D

SoUlFaThEr 13-07-2004 15:52

Re: Happy birthday @$3.1415rin !
 
lol....should simply name himself Tylenol

Nova 13-07-2004 20:13

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by SoUlFaThEr
lol....should simply name himself Tylenol

Or Deoxiribonucleic acid :)

Pierre-Marie Baty 13-07-2004 20:43

Re: Happy birthday @$3.1415rin !
 
hmm, that's DNA Nova (DeoxiriboNucleic Acid)... not Aspirin ;)

Nova 13-07-2004 21:33

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by Pierre-Marie Baty
hmm, that's DNA Nova (DeoxiriboNucleic Acid)... not Aspirin ;)

OMG! I DIDNT KNOW ! *lmao*

Dud, can't you let me sound smart for ONCE ? :)

@$3.1415rin 13-07-2004 21:37

Re: Happy birthday @$3.1415rin !
 
wanna convert this thread to a "cool word" thread ? hey, nova, what's "Homöomorphismus" in english ? you got math in university, too. homoeomorphism ? ... that's somehow fuckin' cool, that word ...

but maybe isomorph is even better, since you can also use that word in normal language, almost aequivalent to "the same", "aequivalent" etc ...

SoUlFaThEr 14-07-2004 00:17

Re: Happy birthday @$3.1415rin !
 
excuse me but your verbiage is a little too accopious for my dimentive sense of understanding so please, in future continuances, allucitate in a more explicit manner :)

@$3.1415rin 14-07-2004 00:22

Re: Happy birthday @$3.1415rin !
 
more explicit ? nothing easier than that ... an isomorphism is a bijective homomorphism ( without ö )

I guess it's already too late and I should better sleep than write shit ...

€: SF, you should always post in such english ... that roxxors ;)

Nova 14-07-2004 06:10

Re: Happy birthday @$3.1415rin !
 
Soulfather, your assumtious behaviour indicates a retrospective selfperspective that stands in sharp contrast to your umbiguous values.

*evil grin*

Pierre-Marie Baty 14-07-2004 17:26

Re: Happy birthday @$3.1415rin !
 
what's funny here is that Nova's reply actually means something... well, apart the orthograph mistakes that is :D

...ok, I'm gonna let you sound smart this time. Try hard, I wouldn't want to regret it :P

SoUlFaThEr 15-07-2004 01:02

Re: Happy birthday @$3.1415rin !
 
isnt it "ambiguous"

Nova 15-07-2004 08:02

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by SoUlFaThEr
isnt it "ambiguous"

AAAAAH! YES IT IS! IM JUST A COMPLETE RETARD THAT CANT EVEN SPELL, AND NOW IM OFF TO SHOOT MYSELF :)

Just wanted to simulate steampowered.com forum conditions quickly :)

Your correct soul.

SoUlFaThEr 15-07-2004 11:55

Re: Happy birthday @$3.1415rin !
 
still im impressed with your high class eng there Nova :)

speaking of steampowered forum....is my account workin yet?

Nova 15-07-2004 19:49

Re: Happy birthday @$3.1415rin !
 
Quote:

Originally Posted by SoUlFaThEr
still im impressed with your high class eng there Nova :)

speaking of steampowered forum....is my account workin yet?

ROFL, forgot that. oh well

*pulls out his 1337 SuperMod rights on steampowered forums and activates Soulfathers account*

There ya go !

Pierre-Marie Baty 08-07-2005 17:04

Re: Happy birthday @$3.1415rin !
 
acetylsalicylic acid's birthday again

let's resurrect this one instead, it's better :D


All times are GMT +2. The time now is 14:35.

Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.