Think about what your asking for a moment...
Quote:
im tryin to liek sort the socres wtih certain names, but i dunt know how to sort the names wiht it
Your asking on how to sort the names with it! Since you know arrays (from looking at your code), it's easy! When you go to sort the scores using whatever sorting procedure you'll be using, just sort the names as well. It's one extra line of code.
psuedo: |
...
list(i) := list(i + 1)
namelist(i) := namelist(i + 1)
... |
This is just an example, but the idea behind it is easy. Good luck.