You have a "," in the start of the query.
Code:
", skill=((kills + headshots ) / deaths + %d)"
remove it and you will be fine I think.
And one more thing:
Code:
formatex(szKillerData[iKillerLen], charsmax(szKillerData) - iKillerLen, ", skill=((kills + headshots ) / deaths + %d)", iKillerSkill)
You are passing in a element from the array, should be szKillerData, instead of szKillerData[iKillerLen]?
__________________