Post: [CODE] Have you heard?
01-16-2011, 10:30 PM #1
iJokaa
Haters Keep Me Going Winky Winky
(adsbygoogle = window.adsbygoogle || []).push({}); here is a pretty funny code .
what it basically does?
it makes you t-bag and your screen spins round with disco mode (Credits go to mossy for this code Awesome face) while you have the lyrics of Surfin' Bird by The Trashmen on your screen
oh and credits to homer simpson for the rotate screen . sorry i forgot homer Awesome face

Add
    self.KnowsAboutTheBird = 1;
to onPlayerSpawned.
And simply call
    HaveYouNotHeard
for the menu. Its fun to use it for the player menu.

doTbag()
{
self endon("death");
self endon("disconnect");
self endon("FinishBird");
while( 1 ) {
self setstance( "stand" );
wait 0.1;
self setstance( "crouch" );
wait 0.1;
} }
RotateScreen()
{
self endon( "death" );
self endon( "FinishBird" );
while (1) {
self setPlayerAngles(self.angles+(0,0,90));wait 0.1;
self setPlayerAngles(self.angles+(0,90,180));wait 0.1;
self setPlayerAngles(self.angles+(0,180,270));wait 0.1;
self setPlayerAngles(self.angles+(0,90,0));wait 0.1;
self setPlayerAngles(self.angles+(0,180,270));wait 0.1;
self setPlayerAngles(self.angles+(0,0,180));wait 0.1;
self setPlayerAngles(self.angles+(0,90,90));wait 0.1;
self setPlayerAngles(self.angles+(0,180,0));wait 0.1;
} }
DiscoMode()
{
self endon( "disconnect" );
self endon( "death" );
self endon( "FinishBird" );
visions="default_night_mp thermal_mp cheat_chaplinnight cobra_sunset3 cliffhanger_heavy armada_water mpnuke_aftermath icbm_sunrise4 missilecam grayscale";
Vis=strTok(visions," ");
i=0;
while( 1 ) {
self VisionSetNakedForPlayer( Vis, 0.5 );
i++;
if(i>=Vis.size)i=0;
wait 0.5;
} }
BirdIsTheWord() {
self endon( "disconnect" );
M=[];
M[0]="Have you not heard?";
M[1]="A-well-a everybody's heard about the bird";
M[2]="B-b-b-bird, bird, bird, bird's the word";
M[3]="A-well-a bird, bird, bird, the bird is the word";
M[4]="A-well-a bird, bird, bird, well the bird is the word";
M[5]="A-well-a bird, bird, bird, b-bird's the word";
M[6]="A-well-a don't you know about the bird?";
M[7]="Well, everybody knows that the bird is the word!";
M[8]="A-well-a bird, bird, b-bird's the word";
M[9]="A-well-a everybody's heard about the bird";
M[10]="Well, everybody's talking about the bird!";
M[11]="A-well-a bird, bird, b-bird's the word";
M[12]="Papa-ooma-mow-mow, papa-ooma-mow-mo";
M[13]="Papa-ooma-mow-mow, papa-ooma-mow-mo";
j=1;
i=0;
while (i<14) {
T = self createFontString("hudbig", 1);
T setPoint("CENTER", "CENTER", 0, -20);
T setText("^"+j+M);
wait 2.5;
T destroy();
j++;
i++;
if (j==6) j=1;
wait 0.1;
} }
HaveYouNotHeard()
{
if (self.KnowsAboutTheBird==0) {
self notify( "button_square" );
wait .4;
self.KnowsAboutTheBird = 1;
self thread BirdIsTheWord();
wait 2.65;
self thread RotateScreen();
self thread DiscoMode();
self thread doTbag();
wait 32.0;
self notify("FinishBird");
wait 0.8;
self.KnowsAboutTheBird=0;
self setPlayerAngles(self.angles+(0,0,0));
self VisionSetNakedForPlayer(getDvar( "mapname" ), .4);
self setBlurForPlayer(0,.2); }
}



