Setting player's speed wont work since ZP overrides player's speed so you should remove the speed's option
And you should change this
Code:
fm_set_rendering(player, kRenderFxGlowShell, (get_cvar_num("zp_aura_red")), (get_cvar_num("zp_aura_green")), (get_cvar_num("zp_aura_blue")), kRenderNormal, 12);
with this:
Code:
set_user_rendering(player, kRenderFxGlowShell, get_cvar_num("zp_aura_red"), get_cvar_num("zp_aura_green"), get_cvar_num("zp_aura_blue"), kRenderNormal, 12);
So you can remove the fakemeta_util include
And use pcvars instead of cvars since theey are faster and more effecient
__________________