



Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!Hey guys, here's a few of my custom perks i made. These perks i call "cells" don't go away on down or death. It's a purchasable buff that lasts for the rest of the game.Spoiler: click to open...[close]
If anyone want's a specific part of the script like how i made the thunder nade's work ill give it to you.
Was wondering, what did you do for the scrolling text? I remember seeing that from bo2 but I never ended up doing any scripting on that game so I didn't figure out how they did it.
Is it a client announcement or something?
function display_thunder_nade()
{
self.diamond_text = NewClientHudElem( self );
self.diamond_text.alignX = "center";
self.diamond_text.alignY = "middle";
self.diamond_text.horzAlign = "center";
self.diamond_text.vertAlign = "middle";
self.diamond_text.foreground = true;
self.diamond_text.font = "default";
self.diamond_text.fontScale = 2;
self.diamond_text.color = ( 1.0, 1.0, 1.0 );
self.diamond_text SetText("Charged Nade's Cell - Throw a nade...");
self.diamond_text setCOD7DecodeFX(100, 10000, 500);
wait(20);
self.diamond_text Destroy();
}
self.diamond_text setCOD7DecodeFX(100, 10000, 500);
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
How would the thunder nades work with widows wine? Does it give the player the thunder nades, or does the script just wait for the player to throw a grenade then play the effect?