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,591 views
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
the "lightning Bolt" drop as its "actually" known, doesnt act that way

You keep it until it runs out of ammo, and the shader fades depending on how much ammo you have - it does not just last 30 seconds
broken avatar :(
×
broken avatar :(
Location: nlApeldoorn
Date Registered: 17 December 2013
Last active: 1 year ago
Posts
1,187
Respect
1,404Add +1
Forum Rank
Zombie Colossus
Primary Group
Community Scripter Elite
My Groups
More
My Contact & Social Links
More
Personal Quote
It aint much, if it aint Dutch
Signature
×
BluntStuffy's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Community Scripter Elite Has shown excellence and experience in the area of custom scripting in the UGX-Mods community.
Oil Rig Beta Access
Oil Rig Beta Access
BluntStuffy's Contact & Social LinksBluntstuffy@BluntZombieBluntStuffyStuffyZombie
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");
for( i = 0; i < primaryWeapons.size; i++ )                          // you forgot this for() loop
{
self giveWeapon(primaryWeapons[i]);
}
}

Some things can go wrong with this, like if you pick up a second drop you will end up with the Tesla gun. Or if you pick it up while drinking a perk you will lose your guns.. Stuff like that
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
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
He's saying he wants it to be like a normal Death Machine drop, where it lasts for 30 seconds and then when it finishes it gives your guns back. The problem is that it doesn't give your weapons back when it finishes.
broken avatar :(
×
broken avatar :(
Location: br
Date Registered: 7 May 2015
Last active: 1 month 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
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");
for( i = 0; i < primaryWeapons.size; i++ )                          // you forgot this for() loop
{
self giveWeapon(primaryWeapons[i]);
}
}

Some things can go wrong with this, like if you pick up a second drop you will end up with the Tesla gun. Or if you pick it up while drinking a perk you will lose your guns.. Stuff like that

Thanks for this Blunt!I'm going to test it and see if the bugs you mentioned really happen.Just a question:Is there a way to add a shader to this powerup?
broken avatar :(
×
broken avatar :(
Location: fi
Date Registered: 25 June 2013
Last active: 8 months ago
Posts
3,997
Respect
1,024Add +1
Forum Rank
Eviscerator
Primary Group
UGX V.I.P.
My Groups
More
My Contact & Social Links
More
×
HitmanVere's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
UGX V.I.P.
UGX V.I.P.
Community Mapper Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager.
BO3 Modtools Alpha
BO3 Modtools Alpha
This user has access to the Black Ops 3 Modtools Alpha
Thanks for this Blunt!I'm going to test it and see if the bugs you mentioned really happen.Just a question:Is there a way to add a shader to this powerup?

Easiest way would be taking offsets from BO1 and do setShader on that location, I can take a look at it tomorrow

 
Loading ...