


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!![]() | Has released one or more maps to the UGX-Mods community. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
hi basically i made a ee with a ray gun reward i just need to know is there a way to hide the 3 unused trigger rewards in solo and the same for 2 players hide the other 2 then for 3 players hide one of the reward triggers cause at the moment I keep getting the hint hand where the other rewards are so I need a little help hiding then until theres 2 3 or 4 players in game
soul_chest_reward()
{
self endon( "took_gun" );
self endon( "disconnect" );
reward_trigger = getentarray( "soul_chest_reward" , "targetname" );
players = get_players();
for(i=0;i<players.size;i++)
{
players[i].free_ray_gun = false;
reward_trigger[i] enable_trigger();
reward_trigger[i] thread reward_trigger( );
}
}your_function()
{
your_trigger = getent("your_trigger ","targetname");
your_trigger setCursorHint("HINT_NOICON");
// replace all occurrences of your_trigger with the targetname you gave your trigger
}