First, post your error(s) and problem. Secondly, I assume it is an error you are getting. You are doing skp(id). That's the problem. Below is how to solve it:
When you do new skp, you MUST do new skp[33]. This means skp can hold 33 entries (32 entries for the players + 1). When assigning an element of skp with the player's id, it works like this:
skp[id] = get_user_frags(id)
I would highly suggest you read
this Pawn tutorial as it seems you have no background experience with arrays
__________________