


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!// ============== ALT GRENADES ==================
itemDef
{
name "player_alt_icon_3"
rect ( ALT_GRENADE_X + ( ALT_GRENADE_SPACING * 2 ) ) ALT_GRENADE_Y 24 24
forecolor 1 1 1 .6
exp forecolor A (3/dvarInt("origins_hud_alt_grenade_ammo"))
exp material( dvarString("hud_cymbal_monkey") )
// ownerdraw CG_OFFHAND_WEAPON_ICON_SMOKEFLASH
// background "hud_cymbal_monkey"
visible when ( dvarInt( "has_retriever" ) == 0 && dvarInt( "origins_hud_alt_grenade_ammo" ) >= 3 );
decoration
}
itemDef
{
name "player_alt_icon_2"
rect ( ALT_GRENADE_X + ALT_GRENADE_SPACING ) ALT_GRENADE_Y 24 24
forecolor 1 1 1 .8
exp forecolor A (2/dvarInt("origins_hud_alt_grenade_ammo"))
exp material( dvarString("hud_cymbal_monkey") )
// ownerdraw CG_OFFHAND_WEAPON_ICON_SMOKEFLASH
// background "hud_cymbal_monkey"
visible when ( dvarInt( "has_retriever" ) == 0 && dvarInt( "origins_hud_alt_grenade_ammo" ) >= 2 );
decoration
}
itemDef
{
name "player_alt_icon_1"
type ITEM_TYPE_OWNERDRAW
rect ALT_GRENADE_X ALT_GRENADE_Y 24 24
forecolor 1 1 1 1
exp forecolor A (1/dvarInt("origins_hud_alt_grenade_ammo"))
exp material( dvarString("hud_cymbal_monkey") )
// ownerdraw CG_OFFHAND_WEAPON_ICON_SMOKEFLASH
// background "hud_cymbal_monkey"
visible when ( dvarInt( "has_retriever" ) == 0 && dvarInt( "origins_hud_alt_grenade_ammo" ) >= 1 );
decoration
}
// ============== ALT GRENADES ==================
player_give_cymbal_monkey()
{
self giveweapon( "zombie_cymbal_monkey" );
self thread player_handle_cymbal_monkey();
self SetClientDvar("origins_hud_alt_grenade_ammo");
}
What version of his perks are you using?I'm using V5 with BO3 ammos and it is showing up to me,if you want I can send it to you and your problem will be solved
Did you edit it for it to work? But yeah, message me and let me take a look at your hud script.
Nope,just installed the perks and it was working
![]() | 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. |
i made my hud to be auto so you shouldnt need extra code for this and it should work
but also your using setclientdvar - picking which dvar - then "not setting a value"
( FIELD, VALUE )