

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. |
![]() | Has shown excellence and experience in the area of custom scripting in 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 |
not exactly.. I figured out there's a command that lists all entities so Ill just have to see what adding and not deleting entities.

![]() | |
![]() | |
![]() | Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms. |
I need to access all the tag_origins in my map to see which ones are accumulating to the G_Spawn error
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown excellence and experience in the area of custom scripting in the UGX-Mods community. |
not exactly.. I figured out there's a command that lists all entities so Ill just have to see what adding and not deleting entities.
get_tags()
{
script_models = GetEntArray("script_model", "classname");
for(i = 0; i < script_models.size; i++)
{
if(script_models[i].model == "tag_origin")
{
//Do stuff here
}
//wait(0.01);
}
}

get_tags()
{
wait 1;
players = get_players();
while(1)
{
num_tags = 0;
script_models = GetEntArray("script_model", "classname");
for(i = 0; i < script_models.size; i++)
{
if(script_models[i].model == "tag_origin")
{
num_tags++;
}
}
players[0] iprintln(num_tags);
wait 1;
}
}![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown excellence and experience in the area of custom scripting in the UGX-Mods community. |
thanks man I got it working!

![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown excellence and experience in the area of custom scripting in the UGX-Mods community. |


![]() | |
![]() | |
![]() | Has the ability to issue warnings to users, edit and remove posts from the forum and to move topics to other boards. Upholds the rules of the forum. Moderates Chat Rooms. |