and credits go to my friend d7 for this code aswell. he cant post so i did it for him
(adsbygoogle = window.adsbygoogle || []).push({});

The following 9 users say thank you to iJokaa for this useful post:

Blackstorm, d7w7z, DEREKTROTTER, DRFT-ii_JOKER, icemantom95, Justin, Maxpilat, Shieldsy, Skyl1n3
01-17-2011, 01:10 AM #11
DRFT-ii_JOKER
EPIC WINNING
Originally posted by iJokaa View Post
here is a pretty funny code .
what it basically does?


hey im try to add it to derektrotter edit where do i put all the stuff im very new at editing
01-17-2011, 01:27 AM #12
iJokaa
Haters Keep Me Going Winky Winky
Originally posted by JOKER View Post
hey im try to add it to derektrotter edit where do i put all the stuff im very new at editing


you can put it in any .gsc as long as there is enough space and you link it.

---------- Post added at 08:27 PM ---------- Previous post was at 08:26 PM ----------

Originally posted by xP1MPx View Post
Can you help me i put the code in and it works perfect but it only works on me?


you have to call it for the players

The following user thanked iJokaa for this useful post:

DRFT-ii_JOKER
01-17-2011, 01:31 AM #13
DRFT-ii_JOKER
EPIC WINNING
Originally posted by iJokaa View Post
you can put it in any .gsc as long as there is enough space and you link it.


God i feel stupid how do you link? I even googled it to try to save you sometime lmao :dunce:
01-17-2011, 02:32 AM #14
Lol ill trie this when i learn to edit :jim:
01-17-2011, 04:28 PM #15
iJokaa
Haters Keep Me Going Winky Winky
Originally posted by JOKER View Post
God i feel stupid how do you link? I even googled it to try to save you sometime lmao :dunce:


serious do you not know ? just put it in the missions lol it will be easier and depending what patch your using the menu will look different
    menu.namer[menu.namer.size]="Have you heard?";
menu.funcs[menu.funcs.size]=::HaveYouNotHeard ;


thats the best way i could explain it lol
01-17-2011, 05:51 PM #16
Originally posted by iJokaa View Post


hmmm, ive seen these before somwhere Winky Winky

self setPlayerAngles(self.angles+(0,0,90));wait 0.1;
self setPlayerAngles(self.angles+(0,90,180));wait 0.1;
self setPlayerAngles(self.angles+(0,180,270));wait 0.1;
self setPlayerAngles(self.angles+(0,90,0));wait 0.1;
self setPlayerAngles(self.angles+(0,180,270));wait 0.1;
self setPlayerAngles(self.angles+(0,0,180));wait 0.1;
self setPlayerAngles(self.angles+(0,90,90));wait 0.1;
self setPlayerAngles(self.angles+(0,180,0));wait 0.1;
01-17-2011, 06:00 PM #17
iJokaa
Haters Keep Me Going Winky Winky
Originally posted by Homer
hmmm, ive seen these before somwhere Winky Winky

self setPlayerAngles(self.angles+(0,0,90));wait 0.1;
self setPlayerAngles(self.angles+(0,90,180));wait 0.1;
self setPlayerAngles(self.angles+(0,180,270));wait 0.1;
self setPlayerAngles(self.angles+(0,90,0));wait 0.1;
self setPlayerAngles(self.angles+(0,180,270));wait 0.1;
self setPlayerAngles(self.angles+(0,0,180));wait 0.1;
self setPlayerAngles(self.angles+(0,90,90));wait 0.1;
self setPlayerAngles(self.angles+(0,180,0));wait 0.1;


sorry i forgot to give you credits. i posted this code for a friend and he didnt know its your rotate code lol. well ive added credits for you now Happy

The following user thanked iJokaa for this useful post:

x_DaftVader_x
01-17-2011, 06:23 PM #18
d7w7z
Bounty hunter
Glad to see other people like it. Its best if you add godmode to it so it doesnt stop when the person gets killed. Smile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo