



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!action
{
scriptmenuresponse "MY_RESPONSE";
}
for(;;)
{
player waittill("menureponse", menu, reponse);
if(menu == "MY_MENU")
{
IPrintLn("Found My Menu");
if(response == "MY_RESPONSE")
IPrintLN("Found My Response");
}
}
for(;;)
{
player waittill("menureponse", menu, reponse);
if(response == "MY_RESPONSE")
IPrintLN("Found My Response");
}
player OpenMenu("MY_MENU");
player CloseMenu();
player CloseInGameMenu();
![]() | |
![]() | 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. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
What menu are you doing it from a scriptmenu?
Are you then applying it to the player and running it in the background?
![]() | |
![]() | 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. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
level thread onPlayerConnect
remove your weird logic check for onPlayerConnect host can be checked by
player GetEntityNumber() == 0
Give it a try instead.
![]() | |
![]() | 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. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
changed my logic to use this and i get the same result menu opens but buttons dont work (btw im checking console for prints since when in menu you cant see IPrintLn's, thought i should point this out)
anyways one thing i have found is when i press ESC it closes my menu and the scriptmenureponse in onClose is sent and my gsc prints "Found My Menu" so i might have fucked up with buttons
heres my menu might help and see if im doing something wrong