Post: [Release]***Chrome Playa's Ultimate Forge Patch*** (In-Game Bunker Building)
02-22-2011, 06:49 PM #1
Chrome Playa
Chrome Gaming Reloaded
(adsbygoogle = window.adsbygoogle || []).push({});
Chrome Playa's Forge Patch
Good For In-Game Bunker Creations



FORGE v2: You must login or register to view this content.

Thank you -Bad-Man- for the idea Smile
and dakilla010


Features

Build Wall
Build Grid
Build Ramp
Build Teleporter
Build Moving Platform
Weapons
Models


Weapons
Intervention
AK-47
P90
RPG
Predator Missle
Sentry
Minigun


Models
Test Sphere
Sex Doll
Tree
Hummer
Winter Truck
AC-130
Harrier
Stealth Bomber
Pickup Truck
UAV Plane
Palm Tree
Flat Screen TV
Benzin Barrel
Static TV
Vending Machine


Extra Features:
- Code Generator
- Ability To Cancel a Process
- Stylish Menu
- UFO Mode on D-Pad Left
- Automatic GodMode
- Point and Click Weapon and Model Spawning
- Kick Player



VIDEO:

NOTE: This video is not up to date.


DOWNLOASad Awesome

You must login or register to view this content.

How To Make Your Bunker Code:

Every time you build a structure, a code will be generated on the screen. Add that code to myBunker() which is located in Coordinates.gsc. After you finish your code, just call it from a menu option or whatever you prefer.

If you would like to add your code to another patch, then you need to add this to the init() of your patch's missions.gsc:


    	level.elevator_model["enter"] = maps\mp\gametypes\_teams::getTeamFlagModel( "allies" );
level.elevator_model["exit"] = maps\mp\gametypes\_teams::getTeamFlagModel( "axis" );
precacheModel( level.elevator_model["enter"] );
precacheModel( level.elevator_model["exit"] );
precacheModel( "test_sphere_silver" );
precacheModel("furniture_blowupdoll01");



You also need to have these codes along with your bunker code:

    CreateWalls(start,end){D=Distance((start[0],start[1],0),(end[0],end[1],0));H=Distance((0,0,start[2]),(0,0,end[2]));blocks=roundUp(D/55);height=roundUp(H/30);CX=end[0] - start[0];CY=end[1] - start[1];CZ=end[2] - start[2];XA =(CX/blocks);YA =(CY/blocks);ZA =(CZ/height);TXA =(XA/4);TYA =(YA/4);Temp=VectorToAngles(end - start);Angle =(0,Temp[1],90);for(h=0;h < height;h++){block=spawn("script_model",(start +(TXA,TYA,10)+((0,0,ZA)* h)));block setModel("com_plasticcase_friendly");block.angles=Angle;block Solid();block CloneBrushmodelToScriptmodel(level.airDropCrateCol  lision);wait 0.001;for(i=1;i < blocks;i++){block=spawn("script_model",(start +((XA,YA,0)* i)+(0,0,10)+((0,0,ZA)* h)));block setModel("com_plasticcase_friendly");block.angles=Angle;block Solid();block CloneBrushmodelToScriptmodel(level.airDropCrateCol  lision);wait 0.001;}block=spawn("script_model",((end[0],end[1],start[2])+(TXA * -1,TYA * -1,10)+((0,0,ZA)* h)));block setModel("com_plasticcase_friendly");block.angles=Angle;block Solid();block CloneBrushmodelToScriptmodel(level.airDropCrateCol  lision);wait 0.001;}} 
