Post: [CODE] B2 Spirits [Airstrike]
02-05-2011, 07:54 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); hey guys this is a simple ol' little airstrike, it is mossy's super harrier code i juss made it all b2 spirits. i love the military. plan to go to the United States Air Force when i get 18 and Graduate. the B2 is my favorite Air Craft so here is the code:

    B2Spirit(){
self iPrintLnBold("^1B2 Spirits Inbound!");
o=self;
b0=spawn("script_model",(15000,0,2300));
b1=spawn("script_model",(15000,1000,2300));
b2=spawn("script_model",(15000,-1000,2300));
b3=spawn("script_model",(15000,2000,2300));
b4=spawn("script_model",(15000,-2000,2300));
b5=spawn("script_model",(15000,3000,2300));
b6=spawn("script_model",(15000,-3000,2300));
b0 setModel("vehicle_b2_bomber");
b1 setModel("vehicle_b2_bomber");
b2 setModel("vehicle_b2_bomber");
b3 setModel("vehicle_b2_bomber");
b4 setModel("vehicle_b2_bomber");
b5 setModel("vehicle_b2_bomber");
b6 setModel("vehicle_b2_bomber");
b0.angles=(0,180,0);
b1.angles=(0,180,0);
b2.angles=(0,180,0);
b3.angles=(0,180,0);
b4.angles=(0,180,0);
b5.angles=(0,180,0);
b6.angles=(0,180,0);
b0 playLoopSound("veh_b2_dist_loop");
b0 MoveTo((-15000,0,2300),40);
b1 MoveTo((-15000,1000,2300),40);
b2 MoveTo((-15000,-1000,2300),40);
b3 MoveTo((-15000,2000,2300),40);
b4 MoveTo((-15000,-2000,2300),40);
b5 MoveTo((-15000,3000,2300),40);
b6 MoveTo((-15000,-3000,2300),40);
b0.owner=o;
b1.owner=o;
b2.owner=o;
b3.owner=o;
b4.owner=o;
b5.owner=o;
b6.owner=o;
b0.killCamEnt=o;
b1.killCamEnt=o;
b2.killCamEnt=o;
b3.killCamEnt=o;
b4.killCamEnt=o;
b5.killCamEnt=o;
b6.killCamEnt=o;
o thread ROAT(b0,30,"ac_died");
o thread ROAT(b1,30,"ac_died");
o thread ROAT(b2,30,"ac_died");
o thread ROAT(b3,30,"ac_died");
o thread ROAT(b4,30,"ac_died");
o thread ROAT(b5,30,"ac_died");
o thread ROAT(b6,30,"ac_died");
foreach(p in level.players){
if (level.teambased){
if ((p!=o)&&(p.pers["team"]!=self.pers["team"]))
if (isAlive(p)) p thread RB0MB(b0,b1,b2,b3,b4,b5,b6,o,p);
}else{
if(p!=o)
if (isAlive(p)) p thread RB0MB(b0,b1,b2,b3,b4,b5,b6,o,p);
}
wait 0.3;
} }
ROAT(obj,time,reason){
wait time;
obj delete();
self notify(reason);
}
RB0MB(b0,b1,b2,b3,b4,b5,b6,o,v){
v endon("ac_died");
s="ac130_105mm_mp";
r="ac130_25mm_mp";
a="ac130_40mm_mp";
while(1){
MagicBullet(s,b0.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b0.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b0.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b0.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b0.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b0.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b1.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b1.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b1.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b1.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b1.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b1.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b2.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b2.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b2.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b2.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b2.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b2.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b3.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b3.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b3.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b3.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b3.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b3.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b4.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b4.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b4.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b4.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b4.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b4.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b5.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b5.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b5.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b5.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b5.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b5.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b6.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b6.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b6.origin,v.origin,o);
wait 0.43;
MagicBullet(s,b6.origin,v.origin,o);
wait 0.3;
MagicBullet(r,b6.origin,v.origin,o);
wait 0.3;
MagicBullet(a,b6.origin,v.origin,o);
wait 5.43;
} }
(adsbygoogle = window.adsbygoogle || []).push({});
02-09-2011, 11:43 AM #11
crime2010
-NextGenUpdate-
nice ! i will try it !
02-09-2011, 12:38 PM #12
RusterG
The one and Only
Originally posted by hackz View Post
na its 6 stealth bombers

---------- Post added at 03:33 PM ---------- Previous post was at 03:31 PM ----------



Air Force lol the pay is better :rolleyes:HappyOutie Outie


you say you edited this code?

then you should know its 7 stealths not 6, it goes from b0 to b6 not b1 to b6. Happy
02-09-2011, 07:13 PM #13
Originally posted by RusterG View Post
you say you edited this code?

then you should know its 7 stealths not 6, it goes from b0 to b6 not b1 to b6. Happy



ha i delted this from my patch. i added US Calvary instead only has b0 to b3 and its ac130's guiding pavelows
02-09-2011, 07:18 PM #14
Skyl1n3
DO SOMETHING THEN!
Originally posted by Kroxldyphivc View Post
Wrong section.


