The tag should not be here:
PHP Code:
Floats = float:Skills[id]
It should be Float: tag, and put it where you create the new variable. You have to change this:
PHP Code:
new Float:Skills[33]
And now you have that Skills, which is always float, unless you floatround it.
P.S.: You can also do this:
PHP Code:
Skills[killer] += get_pcvar_float(g_AddSkills[hs ? 1 : 0])
Instead of this:
PHP Code:
if(hs)
Skills[killer] += get_pcvar_float(g_AddSkills[1])
else
Skills[killer] += get_pcvar_float(g_AddSkills[0])
__________________