CreateGrids(corner1,corner2,angle){W=Distance((cor ner1[0],0,0),(corner2[0],0,0));L=Distance((0,corner1[1],0),(0,corner2[1],0));H=Distance((0,0,corner1[2]),(0,0,corner2[2]));CX=corner2[0] - corner1[0];CY=corner2[1] - corner1[1];CZ=corner2[2] - corner1[2];ROWS=roundUp(W/55);COLUMNS=roundUp(L/30);HEIGHT=roundUp(H/20);XA=CX/ROWS;YA=CY/COLUMNS;ZA=CZ/HEIGHT;center=spawn("script_model",corner1);for(r=0;r<=ROWS;r++){for(c=0;c<=COLUMNS;c++){for(h=0;h<=HEIGHT;h++){block=spawn("script_model",(corner1 +(XA * r,YA * c,ZA * h)));block setModel("com_plasticcase_friendly");block.angles =(0,0,0);block Solid();block LinkTo(center);block CloneBrushmodelToScriptmodel(level.airDropCrateCol lision);wait 0.01;}}}center.angles=angle;}
CreateRamps(top,bottom){D=Distance(top,bottom);blo cks=roundUp(D/30);CX=top[0] - bottom[0];CY=top[1] - bottom[1];CZ=top[2] - bottom[2];XA=CX/blocks;YA=CY/blocks;ZA=CZ/blocks;CXY=Distance((top[0],top[1],0),(bottom[0],bottom[1],0));Temp=VectorToAngles(top - bottom);BA =(Temp[2],Temp[1] + 90,Temp[0]);for(b=0;b < blocks;b++){block=spawn("script_model",(bottom +((XA,YA,ZA)* B)));block setModel("com_plasticcase_friendly");block.angles=BA;block Solid();block CloneBrushmodelToScriptmodel(level.airDropCrateCol lision);wait 0.01;}block=spawn("script_model",(bottom +((XA,YA,ZA)* blocks)-(0,0,5)));block setModel("com_plasticcase_friendly");block.angles =(BA[0],BA[1],0);block Solid();block CloneBrushmodelToScriptmodel(level.airDropCrateCol lision);wait 0.01;}
CreateElevator(enter,exit,angle){flag=spawn("script_model",enter);flag setModel(level.elevator_model["enter"]);wait 0.01;flag=spawn("script_model",exit);flag setModel(level.elevator_model["exit"]);wait 0.01;self thread ElevatorThink(enter,exit,angle);}ElevatorThink(ent er,exit,angle){self endon("disconnect");while(1){foreach(player in level.players){if(Distance(enter,player.origin)<= 50){player SetOrigin(exit);player SetPlayerAngles(angle);}}wait .25;}}
CreatePlate(corner1,corner2,arivee,angle,time){W=D istance((corner1[0],0,0),(corner2[0],0,0));L=Distance((0,corner1[1],0),(0,corner2[1],0));H=Distance((0,0,corner1[2]),(0,0,corner2[2]));CX=corner2[0] - corner1[0];CY=corner2[1] - corner1[1];CZ=corner2[2] - corner1[2];ROWS=roundUp(W/55);COLUMNS=roundUp(L/30);HEIGHT=roundUp(H/20);XA=CX/ROWS;YA=CY/COLUMNS;ZA=CZ/HEIGHT;center=spawn("script_model",corner1);for(r=0;r<=ROWS;r++){for(c=0;c<=COLUMNS;c++){for(h=0;h<=HEIGHT;h++){block=spawn("script_model",(corner1 +(XA * r,YA * c,ZA * h)));block setModel("com_plasticcase_friendly");block.angles =(0,0,0);block Solid();block CloneBrushmodelToScriptmodel(level.airDropCrateCol lision);block thread Escalatore((corner1 +(XA * r,YA * c,ZA * h)),(arivee +(XA * r,YA * c,ZA * h)),time);wait 0.01;}}}center.angles=angle;center thread Escalatore(corner1,arivee,time);center CloneBrushmodelToScriptmodel(level.airDropCrateCol lision);}Escalatore(depart,arivee,time){while(1){i f(self.state=="open"){self MoveTo(depart,time);wait(time*2.5);self.state="close";continue;}if(self.state=="close"){self MoveTo(arivee,time);wait(time*2.5);self.state="open";continue;}}}CreateAsc(depart,arivee,angle,time){A sc=spawn("script_model",depart);Asc setModel("com_plasticcase_friendly");Asc.angles=angle;Asc Solid();Asc CloneBrushmodelToScriptmodel(level.airDropCrateCol lision);Asc thread Escalator(depart,arivee,time);}Escalator(depart,ar ivee,time){while(1){if(self.state=="open"){self MoveTo(depart,time);wait(time*1.5);self.state="close";continue;}if(self.state=="close"){self MoveTo(arivee,time);wait(time*1.5);self.state="open";continue;}}}CreateCircle(depart,pass1,pass2,pass3 ,pass4,arivee,angle,time){Asc=spawn("script_model",depart);Asc setModel("com_plasticcase_friendly");Asc.angles=angle;Asc Solid();Asc CloneBrushmodelToScriptmodel(level.airDropCrateCol lision);Asc thread Circle(depart,arivee,pass1,pass2,pass3,pass4,time) ;}Circle(depart,pass1,pass2,pass3,pass4,arivee,tim e){while(1){if(self.state=="open"){self MoveTo(depart,time);wait(time*1.5);self.state="op";continue;}if(self.state=="op"){self MoveTo(pass1,time);wait(time);self.state="opi";continue;}if(self.state=="opi"){self MoveTo(pass2,time);wait(time);self.state="opa";continue;}if(self.state=="opa"){self MoveTo(pass3,time);wait(time);self.state="ope";continue;}if(self.state=="ope"){self MoveTo(pass4,time);wait(time);self.state="close";continue;}if(self.state=="close"){self MoveTo(arivee,time);wait(time);self.state="open";continue;}}}
SpawnWeapons(WFunc,Weapon,WeaponName,Location,Take Once){self endon("disconnect");weapon_model=getWeaponModel(Weapon);if(weapon_mo del=="")weapon_model=Weapon;Wep=spawn("script_model",Location+(0,0,10));Wep setModel(weapon_model);for(;Winky Winky{foreach(player in level.players){Radius=distance(Location,player.ori gin);if(Radius<60){player setLowerMessage(WeaponName,"Press ^3Use Button^7 to swap for "+WeaponName);if(player UseButtonPressed())wait 0.2;if(player UseButtonPressed()){if(!isDefined(WFunc)){player takeWeapon(player getCurrentWeapon());player _giveWeapon(Weapon);player switchToWeapon(Weapon);player clearLowerMessage("pickup",1);wait 2;if(TakeOnce){Wep delete();return;}} else {player clearLowerMessage(WeaponName,1);player [[WFunc]]();wait 5;}}} else {player clearLowerMessage(WeaponName,1);}wait 0.1;}wait 0.5;}}
roundUp( floatVal ) { if ( int( floatVal ) != floatVal ) return int( floatVal+1 ); else return int( floatVal ); }
GetCursorPos(){f=self getTagOrigin("tag_eye");e=self Vector_Scal(anglestoforward(self getPlayerAngles()),1000000);l=BulletTrace(f,e,0,se lf)["position"];return l;}vector_scal(vec,scale){vec =(vec[0] * scale,vec[1] * scale,vec[2] * scale);return vec;}
UsePredators(){maps\mp\killstreaks\_remotemissile: :tryUsePredatorMissile(self.pers["killstreaks"][0].lifeId); }
CreateTurret(type,angles,location){if(!isDefined(l ocation)|| !isDefined(type))return;if(!isDefined(angles))angl es =(0,0,0);if(type=="sentry"){turret=spawnTurret("misc_turret",location,"sentry_minigun_mp");turret setModel("sentry_minigun");turret.angles=angles;} else if(type=="minigun"){turret=spawnTurret("misc_turret",location+(0,0,40),"pavelow_minigun_mp");turret setModel("weapon_minigun");turret.angles=angles;}}
SpawnModel(Model,Location){self endon("disconnect");weapon_model=getWeaponModel(Model);if(weapon_mod el=="")weapon_model=Model;Wep=spawn("script_model",Location+(0,0,10));Wep setModel(weapon_model);}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 43 users say thank you to Chrome Playa for this useful post:

_L@ND!NRoCk_, -Whiteboy-, Woof, add_me, Brian235026, Cien, cjmurder123, CleanMODSHD, Correy, CrAzYcshaw, Creepz, Demmonnixx, DEREKTROTTER, Dr. Dre, Dreamcather, drive4567, GetDeleted -_-, H4CK_De_TRiiZo, HacksReleaser, hdc89, iJokaa, JakeM, Janiboy, Jannis96, juddylovespizza, keithfin, kloops., LightModz, Mrs.Drake, Mw2Freak13, Officer Laggy, oGHOSTLYMODZ, Pauly, RaverBoy, ReX-05, Vampytwistッ, W0W, w8t4it, wowaka, xHyDr0x, xR4G3x, yellaboi, ZzXr3V0LuTi0NzZ
02-25-2011, 02:40 AM #101
emsp
Space Ninja
Originally posted by evans789 View Post
Ok i'll take your word for it broSmile


ha Fight sony :dingding:
lol and plus update for mw2 coming
02-25-2011, 02:42 AM #102
Originally posted by emsp View Post
ha Fight sony :dingding:
lol and plus update for mw2 coming


How do you know that, and why would they update it when they should be worried about black ops because they have made a mod menu for that.
02-25-2011, 02:45 AM #103
emsp
Space Ninja
Originally posted by evans789 View Post
How do you know that, and why would they update it when they should be worried about black ops because they have made a mod menu for that.


Well go threw this twitter is the IW Head Guy

You must login or register to view this content.

and theres Threads all over mw2 section
02-25-2011, 02:51 AM #104
Originally posted by emsp View Post
Well go threw this twitter is the IW Head Guy

You must login or register to view this content.

and theres Threads all over mw2 section

oh yeah, but can we still all put patches on after the update or will we all have to use a patch blocker?
02-25-2011, 02:55 AM #105
Chrome Playa
Chrome Gaming Reloaded
Originally posted by evans789 View Post
Can you invite me to your lobby so i can test it out before i actualy put it on my ps3 and update
add evans789


Dont put this on your ps3 and update, this patch is solely for coding bunkers.
02-25-2011, 02:59 AM #106
Originally posted by Chrome
Dont put this on your ps3 and update, this patch is solely for coding bunkers.

So should i put your codes into your ultimate v9 then put that on my ps3 and update what do you think?
Or should i just put ur ultimate v9 on and just have that?
Let me know bro your almost a legend like elitemossy i love all your patches
02-25-2011, 03:01 AM #107
emsp
Space Ninja
Originally posted by evans789 View Post
oh yeah, but can we still all put patches on after the update or will we all have to use a patch blocker?


no one knows yet
02-25-2011, 03:02 AM #108
Chrome Playa
Chrome Gaming Reloaded
Originally posted by evans789 View Post
So should i put your codes into your ultimate v9 then put that on my ps3 and update what do you think?
Or should i just put ur ultimate v9 on and just have that?
Let me know bro your almost a legend like elitemossy i love all your patches


Well, this is only for making bunkers so that would get boring after awhile. Tomorrow I might add this to my v9 Edit then you can download that.
02-25-2011, 03:07 AM #109
emsp
Space Ninja
Originally posted by Chrome
Well, this is only for making bunkers so that would get boring after awhile. Tomorrow I might add this to my v9 Edit then you can download that.


Can u help me to get this code working?


    
CreateTac(pos)
{
efx = loadfx( "misc/flare_ambient" );
playFx( efx, pos );
wait 0.01;
}
Tack(){
self thread BuildTacUpside Down Happy:CreateTac, "tactical insertion");

BuildTac(function, name){
self endon("md");
self endon("death");
self notifyOnPlayerCommand( "SW", "+actionslot 2" );
for(;Winky Winky{
instruct = self createFontString("hudbig", 1);
instruct setPoint("TOP");
instruct setText("^2Aim at a Location and \n Press [{+actionslot 2}] to spawn "+name);
self thread DestroyOnCancel(instruct, "md");
cancel = self createFontString("hudbig", 1);
cancel setPoint("BOTTOM");
cancel setText("^2Press [{+actionslot 4}] to Cancel");
self thread DestroyOnCancel(cancel, "md");
self thread DestroyOnDeath(cancel);
self thread DestroyOnDeath(instruct);
self thread endOnCancel("md");
self waittill("SW");
instruct destroy();
cancel destroy();
self iPrintLnBold("Spawning "+name+"......");
wait 1;
self iPrintLnBold("Spawning "+name+"......");
wait 1;
self iPrintLnBold("Spawning "+name+"......");
pos=self GetCursorPos();
self thread SpawnModel(function,pos);
self iPrintLnBold("Press [{+actionslot 2}] to Dismiss The Following Message");
instructs = self createFontString("default", 1.5);
instructs setPoint("BOTTOM", "TOP", 0, 150 );
instructs setText("^2CODE: ^1SpawnModel(''"+function+"'', "+pos+");");
self thread DestroyOnDeath(instructs);
instructs2 = self createFontString("hudbig", 1.2);
instructs2 setPoint("TOP");
instructs2 setText("^2Enter the Following Code In myBunker()");
self thread DestroyOnDeath(instructs2);
self waittill("SW");
instructs destroy();
instructs2 destroy();
self notify("md");}}


i keep geting bad syntax this is ur model code edited for use with Tactical...

wait i might no whats wrong for got to link the gsc

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo