

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!How do I select individual objects in a prefab?
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community. |
![]() | Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager. |
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
//In your perk_name.gsc add these lines in the give_custom_perk() function
//shown below
function give_custom_perk(){
if(!isdefined(self.disabled_perks))
self.disabled_perks = [];
self.disabled_perks[PERK_FREEZE] = true; //Change PERK_FREEZE to the caps name you gave it in your
//perk_name.gsh file. By default in this tutorial it's called PERK_CUSTOM_PERK
#define PERK_FREEZE "specialty_freeze" // CHANGE THIS TO PERKNAME //This line in my gsh file for example
}
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | 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. |