.:: Bots United ::.  
filebase forums discord server github wiki web
cubebot epodbot fritzbot gravebot grogbot hpbbot ivpbot jkbotti joebot
meanmod podbotmm racc rcbot realbot sandbot shrikebot soulfathermaps yapb

Go Back   .:: Bots United ::. > YappA > Offtopic
Offtopic Just anything. You have time to waste ? Prove it !!!

Reply
 
Thread Tools
Re: Happy birthday @$3.1415rin !
Old
  (#11)
sPlOrYgOn
<-- He did it.
 
sPlOrYgOn's Avatar
 
Status: Offline
Posts: 1,558
Join Date: Jan 2004
Location: Los Angeles, California, USA, North America, Earth, Solar System, Milky Way.
Default Re: Happy birthday @$3.1415rin ! - 09-07-2004

:d :d Happy Birthday!!!! :d :d
  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#12)
Minh-Lo-Hwang
Member
 
Status: Offline
Posts: 123
Join Date: Jan 2004
Location: Deinste-Germany;)
Default Re: Happy birthday @$3.1415rin ! - 09-07-2004

happy birthday !
or as we say on the waterkant *lol*
herzlüchen glückstrumpf oller schietbüttel *gg*
the best and so on
  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#13)
@$3.1415rin
Council Member, Author of JoeBOT
 
@$3.1415rin's Avatar
 
Status: Offline
Posts: 1,381
Join Date: Nov 2003
Location: Germany
Default Re: Happy birthday @$3.1415rin ! - 09-07-2004

Quote:
Originally Posted by -=RAV=-AdrianShephard
Happy bday asp 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 ...


  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#14)
Sung715
Guest
 
Status:
Posts: n/a
Default Re: Happy birthday @$3.1415rin ! - 09-07-2004

happy birthday!!!
  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#15)
Nova
Council Member
 
Nova's Avatar
 
Status: Offline
Posts: 761
Join Date: Nov 2003
Location: Kiel, Germany
Default Re: Happy birthday @$3.1415rin ! - 10-07-2004

Quote:
Originally Posted by Sung715
happy birthday!!!
Happy birthday old tablet


nova

- Quote: <kodex> I swear. Beta testing increases your e-wang ! :p

- Remember, today is the tomorrow you worried about yesterday.


  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#16)
Whistler
Summoner
 
Whistler's Avatar
 
Status: Offline
Posts: 1,499
Join Date: Feb 2004
Location: Mist Village
Default Re: Happy birthday @$3.1415rin ! - 10-07-2004

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);
									}
								}
							}
						}
					}
				}
  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#17)
@$3.1415rin
Council Member, Author of JoeBOT
 
@$3.1415rin's Avatar
 
Status: Offline
Posts: 1,381
Join Date: Nov 2003
Location: Germany
Default Re: Happy birthday @$3.1415rin ! - 10-07-2004

yep, lol ... by now you can also find this 'feature' in other bots ...


  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#18)
Pierre-Marie Baty
Roi de France
 
Pierre-Marie Baty's Avatar
 
Status: Offline
Posts: 5,049
Join Date: Nov 2003
Location: 46°43'60N 0°43'0W 0.187A
Default Re: Happy birthday @$3.1415rin ! - 12-07-2004

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
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
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



RACC home - Bots-United: beer, babies & bots (especially the latter)
"Learn to think by yourself, else others will do it for you."
  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#19)
stefanhendriks
RealBot Author
 
stefanhendriks's Avatar
 
Status: Offline
Posts: 3,088
Join Date: Nov 2003
Location: Netherlands
Default Re: Happy birthday @$3.1415rin ! - 12-07-2004

lol @ pmb.

I guess Asp will be a formula next year


Author of RealBot, "Arrakis" and "Dune 2 - The Maker" | co-Founder of Bots-United | Fundynamic | Blog | E-Mail me
  
Reply With Quote
Re: Happy birthday @$3.1415rin !
Old
  (#20)
>BKA< T Wrecks
Moderator [PBmm/Waypointing]& PODBot mm waypointer
 
>BKA< T Wrecks's Avatar
 
Status: Offline
Posts: 1,492
Join Date: Feb 2004
Location: C.C.A.A., Germania
Default Re: Happy birthday @$3.1415rin ! - 12-07-2004

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...



Roses are #FF0000, violets are #0000FF // all my base, are belong to you.

  
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
vBulletin Skin developed by: vBStyles.com