actully i didnt want to post becase i fellt stupid abut it

but can someone help?
Code:
public client_connect(id)
{
new filepointer = fopen(filename,"r")
if(filepointer)
{
new readdata[128]
new parsedSound[32],parsedSound2[32],parsedSound3[32],parsedSound4[32],parsedSound5[32]
while(fgets(filepointer,readdata,127))
{
parse(readdata,parsedSound,31,parsedSound2,31,parsedSound3,31,parsedSound4,31,parsedSound5,31)
Sound[31] = parsedSound[31]
Sound2[31] = parsedSound2[31]
Sound3[31] = parsedSound3[31]
Sound4[31] = parsedSound4[31]
Sound5[31] = parsedSound5[31]
break
//...
}
fclose(filepointer)
}
}
__________________