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

DG-2 as Death Machine

HOT
broken avatar :(
Created 7 years ago
by EmpGeneral
0 Members and 1 Guest are viewing this topic.
8,583 views
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 4 weeks ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
Signature
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
Hello guys.So I'm making a zombie map and I want to put the DG-2 as death machine,just like on Call of the Dead.If anyone knows please help

Last Edit: November 01, 2016, 01:08:08 pm by EmpGeneral
This topic contains a post which is marked as the Best Answer. Click here to view it.
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 3 December 2015
Last active: 7 years ago
Posts
87
Respect
Forum Rank
Rotting Walker
Primary Group
Member
My Contact & Social Links
More
Personal Quote
So funny
×
yomomdog8010's Groups
yomomdog8010's Contact & Social Linksawsoness11yomomdog8010
As far as I know, you probably have to copy the zombiemode_powerups.gsc into your mod. then you would have to edit the script to add a model, fx, and to give you the weapon, and also add the powerup itself. You are also going to need and image for the drop when you get it, just like double points and insta kill. You will also need the model. i do not know how to script so you'll have to go to someone else for that.
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 4 weeks ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
As far as I know, you probably have to copy the zombiemode_powerups.gsc into your mod. then you would have to edit the script to add a model, fx, and to give you the weapon, and also add the powerup itself. You are also going to need and image for the drop when you get it, just like double points and insta kill. You will also need the model. i do not know how to script so you'll have to go to someone else for that.

This part I kinda know,the problem is the script,I don't understand nothing about it
broken avatar :(
×
broken avatar :(
Location: gb
Date Registered: 13 March 2016
Last active: 4 years ago
Posts
76
Respect
Forum Rank
Rotting Walker
Primary Group
Member
×
AdvancedDecay's Groups
AdvancedDecay's Contact & Social Links
hi if you could post your deathmachine script and your zombiemode_powerups I could have a look for u and edit it using pastebin
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 4 weeks ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
hi if you could post your deathmachine script and your zombiemode_powerups I could have a look for u and edit it using pastebin

Actually,I don't have a death machine script,because I know nothing about scripting,but I can get one from some other custom maps by opening it IWD fle
Marked as best answer by EmpGeneral 7 years ago
broken avatar :(
×
broken avatar :(
Location: deDortmund
Date Registered: 20 December 2015
Last active: 5 months ago
Posts
307
Respect
Forum Rank
Perk Hacker
Primary Group
Community Scripter
My Groups
More
Personal Quote
Payback
Signature
Tears Of The Fallen | Join the project https://discord.gg/8gDNQRj
×
fanmagic's Groups
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
fanmagic's Contact & Social LinksTears Of The Fallen
Open _zombiemode_powerups.gsc
search for this
   
Code Snippet
Plaintext
add_zombie_powerup( "carpenter",  	"zombie_carpenter",	&"ZOMBIE_POWERUP_MAX_AMMO");
and add this under it
   
Code Snippet
Plaintext
add_zombie_powerup( "dg", "weapon_usa_tesla", &"DG" );
go to the fuction powerup_grab() and search for this
Code Snippet
Plaintext
case "carpenter":
level thread start_carpenter( self.origin );
players[i] thread powerup_vo("carpenter");
break;
and add this under it
Code Snippet
Plaintext
case "dg":
players[i] thread dg_drop( self );
        break;
go to the fuction nuke_flash() and add this under it
   
Code Snippet
Plaintext
dg_drop( drop_item, player_won )
{
primaryWeapons = self GetWeaponsListPrimaries();
for( i = 0; i < primaryWeapons.size; i++ )
{
self TakeWeapon( primaryWeapons[i] );
}
self giveWeapon( "tesla_gun" );
self switchToWeapon( "tesla_gun" );
self GiveMaxAmmo( "tesla_gun" );
wait (30);
self TakeWeapon("tesla_gun");
self giveWeapon(primaryWeapons[i]);
}
open dlc3_code.gsc and find the function include_powerups() and add this to it
   
Code Snippet
Plaintext
 include_powerup( "dg" );
broken avatar :(
×
broken avatar :(
Location: gb
Date Registered: 13 March 2016
Last active: 4 years ago
Posts
76
Respect
Forum Rank
Rotting Walker
Primary Group
Member
×
AdvancedDecay's Groups
AdvancedDecay's Contact & Social Links
Open _zombiemode_powerups.gsc
search for this
   
Code Snippet
Plaintext
add_zombie_powerup( "carpenter",  	"zombie_carpenter",	&"ZOMBIE_POWERUP_MAX_AMMO");
and add this under it
   
Code Snippet
Plaintext
add_zombie_powerup( "dg", "weapon_usa_tesla", &"DG" );
go to the fuction powerup_grab() and search for this
Code Snippet
Plaintext
case "carpenter":
level thread start_carpenter( self.origin );
players[i] thread powerup_vo("carpenter");
break;
and add this under it
Code Snippet
Plaintext
case "dg":
players[i] thread dg_drop( self );
        break;
go to the fuction nuke_flash() and add this under it
   
Code Snippet
Plaintext
dg_drop( drop_item, player_won )
{
primaryWeapons = self GetWeaponsListPrimaries();
for( i = 0; i < primaryWeapons.size; i++ )
{
self TakeWeapon( primaryWeapons[i] );
}
self giveWeapon( "tesla_gun" );
self switchToWeapon( "tesla_gun" );
self GiveMaxAmmo( "tesla_gun" );
wait (30);
self TakeWeapon("tesla_gun");
self giveWeapon(primaryWeapons[i]);
}
open dlc3_code.gsc and find the function include_powerups() and add this to it
   
Code Snippet
Plaintext
 include_powerup( "dg" );

Are You God?! that exactly what I was aout to type... thanks for helping me again
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 4 weeks ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
Open _zombiemode_powerups.gsc
search for this
   
Code Snippet
Plaintext
add_zombie_powerup( "carpenter",  	"zombie_carpenter",	&"ZOMBIE_POWERUP_MAX_AMMO");
and add this under it
   
Code Snippet
Plaintext
add_zombie_powerup( "dg", "weapon_usa_tesla", &"DG" );
go to the fuction powerup_grab() and search for this
Code Snippet
Plaintext
case "carpenter":
level thread start_carpenter( self.origin );
players[i] thread powerup_vo("carpenter");
break;
and add this under it
Code Snippet
Plaintext
case "dg":
players[i] thread dg_drop( self );
        break;
go to the fuction nuke_flash() and add this under it
   
Code Snippet
Plaintext
dg_drop( drop_item, player_won )
{
primaryWeapons = self GetWeaponsListPrimaries();
for( i = 0; i < primaryWeapons.size; i++ )
{
self TakeWeapon( primaryWeapons[i] );
}
self giveWeapon( "tesla_gun" );
self switchToWeapon( "tesla_gun" );
self GiveMaxAmmo( "tesla_gun" );
wait (30);
self TakeWeapon("tesla_gun");
self giveWeapon(primaryWeapons[i]);
}
open dlc3_code.gsc and find the function include_powerups() and add this to it
   
Code Snippet
Plaintext
 include_powerup( "dg" );


OMG!THANK YOU!Gonna test it right now!
broken avatar :(
×
broken avatar :(
Location: deDortmund
Date Registered: 20 December 2015
Last active: 5 months ago
Posts
307
Respect
Forum Rank
Perk Hacker
Primary Group
Community Scripter
My Groups
More
Personal Quote
Payback
×
fanmagic's Groups
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
fanmagic's Contact & Social LinksTears Of The Fallen
Are You God?! that exactly what I was aout to type... thanks for helping me again
I'm a God? Ok :D
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 4 weeks ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
I'm a God? Ok :D

It works man!!Thanks  :D :D.But just one thing:When you get the drop you can't change to your current weapons and when the powerup finish it take all of your weapons
broken avatar :(
×
broken avatar :(
Location: deDortmund
Date Registered: 20 December 2015
Last active: 5 months ago
Posts
307
Respect
Forum Rank
Perk Hacker
Primary Group
Community Scripter
My Groups
More
Personal Quote
Payback
×
fanmagic's Groups
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
fanmagic's Contact & Social LinksTears Of The Fallen
It works man!!Thanks  :D :D.But just one thing:When you get the drop you can't change to your current weapons and when the powerup finish it take all of your weapons
I thougth that you would like to only have the DG for 30s lol
Do you get your old weapons back after the drop finished?
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 4 weeks ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
I thougth that you would like to only have the DG for 30s lol
Do you get your old weapons back after the drop finished?

No,thats what I said.The drop works fine,it just have this bug.Any idea how to fox it?
broken avatar :(
×
broken avatar :(
Location: deDortmund
Date Registered: 20 December 2015
Last active: 5 months ago
Posts
307
Respect
Forum Rank
Perk Hacker
Primary Group
Community Scripter
My Groups
More
Personal Quote
Payback
×
fanmagic's Groups
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
fanmagic's Contact & Social LinksTears Of The Fallen
No,thats what I said.The drop works fine,it just have this bug.Any idea how to fox it?
So if you take the drop you would like to replace your current weapon for the DG for the rest of the game? I'm a bit confused  :o
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 4 weeks ago
Posts
312
Respect
Forum Rank
Perk Hacker
Primary Group
Member
My Contact & Social Links
More
×
EmpGeneral's Groups
EmpGeneral's Contact & Social LinksldraweEletricStorm
So if you take the drop you would like to replace your current weapon for the DG for the rest of the game? I'm a bit confused  :o

No man,the death machine gives you a minigu(or a DG2) but you can alternate to your old weapons,and when the powerup finish you get your weapons back.And that's is not happening in my map,I mean,the DG2 "steal"  your guns
Last Edit: December 09, 2016, 08:21:21 pm by EmpGeneral
broken avatar :(
×
broken avatar :(
Location: us
Date Registered: 28 January 2016
Last active: 3 years ago
Posts
25
Respect
Forum Rank
Legless Crawler
Primary Group
Member
My Contact & Social Links
More
×
ItsLowrider5's Groups
ItsLowrider5's Contact & Social LinksItsLowrider5ItsLowrider5ItsLowrider5
Open _zombiemode_powerups.gsc
search for this
   
Code Snippet
Plaintext
add_zombie_powerup( "carpenter",  	"zombie_carpenter",	&"ZOMBIE_POWERUP_MAX_AMMO");
and add this under it
   
Code Snippet
Plaintext
add_zombie_powerup( "dg", "weapon_usa_tesla", &"DG" );
go to the fuction powerup_grab() and search for this
Code Snippet
Plaintext
case "carpenter":
level thread start_carpenter( self.origin );
players[i] thread powerup_vo("carpenter");
break;
and add this under it
Code Snippet
Plaintext
case "dg":
players[i] thread dg_drop( self );
        break;
go to the fuction nuke_flash() and add this under it
   
Code Snippet
Plaintext
dg_drop( drop_item, player_won )
{
primaryWeapons = self GetWeaponsListPrimaries();
for( i = 0; i < primaryWeapons.size; i++ )
{
self TakeWeapon( primaryWeapons[i] );
}
self giveWeapon( "tesla_gun" );
self switchToWeapon( "tesla_gun" );
self GiveMaxAmmo( "tesla_gun" );
wait (30);
self TakeWeapon("tesla_gun");
self giveWeapon(primaryWeapons[i]);
}
open dlc3_code.gsc and find the function include_powerups() and add this to it
   
Code Snippet
Plaintext
 include_powerup( "dg" );
We have a problem here: When the powerup finishes, it doesn't return your original weapons

 
Loading ...