UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

[Drag-and-Drop] Packs Zombies - Update 14/04/2016

HOT
broken avatar :(
Created 9 years ago
by shippuden1592
0 Members and 1 Guest are viewing this topic.
16,904 views
broken avatar :(
×
broken avatar :(
Location: mxGuanajuato
Date Registered: 5 May 2013
Last active: 9 days ago
Posts
225
Respect
Forum Rank
Mr. Elemental
Primary Group
Member
My Contact & Social Links
More
Personal Quote
If you do not take risks, you can not create a fut
×
shippuden1592's Groups
Hello there people here I bring different models of zombies of Bo1 and Bo2.

Simply drag the files that come in the rar to your mods folder at:

C:\Users\*Usuario*\AppData\Local\Activision\CoDWaW\mods\mapname

and replaces the "localized_mapname" with the name of your map. example "localized_nazi_zombie_cobos".


BO1

Five




Ascension



ugx-mods.com


Call of the Dead



www.mediafire.com


Comes including romero boss, if you plan to use this is the name of their models:
Note: The model of the boss is already included in the .ff file there is no need for it on your mod.csv


Code Snippet
Plaintext
bo1_c_zom_george_romero_light_fb
bo1_c_zom_george_romero_zombiefied_fb

Shangri la




They are also included:

-Napalm (models name):


Code Snippet
Plaintext
bo1_c_viet_zombie_napalm
bo1_c_viet_zombie_napalm_head

-Shrieker Zombie (models name):

Code Snippet
Plaintext
bo1_c_viet_zombie_sonic_bandanna
bo1_c_viet_zombie_sonic_body
bo1_c_viet_zombie_sonic_g_headoff
bo1_c_viet_zombie_sonic_head

Go to _zombiemode_spawner and search function "zombie_head_gib (attacker)" and replace it with this:

Code Snippet
Plaintext
zombie_head_gib( attacker )
{
if ( is_german_build() )
{
return;
}

if( IsDefined( self.head_gibbed ) && self.head_gibbed )
{
return;
}

if( !isDefined( level.head_gibs_this_frame ) )
{
level thread cap_zombie_head_gibs();
}

if( level.head_gibs_this_frame >= level.max_head_gibs_per_frame )
{
return;
}

level.head_gibs_this_frame++;

self.head_gibbed = true;
self zombie_eye_glow_stop();

size = self GetAttachSize();
for( i = 0; i < size; i++ )
{
model = self GetAttachModelName( i );
if( IsSubStr( model, "head" ) )
{
// SRS 9/2/2008: wet em up
self thread headshot_blood_fx();
precacheModel("bo1_c_viet_zombie_nohat");
self.hatmodel_launch = spawn("script_model",self.origin + (0,0,64));
self.hatmodel_launch setmodel("bo1_c_viet_zombie_nohat");
self.hatmodel_launch PhysicsLaunch( self.hatmodel_launch.origin, (0,0,5000) );
self.hatmodel_launch thread timed_delete(5);

if(self.hatModel == "bo1_c_viet_zombie_nva1_gasmask")
self Detach("bo1_c_viet_zombie_nva1_gasmask", "" , true);
else
self Detach("bo1_c_viet_zombie_nohat", "" , true);

self play_sound_on_ent( "zombie_head_gib" );

self Detach( model, "", true );
self Attach( "char_ger_honorgd_zomb_behead", "", true );
break;
}
}

self thread damage_over_time( self.health * 0.2, 1, attacker );
}

timed_delete(time)
{
wait time;
self delete();
}

Moon



ugx-mods.com


UGX Version

www.mediafire.com



BO2


Tranzit



ugx-mods.com


Nuketown



www.mediafire.com


go to _zombiemode_spawner function in "zombie_head_gib( attacker )" replaces this

Code Snippet
Plaintext
self Attach( "char_ger_honorgd_zomb_behead", "", true );

for all this

Code Snippet
Plaintext
if(self.model == "bo2_c_zom_dlc0_zom_haz_body1")
self Attach( "bo2_c_zom_dlc0_zom_haz_body1_behead", "", true );

else if(self.model == "bo2_c_zom_dlc0_zom_haz_body2")
self Attach( "bo2_c_zom_dlc0_zom_haz_body2_behead", "", true );

else if(self.model == "bo2_c_zom_dlc0_zom_solciv_body1")
self Attach( "bo2_c_zom_dlc0_zom_solciv_body1_behead", "", true );

else if(self.model == "bo2_c_zom_dlc0_zom_sol_body1")
self Attach( "bo2_c_zom_dlc0_zom_sol_body1_behead", "", true );

else
self Attach( "char_ger_honorgd_zomb_behead", "", true );

Die Rise



www.mediafire.com


Mod of the dead - Version UGX - Coming soon



Buried




Replace all "zombie_head_gib" function with this:

Code Snippet
Plaintext
zombie_head_gib( attacker )
{
if ( is_german_build() )
{
return;
}

if( IsDefined( self.head_gibbed ) && self.head_gibbed )
{
return;
}

if( !isDefined( level.head_gibs_this_frame ) )
{
level thread cap_zombie_head_gibs();
}

if( level.head_gibs_this_frame >= level.max_head_gibs_per_frame )
{
return;
}

level.head_gibs_this_frame++;

self.head_gibbed = true;
self zombie_eye_glow_stop();

size = self GetAttachSize();
for( i = 0; i < size; i++ )
{
model = self GetAttachModelName( i );
if( IsSubStr( model, "head" ) )
{
// SRS 9/2/2008: wet em up
self thread headshot_blood_fx();

precacheModel("bo2_c_zom_zombie_buried_civilian_hats1");
precacheModel("bo2_c_zom_zombie_buried_civilian_hats2");
precacheModel("bo2_c_zom_zombie_buried_civilian_hats3");
precacheModel("bo2_c_zom_zombie_buried_civilian_hats4");
precacheModel("bo2_c_zom_zombie_buried_miner_hats1");
precacheModel("bo2_c_zom_zombie_buried_miner_hats2");
precacheModel("bo2_c_zom_zombie_buried_civilian_nohat");

self.hatmodel_launch = spawn("script_model",self.origin + (0,0,64));
self.hatmodel_launch setmodel(self.hatModel);
self.hatmodel_launch PhysicsLaunch( self.hatmodel_launch.origin, (0,0,5000) );
self.hatmodel_launch thread timed_delete(5);

self Detach(self.hatModel, "" , true);

self play_sound_on_ent( "zombie_head_gib" );

self Detach( model, "", true );

if(self.model == "bo2_c_zom_zombie_buried_sgirl_body1" || self.model == "bo2_c_zom_zombie_buried_sgirl_body2" || self.model == "bo2_c_zom_zombie_buried_sgirl_body3")
self Attach( "bo2_c_zom_zombie_buried_sgirl_g_behead", "", true );
else
self Attach( "bo2_c_zom_zombie_buried_civilian_g_behead", "", true );
break;
}
}

self thread damage_over_time( self.health * 0.2, 1, attacker );
}

timed_delete(time)
{

wait time;

self delete();

}


Origins - Coming soon



Note.- If you want to combine any of these packs with the waw zombies do the following:
Open your namedrop.iwd and seek "AItype" folder in there open the "axis_zombie_ger_ber_sshonor.gsc" file
In the switch where "codescripts \ character :: get_random_character (3)" says depending on the number you have total 2.
And add two case more like this:


Code Snippet
Plaintext
case 0:
character\char_ger_honorguard_zombies::main();
break;
  case 1:
character\char_ger_honorguard2_zombies::main();
break;

Remember that the number of the case will depend on the above.

And add this:


Code Snippet
Plaintext
character\char_ger_honorguard_zombies::precache();
character\char_ger_honorguard2_zombies::precache();

under another "character".

Note.- If you use any of the models also thank bo2 "deper" since I spend the models.

Thanks to
deper (by models)
jei9363
ConvictioNDR

Any questions or comments Leave him mistake !!!!!
Last Edit: April 14, 2016, 09:14:05 pm by shippuden1592
broken avatar :(
×
broken avatar :(
Location: usUnited States
Date Registered: 7 March 2014
Last active: 2 months ago
Posts
1,191
Respect
Forum Rank
Zombie Colossus
Primary Group
UGX Site Moderator
My Groups
More
My Contact & Social Links
More
×
MZslayer11's Groups
UGX Site Moderator Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms.
MZslayer11's Contact & Social LinksMZslayer11Service_Code_30#2655
Good work on these! Nice to see them all organized in one place :D
broken avatar :(
×
broken avatar :(
Location: usnj
Date Registered: 3 March 2014
Last active: 5 years ago
Posts
11
Respect
Forum Rank
Legless Crawler
Primary Group
Member
×
zombiekill4's Groups
zombiekill4's Contact & Social Links
I love this thank u so much can u help (Comes including romero boss, if you plan to use this is the name of their models:) where do i put the code thank u for your help.
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
Signature
If you want scripts / features made for you, then contact me by PM or email / skype etc
it will cost you tho so if you have no intention of reciprocating don't even waste my time ;)
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
you would need to script him yourself. This is just the names of the models which are included in the drag and drop. Just the models, Im guessing no anims or scripts setting him up

If you just want Romeros as regular zombies? Then you would declare it in the xmodelaliases for the zombies
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 2 April 2014
Last active: 2 years ago
Posts
481
Respect
Forum Rank
Perk Hacker
Primary Group
Donator ♥
My Groups
More
My Contact & Social Links
More
Personal Quote
If it's not perfect, you'll never see it.
Signature
Learn by doing, not copy and pasting.

Enjoy my 2015 contest map, a simple map with bo1-bo2 features
http://ugx-mods.com/forum/index.php?topic=14968.msg149200#
×
Centric's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Centric's Contact & Social Linkscentricccentric_
would it be too much trouble to upload a second set of packs replacing Japanese zombies instead of the nazis? I specificly need tranzit to be Japanese.
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
you can do that. The pack contains the models, its only a minor change to adjust it to change the other set of zombies

Honourguard - 1 type
Honourguard2 - other set

found in xmodelaliases
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 2 April 2014
Last active: 2 years ago
Posts
481
Respect
Forum Rank
Perk Hacker
Primary Group
Donator ♥
My Groups
More
My Contact & Social Links
More
Personal Quote
If it's not perfect, you'll never see it.
×
Centric's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Centric's Contact & Social Linkscentricccentric_
you can do that. The pack contains the models, its only a minor change to adjust it to change the other set of zombies

Honourguard - 1 type
Honourguard2 - other set

found in xmodelaliases

Ok, I thought it was more complex then that since I asumed these packs worked by renaming the models to the nazis models.
broken avatar :(
×
broken avatar :(
Location: gbMilton Keynes
Date Registered: 17 January 2014
Last active: 4 years ago
Posts
6,877
Respect
1,004Add +1
Forum Rank
Immortal
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
×
Harry Bo21's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Harry Bo21's Contact & Social Links[email protected]HarryBo21HarryBo000
hmm... i dont think so, but potentially they might?

Ill download one and check later
broken avatar :(
×
broken avatar :(
Location: caOntario
Date Registered: 8 July 2014
Last active: 2 years ago
Posts
93
Respect
Forum Rank
Rotting Walker
Primary Group
Member
Signature
- Yonkers 1v
×
Yonkers 1v's Groups
Yonkers 1v's Contact & Social Links
i noticed it uses the nazi_zombie_mapname_patch.ff and im already using that for bams perks any ideas how to use both?, the other drang and drop zombie mods allow me to use them with bams perks.
Last Edit: December 23, 2014, 04:28:07 am by Yonkers 1v
broken avatar :(
×
broken avatar :(
Location: mxGuanajuato
Date Registered: 5 May 2013
Last active: 9 days ago
Posts
225
Respect
Forum Rank
Mr. Elemental
Primary Group
Member
My Contact & Social Links
More
Personal Quote
If you do not take risks, you can not create a fut
×
shippuden1592's Groups
i noticed it uses the nazi_zombie_mapname_patch.ff and im already using that for bams perks any ideas how to use both?, the other drang and drop zombie mods allow me to use them with bams perks.

Maybe not explain above but drag-and-drops come in two forms to use one for those using UGX mods they would use the nazi_zombie_mapname_patch.ff. And those who are not using the mods UGX can use both nazi_zombie_mapname_patch.ff as localized_mapname but only one, if you are using the perks of bams uses localized_mapname to your map.

I love this thank u so much can u help (Comes including romero boss, if you plan to use this is the name of their models:) where do i put the code thank u for your help.


Harry said it well, just drop comes in the format specified what that model can be treated as if it were a normal zombie adding it to other files or treat it as zombie boss, there is a tuto on how to implement the zombie head to your map

would it be too much trouble to upload a second set of packs replacing Japanese zombies instead of the nazis? I specificly need tranzit to be Japanese.


You can try to rename the files in the folder are AItype both .gsc as .csv called "axis_zombie_ger_ber_sshonor" by this name:

"axis_zombie_jp_swamp" renames both with the new name.

If you try to publish it I run to see if it works that way.
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 14 September 2013
Last active: 4 years ago
Posts
1,895
Respect
Forum Rank
Zombie Destroyer
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
Personal Quote
BE ORIGINAL
Signature
×
MakeCents's Groups
Community Mapper Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
Ahhh, how you tease me with the broken moon zombies dl... Is this temp or just broken for me by chance?

Last Edit: December 23, 2014, 06:30:56 pm by MakeCents
broken avatar :(
×
broken avatar :(
Location: mxGuanajuato
Date Registered: 5 May 2013
Last active: 9 days ago
Posts
225
Respect
Forum Rank
Mr. Elemental
Primary Group
Member
My Contact & Social Links
More
Personal Quote
If you do not take risks, you can not create a fut
×
shippuden1592's Groups
Ahhh, how you tease me with the broken moon zombies dl... Is this temp or just broken for me by chance?

(Image removed from quote.)

Link corrected, please advise !!!!
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 14 September 2013
Last active: 4 years ago
Posts
1,895
Respect
Forum Rank
Zombie Destroyer
Primary Group
Community Scripter
My Groups
More
My Contact & Social Links
More
Personal Quote
BE ORIGINAL
×
MakeCents's Groups
Community Mapper Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
Link corrected, please advise !!!!

Lol. I thought it was a separate dl with space suits, lol, doh. Thank you very much. These packs are awesome.
Last Edit: December 23, 2014, 06:42:46 pm by MakeCents
broken avatar :(
×
broken avatar :(
Location: rueurope
Date Registered: 2 January 2012
Last active: 2 months ago
Posts
303
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
×
ville88's Groups
We look forward to Shangri-La pack)))
broken avatar :(
×
broken avatar :(
Location: mxGuanajuato
Date Registered: 5 May 2013
Last active: 9 days ago
Posts
225
Respect
Forum Rank
Mr. Elemental
Primary Group
Member
My Contact & Social Links
More
Personal Quote
If you do not take risks, you can not create a fut
×
shippuden1592's Groups
We look forward to Shangri-La pack)))

It will be ready on Friday or earlier.

 
Loading ...