
Posts
334
Respect
21Add +1
Forum Rank
Perk Hacker
Primary Group
Donator ♥
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. |

power_switch_1()
{
trig = getent("power_switch_1", "targetname");
trig.is_available = 1;
trig.zombie_cost = 0; //doesn't cost anything... for now
trig sethintstring("Press & hold &&1 to turn perks on");
while(1)
{
trig waittill( "trigger", who );
{
if( is_player_valid( who ) )
{
if( who.score >= trig.zombie_cost )
{
level notify("juggernog_on");
level notify("sleight_on");
trig delete();
}
}
}
}
}juggernog_onsleight_onrevive_ondoubletap_on