Post: PS3 Hawkin's Zombieland v0.8 RELEASE Call of Duty 4
04-17-2011, 11:59 PM #1
Hawkin
Lord of the Undead
(adsbygoogle = window.adsbygoogle || []).push({}); Here it is v1.4 of My Zombieland for Call of Duty 4.
NOW WITH ZIPLINES!

I have customized 13 of the Maps so far.

I will be updating this patch frequently, and I will put the newest (for now) in premium and the 2nd newest here. <- I will start doing this again after PSN is back up.

This patch was Created By me.
I don't have to share the Created By credit on this one but...

Special Thanks To:
DJQuicksilver From 7Sins for solid carepackages
zeroy.com The best Distionary of COD4 codes
Diddles the clown & Emanuel for showing me it was possible.
Backyard Awards, CrazyAsian, Hydro, and MFAssassin for play testing it over and over.
Mossy and Trotter.

Here are the instructions I included with the Patch.

Hawkin's Zombieland v1.0
INSTRUCTIONS:
To Turn on/off Anti-Join (Host) Go Prone and hold Melee(stab)
Press the Smoke Grenade Button to scrool through the Shop menu
Hold Frag Grenade Button to Buy you current Shop Menu Item.
Your Current Score is how much cash you have.
Ideal number of people to play with is 9. Do not play with more then 12 people or you will lag on most edited maps.
Hold ADS and Reload at the same time before the zombies are picked to go to Demo Mode. (host)
Edited Custom Maps:
Backlot (v1.5)
Bog
Bloc
Countdown
District
Downpour
Pipeline
Shipment
Showdown
Wetwork
Ambush
Crossfire

You must login or register to view this content.

You must login or register to view this content.

Here is a video of v1.4 Thanks to LJJP


Well it's been in Premium Only Long Enough.
Here is COD4 Zombieland v1.5.
You must login or register to view this content.

If you are feeling adventurous Here is an Untested v1.6, on PS3, but should work, of my COD4 Zombieland (This the fixes suicide glitch, Tells you your total kills and score at the end, and other fixes, and map edits.) (if you get a black screen, it means there was an compression error, Just Quit Game)
You must login or register to view this content.

This is not the newest version that I released for PC v1.9.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 38 users say thank you to Hawkin for this useful post:

.Andy, ☺ ☻☺ ☻☺ ☻☺ ☻☺ ☻, Adamâ„¢, Baby-panama, Buckethead-KFC, Cien, Correy, deroad, dfrost182, Diddles2Fresshh, dill1259, Docko412, dristoff, emmanuel_1985, Grandad Trotter, Gus Fring, hydro_122499, ImDUB, IXI-ML7OS-IXI, LetsGoGlobal, lildeg8, ljjp, lovebros, User23434, Mr.Amitoz, Mr.Hannu, mrkhlgt, New Account, ReMiiXs, REZNET \|/, Ricky41397, SavageRising, shawry, studman31, The InvadeR, Vultra, WEE_FITZYBOY, Xr3v0 HD
04-26-2011, 02:34 PM #29
Virus scan needed.
04-26-2011, 08:43 PM #30
IRiSe_GodFather
Was GodFatherIV
Originally posted by chris2k7sears View Post
Virus scan needed.


Viruses can NOT be a FAST FILE ( .FF ) so not really needed ( Just saying if you didnt know )
04-26-2011, 11:08 PM #31
Originally posted by GodFatherIV View Post
Viruses can NOT be a FAST FILE ( .FF ) so not really needed ( Just saying if you didnt know )


As stated by me in another thread:

Originally posted by another user
Regardless, its still needed, also its not hard to rename a virus or "hook" a virus to a .ff.
04-30-2011, 05:26 AM #32
lildeg8
im a ps3 hacker
ps3 suck. i wanna play this.
04-30-2011, 03:58 PM #33
Hawkin
Lord of the Undead
Originally posted by chris2k7sears View Post
As stated by me in another thread:


I just put a virus scan link on the first page of this thread. This is the link.

You must login or register to view this content.

The following user thanked Hawkin for this useful post:

chris2k7sears
04-30-2011, 04:02 PM #34
hydro_122499
Bounty hunter
Cod4 CarePackages That Are Solid + Code

This is from a Se7ensins member DJQUICKSILVER

All credit goes to DJQUICKSILVER

I know a lot of people want to know how to make bunkers and skybases like the ones in MW2 so i thought I would give a shot at coding solid models.
Unfortunately Call of Duty 4 doesn't support the ability to turn models solid so I have had to create a new function that allows you to create a barrier.

level.solid = spawn( "trigger_radius", ( 0, 0, 0 ), 0, 65, 30 ); //spawns the barrier
level.solid.origin = (0,0,0); //sets the location
level.solid.angles = (0, 90, 0); //sets the angles
level.solid setContents( 1 ); //sets the contents of the barrier

idk if this will help but u can try.
04-30-2011, 04:11 PM #35
Hawkin
Lord of the Undead
Originally posted by 122499 View Post

I found this and thought this might help.
All credit goes to DJQUICKSILVER
I know a lot of people want to know how to make bunkers and skybases like the ones in MW2 so i thought I would give a shot at coding solid models.
Unfortunately Call of Duty 4 doesn't support the ability to turn models solid so I have had to create a new function that allows you to create a barrier.

level.solid = spawn( "trigger_radius", ( 0, 0, 0 ), 0, 65, 30 ); //spawns the barrier
level.solid.origin = (0,0,0); //sets the location
level.solid.angles = (0, 90, 0); //sets the angles
level.solid setContents( 1 ); //sets the contents of the barrier

I posted this here because alot of people have mentioned it to me. So I'd figure I'd answer them all at once.
That code is the code I used. (I thanked djquicksilver in my post) His code is the reason why you can't just walk through the walls. It's called a Trigger Radius because it is an oval shaped force that you cannot pass through. So it can never fill only a rectangular shape, like you could in MW2. In the first code line above, 65 sets the radius of the oval (which is 10 bigger then the Care Package which is 55). 30 sets the height of the oval (the same height as a cp.) I tried a hundred different variations of those numbers and nothing worked better for a floor or a ramp. Walls I found worked better at 75, and 40 so you couldn't crawl under them.
The solution that would be equal to MW2, lies with the GetEntArray command, and the HQ box brushscript_model, but it's very complex. I am not familiar with the command, can't find much useful info about it. I spent alot of time going through GSC's just to find out as much as I did. I also isolated the code that creates a HQ box, which is solid. I haven't been working on it recently, I am waiting to see what happens with the PSN and the next PS3 update.

The following user thanked Hawkin for this useful post:

hydro_122499
04-30-2011, 04:19 PM #36
hydro_122499
Bounty hunter
k thx 4 the info i dident know, thot it would help but u r using it now lol !
and did u add anything new 2 the zombieland? and psn is up with in a week the psn sed when i called them.
04-30-2011, 10:46 PM #37
redraiderark
Are you high?
OMG i just love your patches. To bad you cant do mw2 ones anymore. Someone should try to do something with 1.12 patch like this

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo