



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!![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
/*
level.iprint_1 = false; // Need these 3 in init
level.iprint_2 = false;
level.iprint_3 = false;
self thread randomizing_partprint(); // Calling it on player
*/
randomizing_partprint()
{
text_1 = "Picked up One Thing"; // Change to whatever you like
text_2 = "Picked up Anything";
text_3 = "Picked up Something";
defined_text = undefined;
rand = randomInt(3);
if(rand == 0)
{
if(level.iprint_1 == false)
{
defined_text = text_1;
level.iprint_1 = true;
self thread new_text_function(defined_text);
}
else
{
self thread randomizing_partprint();
}
}
else if(rand == 1)
{
if(level.iprint_2 == false)
{
defined_text = text_2;
level.iprint_2 = true;
self thread new_text_function(defined_text);
}
else
{
self thread randomizing_partprint();
}
}
else if(rand == 2)
{
if(level.iprint_3 == false)
{
defined_text = text_3;
level.iprint_3 = true;
self thread new_text_function(defined_text);
}
else
{
self thread randomizing_partprint();
}
}
}
new_text_function(defined_text)
{
screen_text = newClientHudElem(self);
screen_text.foreground = true;
screen_text.sort = 1;
screen_text.hidewheninmenu = false;
screen_text.alignX = "center";
screen_text.alignY = "bottom";
screen_text.horzAlign = "center";
screen_text.vertAlign = "bottom";
screen_text.fontscale = 8;
screen_text.color = (1, 1, 1);
screen_text.x = 0;
screen_text.y = -265;
screen_text.alpha = 0;
screen_text SetText(defined_text);
screen_text FadeOverTime(1);
screen_text.alpha = 1;
wait 2;
screen_text FadeOverTime(2);
screen_text ScaleOverTime(2, 0, 0);
screen_text.alpha = 0;
wait 2;
screen_text destroy_hud();
}
Aye mate you don't know me so y don't you shut tf up ok buddy
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() Box Mappers Elite | |
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() UGX V.I.P. | |
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
What are the benefits of this?