Go here:
PHP Code:
public zp_user_infected_post(player, infector)
{
if (zp_get_user_zombie_class(player) == g_zclass_Leap)
g_hasLeap[player] = true
return PLUGIN_CONTINUE
}
And change it for this:
PHP Code:
public zp_user_infected_post(player, infector)
{
if (zp_get_user_zombie_class(player) == g_zclass_Leap && is_user_admin(player))
g_hasLeap[player] = true
return PLUGIN_CONTINUE
}
Only admins will have long jump, if not, they will only get speed, gravity, knockback and health.