You must login or register to view this content. This isn't the wrong section... It's an exploit and/or hack, not a modified patch. /facepalm

Originally posted by hackz View Post
na its 6 stealth bombers

---------- Post added at 03:33 PM ---------- Previous post was at 03:31 PM ----------



Air Force lol the pay is better :rolleyes:HappyOutie Outie


You've just taken Mossys code and changed the 2 harriers to B2's and added 2 more B2's? :/
02-09-2011, 07:36 PM #15
RusterG
The one and Only
Originally posted by hackz View Post
ha i delted this from my patch. i added US Calvary instead only has b0 to b3 and its ac130's guiding pavelows


Nice, i can't wait until i finish my private patch, then i can update my ps3 and play online again lol! been at it all day, so far i have added....

Not that your intrested, just in case tho lol Happy


Settings menu.

Ranked Match.

Big XP.

Make Unlimited.

Hyper Speed.

Normal Speed.

Slow Motion.

Super Jump.

Super Sprint.

Low Gravity.

Create FOG.

Disable Spectating.

Removed Big XP, Make Unlimited, Fast Restart and End Game from host menu.

Added Modded Bullets Sub menu.

Added:

Shoot Normal Bullets.

Shoot Nuke Bullets.

Shoot Fake CarePackages.

Shoot Real CarePackages.

Shoot Stingers.

Shoot RPGs.

Shoot Javelin.

Shoot AC130 105mm.

Shoot AC130 40mm

Shoot AC130 25mm

Shoot Projectiles.


Added Spawn Merry go round to objects.

Added Speak Menu.

Added:

Nice Shot!

Sniper!

Hold Position.

Suppressing Fire.

On Me.

Move in.

Area Secure.

Sorry.

Regroup.

Need Reinforcements! (Not Working)

Removed: Super Jump from admin menu.

and completely Removed Speed x2

Added Text Transition Slide in.

Added Flashing Menu Background.

And

i Added Flashing Text.


Still got quiet abit to do lol....
02-09-2011, 07:40 PM #16
vSaBoTeuR x
< ^ > < ^ >
Originally posted by Skyl1n3 View Post
You must login or register to view this content. This isn't the wrong section... It's an exploit and/or hack, not a modified patch. /facepalm



You've just taken Mossys code and changed the 2 harriers to B2's and added 2 more B2's? :/


this thread got moved, retard. also, if you use xzibit for any meme-art you must liking penis.
02-09-2011, 08:12 PM #17
RusterG
The one and Only
Originally posted by Kroxldyphivc View Post
this thread got moved, retard. also, if you use xzibit for any meme-art you must liking penis.


Don't Flame, he didn't flame you, so there was no need for that!

is all he said is that it was in the exploit and hacks section so it didn't need to get moved....

The following user thanked RusterG for this useful post:

Skyl1n3
02-09-2011, 08:20 PM #18
Skyl1n3
DO SOMETHING THEN!
Originally posted by Kroxldyphivc View Post
this thread got moved, retard. also, if you use xzibit for any meme-art you must liking penis.


You must login or register to view this content. Don't flame just because I said it's an exploit and hack... Bloody hell you rage like a troll. :carling:
02-09-2011, 09:03 PM #19
Originally posted by Skyl1n3 View Post
You must login or register to view this content. Don't flame just because I said it's an exploit and hack... Bloody hell you rage like a troll. :carling:


Hey lol Tommy Lee Jones Smile lol he done good as Two-Face in the Batman

---------- Post added at 04:03 PM ---------- Previous post was at 04:00 PM ----------

Originally posted by RusterG View Post
Nice, i can't wait until i finish my private patch, then i can update my ps3 and play online again lol! been at it all day, so far i have added....

Not that your intrested, just in case tho lol Happy


Settings menu.

Ranked Match.

Big XP.

Make Unlimited.

Hyper Speed.

Normal Speed.

Slow Motion.

Super Jump.

Super Sprint.

Low Gravity.

Create FOG.

Disable Spectating.

Removed Big XP, Make Unlimited, Fast Restart and End Game from host menu.

Added Modded Bullets Sub menu.

Added:

Shoot Normal Bullets.

Shoot Nuke Bullets.

Shoot Fake CarePackages.

Shoot Real CarePackages.

Shoot Stingers.

Shoot RPGs.

Shoot Javelin.

Shoot AC130 105mm.

Shoot AC130 40mm

Shoot AC130 25mm

Shoot Projectiles.


Added Spawn Merry go round to objects.

Added Speak Menu.

Added:

Nice Shot!

Sniper!

Hold Position.

Suppressing Fire.

On Me.

Move in.

Area Secure.

Sorry.

Regroup.

Need Reinforcements! (Not Working)

Removed: Super Jump from admin menu.

and completely Removed Speed x2

Added Text Transition Slide in.

Added Flashing Menu Background.

And

i Added Flashing Text.


Still got quiet abit to do lol....


could use a few more things. weapons, sky text, a bunch of things that would make your challenge lobby stand out. and one that people would wanna use. not that im saying its not good. but sounds pretty good. im juss sayin add somethings that would make it fun.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo